
/* Frankenskates Location Reviews - Final Neon Field Report Layer */
/* Scoped only to the review component */

.where-to-skate-report-form {
    position: relative;
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 240, .35);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(20,20,30,.96), rgba(5,5,10,.96));
    box-shadow:
        0 0 25px rgba(0,255,240,.12),
        inset 0 0 30px rgba(255,0,180,.08);
}

.where-to-skate-report-form fieldset {
    margin: 1.25rem 0;
    padding: 1.25rem;
    border: 1px solid rgba(0,255,240,.25);
    border-radius: 14px;
    background: rgba(0,0,0,.28);
}

.where-to-skate-report-form legend {
    padding: 0 .75rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.where-to-skate-report-form select,
.where-to-skate-report-form textarea {
    background: #08090d;
    color: #fff;
    border: 1px solid rgba(0,255,240,.45);
    border-radius: 10px;
    padding: .75rem;
}

.where-to-skate-report-form textarea {
    width: 100%;
    min-height: 140px;
    resize: vertical;
    margin-top: .5rem;
}

.where-to-skate-report-form .report-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    margin: .35rem;
    padding: .7rem 1rem;
    border: 1px solid rgba(0,255,240,.3);
    border-radius: 999px;
    background: rgba(10,10,15,.8);
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

.where-to-skate-report-form .report-tile:hover {
    border-color: rgba(255,0,200,.8);
    box-shadow: 0 0 14px rgba(255,0,200,.25);
}

.where-to-skate-report-form .report-tile input {
    margin-right: .5rem;
    accent-color: #ff00cc;
}

.where-to-skate-report-form .report-tile:has(input:checked) {
    border-color: #00fff0;
    box-shadow:
        0 0 18px rgba(0,255,240,.35),
        inset 0 0 10px rgba(0,255,240,.12);
}

.where-to-skate-report-form button,
.where-to-skate-report-form input[type="submit"] {
    margin-top: 1.25rem;
    padding: .9rem 2rem;
    border-radius: 12px;
    border: 1px solid #00fff0;
    background: #11131a;
    color: white;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(0,255,240,.2);
    transition: all .2s ease;
}

.where-to-skate-report-form button:hover,
.where-to-skate-report-form input[type="submit"]:hover {
    border-color: #ff00cc;
    box-shadow: 0 0 24px rgba(255,0,200,.35);
}


/* Final polish pass */

.where-to-skate-report-form .report-tile {
    min-width: 95px;
    padding: .55rem .85rem;
    margin: .25rem;
    background: rgba(8,10,16,.92);
}

.where-to-skate-report-form .report-tile span {
    transition: text-shadow .2s ease, color .2s ease;
}

.where-to-skate-report-form .report-tile:hover span {
    text-shadow: 0 0 8px rgba(0,255,240,.8);
}

.where-to-skate-report-form textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 170px;
    padding: 1rem;
    font-family: inherit;
    line-height: 1.5;
}

.where-to-skate-report-form textarea:focus,
.where-to-skate-report-form select:focus {
    outline: none;
    border-color: #ff00cc;
    box-shadow: 0 0 16px rgba(255,0,200,.25);
}

.where-to-skate-report-form .field-notes,
.where-to-skate-report-form .report-notes {
    width: 100%;
}

.where-to-skate-report-form button,
.where-to-skate-report-form input[type="submit"] {
    display: block;
    margin: 1.5rem auto .25rem;
    border-color: rgba(0,255,240,.8);
}

.where-to-skate-report-form button:hover,
.where-to-skate-report-form input[type="submit"]:hover {
    transform: translateY(-2px);
}


/* v1.6 Field Archive polish */
.where-to-skate-report-form::before {
    content: "FRANKENSKATES FIELD ARCHIVE // LOCATION INTELLIGENCE REPORT";
    display: block;
    margin-bottom: 1.25rem;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

.where-to-skate-report-form textarea {
    min-height: 190px;
    width: 100%;
}

.where-to-skate-report-form .report-tile {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.where-to-skate-report-form .report-tile:hover {
    transform: translateY(-2px);
}

.where-to-skate-report-form .btn,
.where-to-skate-report-form button {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FIELD ARCHIVE FINAL OVERRIDES ===== */

form.where-to-skate-report-form::before {
    content: "FRANKENSKATES FIELD ARCHIVE // LOCATION INTELLIGENCE REPORT";
    display: block;
    margin-bottom: 1.25rem;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

form.where-to-skate-report-form textarea[name="review_text"] {
    width: 100% !important;
    min-height: 190px !important;
    background: rgba(0,0,0,.55) !important;
    color: #fff !important;
    border: 1px solid rgba(0,255,240,.45) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
}

form.where-to-skate-report-form textarea[name="review_text"]:focus {
    outline: none !important;
    border-color: #ff00cc !important;
    box-shadow: 0 0 18px rgba(255,0,200,.4) !important;
}

form.where-to-skate-report-form button.btn.btn-primary {
    display: block !important;
    margin: 1.5rem auto 0 !important;
    min-width: 240px;
    border: 1px solid #00fff0 !important;
    box-shadow: 0 0 20px rgba(0,255,240,.25);
}

form.where-to-skate-report-form button.btn.btn-primary:hover {
    border-color: #ff00cc !important;
    box-shadow: 0 0 30px rgba(255,0,200,.5);
    transform: translateY(-2px);
}


/* ===== Frankenskates Field Archive v1.7 FINAL OVERRIDE ===== */

form.where-to-skate-report-form {
    position: relative !important;
    overflow: hidden !important;
    padding: 2rem !important;
}

form.where-to-skate-report-form:before {
    content: "FRANKENSKATES FIELD ARCHIVE // LOCATION INTELLIGENCE REPORT" !important;
    display: block !important;
    margin-bottom: 1.5rem !important;
    color: rgba(255,255,255,.65) !important;
    font-size: .72rem !important;
    letter-spacing: .2em !important;
    text-transform: uppercase !important;
}

form.where-to-skate-report-form textarea[name="review_text"] {
    display: block !important;
    width: 100% !important;
    min-height: 220px !important;
    margin-top: .75rem !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    background: rgba(5,8,14,.95) !important;
    color: #fff !important;
    border: 1px solid rgba(0,255,240,.65) !important;
    border-radius: 14px !important;
}

form.where-to-skate-report-form textarea[name="review_text"]:focus {
    border-color: #ff00cc !important;
    box-shadow: 0 0 24px rgba(255,0,200,.45) !important;
}

form.where-to-skate-report-form button.btn.btn-primary {
    display: block !important;
    margin: 1.75rem auto 0 !important;
    min-width: 260px !important;
    border: 1px solid #00fff0 !important;
    box-shadow: 0 0 24px rgba(0,255,240,.35) !important;
}

form.where-to-skate-report-form button.btn.btn-primary:hover {
    box-shadow: 0 0 34px rgba(255,0,200,.55) !important;
}
