﻿:root {
    --bg-deep: #0b141f;
    --bg-mid: #1b2838;
    --bg-panel: #16202d;
    --border: #2a475e;
    --accent: #66c0f4;
    --accent-dim: #417a9b;
    --text: #c7d5e0;
    --text-muted: #8ba3b5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: sans-serif;
    background: radial-gradient(ellipse at top left, #1b2838 0%, #0f1c2c 55%, #0b141f 100%);
    color: var(--text);
    display: flex;
    flex-direction: column;
}


/*** NAV ***/
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 56px;
    background: rgba(11, 20, 31, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}


#logo {
    flex: 1;
    font-family: sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

    #logo span {
        color: var(--accent);
    }

.navlinks {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
}

    .navlinks a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        padding: 6px 14px;
        border-radius: 3px;
        transition: color 0.2s, background 0.2s;
        text-transform: uppercase;
    }

        .navlinks a:hover {
            color: var(--white);
            background: rgba(102, 192, 244, 0.08);
        }

        .navlinks a.active {
            color: var(--accent);
        }

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

    .nav-actions a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        padding: 6px 14px;
        border-radius: 3px;
        transition: color 0.2s, background 0.2s;
        text-transform: uppercase;
    }

        .nav-actions a:hover {
            color: var(--white);
            background: rgba(102, 192, 244, 0.08);
        }


/* Changing colors as you go l-r,t-b*/
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*** ABOUT PAGE ***/
.about-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
}

/* Banner */
.about-banner {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1b2f45 0%, #0f1c2c 50%, #0b141f 100%);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .about-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(102,192,244,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 85% 30%, rgba(65,122,155,0.05) 0%, transparent 70%);
        pointer-events: none;
    }

    .about-banner::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(102,192,244,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(102,192,244,0.035) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

.about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    animation: fadeInLeft 0.5s ease both;
}

.about-banner-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.about-banner-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

    .about-banner-title span {
        color: var(--accent);
    }

.about-banner-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Body */
.about-body {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 32px;
    align-items: flex-start;
}

/* Main */
.about-main {
    display: flex;
    flex-direction: column;
}

.about-section {
    padding: 32px 0;
}

.about-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .about-section-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.about-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2px;
    margin-bottom: 16px;
}

.about-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 14px;
}

.about-divider {
    height: 1px;
    background: var(--border);
}

/* Feature grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.about-feature-card {
    background: linear-gradient(160deg, #1b2838 0%, var(--bg-panel) 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px;
    transition: border-color 0.2s, transform 0.18s;
}

    .about-feature-card:hover {
        border-color: var(--accent-dim);
        transform: translateY(-3px);
    }

.about-feature-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.about-feature-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.about-feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* CTA buttons */
.about-login-cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.about-btn-primary {
    padding: 11px 28px;
    background: linear-gradient(to right, var(--accent), var(--accent-dim));
    border-radius: 4px;
    color: var(--bg-deep);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

    .about-btn-primary:hover {
        background: linear-gradient(to right, var(--white), var(--accent));
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(102,192,244,0.3);
    }

.about-btn-ghost {
    padding: 11px 28px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

    .about-btn-ghost:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(102,192,244,0.06);
    }

/* Inline images */
.about-inline-img-placeholder {
    width: 100%;
}

.about-perk-img {
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-inline-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid var(--border);
    margin-top: 10px;
}

/* Perks */
.about-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(27,40,56,0.6);
    border: 1px solid var(--border);
    border-left: 2px solid var(--accent-dim);
    border-radius: 4px;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.65;
    transition: border-color 0.2s, background 0.2s;
}

    .about-perk:hover {
        border-left-color: var(--accent);
        background: rgba(102,192,244,0.04);
    }

    .about-perk strong {
        color: var(--white);
    }

.about-perk--steam {
    border-color: var(--accent-dim);
    border-left-color: var(--accent);
    background: rgba(102,192,244,0.05);
}

    .about-perk--steam:hover {
        background: rgba(102,192,244,0.09);
    }

.about-perk-dot {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-dim);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.about-perk-dot--steam {
    background: var(--accent);
    width: 8px;
    height: 8px;
    margin-top: 6px;
}

/* Sidebar */
.about-sidebar {
    position: sticky;
    top: 72px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-sidebar-card {
    background: linear-gradient(160deg, #1b2838 0%, var(--bg-panel) 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
}

.about-community-card {
    border-color: var(--accent-dim);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(102,192,244,0.07);
}

.about-sidebar-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(102,192,244,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-sidebar-heading-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-sidebar-icon {
    font-size: 1.5rem;
}

.about-sidebar-heading {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
}

.about-sidebar-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-sidebar-perks {
    list-style: none;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .about-sidebar-perks li {
        font-size: 0.81rem;
        color: var(--text);
    }

.about-sidebar-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: linear-gradient(to right, var(--accent), var(--accent-dim));
    border-radius: 4px;
    color: var(--bg-deep);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}

    .about-sidebar-btn:hover {
        background: linear-gradient(to right, var(--white), var(--accent));
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(102,192,244,0.3);
    }

.about-sidebar-login-note {
    margin-top: 12px;
    font-size: 0.77rem;
    color: var(--text-muted);
    text-align: center;
}

    .about-sidebar-login-note a {
        color: var(--accent);
        text-decoration: none;
    }

        .about-sidebar-login-note a:hover {
            text-decoration: underline;
        }

/* links */
.about-quick-links-card {
    padding: 16px 20px;
}

.about-preview-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.about-quick-link {
    display: block;
    padding: 9px 12px;
    font-size: 0.83rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 3px;
    border-bottom: 1px solid rgba(42,71,94,0.4);
    transition: color 0.2s, background 0.2s;
}

    .about-quick-link:last-child {
        border-bottom: none;
    }

    .about-quick-link:hover {
        color: var(--accent);
        background: rgba(102,192,244,0.06);
    }


/*** HOME PAGE ***/
.home-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 48px;
    width: 100%;
    flex: 1;
}

.games-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .games-heading::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 14px;
}

.game-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

    .game-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-dim);
        box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    }

.game-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #1b2838;
}

    .game-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

.game-card:hover .game-card-img-wrap img {
    transform: scale(1.05);
}

.game-card-info {
    padding: 10px 12px 12px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.game-card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-achievements {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

    .game-card-achievements .trophy {
        font-size: 0.75rem;
    }

.game-card-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Pagination */
.scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 40px 24px 60px;
}

.page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

    .page-btn:hover {
        background: rgba(42,71,94,0.5);
        border-color: var(--accent-dim);
        color: var(--white);
    }

    .page-btn.active {
        background: var(--accent);
        border-color: var(--accent);
        color: #0f1923;
        font-weight: 700;
    }

    .page-btn.dots {
        border: none;
        background: transparent;
        cursor: default;
        color: var(--text-muted);
    }

        .page-btn.dots:hover {
            background: transparent;
            border: none;
            color: var(--text-muted);
        }

/* Search & filter */
.games-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}

    .games-heading-row .games-heading {
        margin-bottom: 0;
        flex: 1;
    }

.search-group {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.games-search {
    padding: 7px 14px;
    background: rgba(42,71,94,0.4);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--white);
    font-family: sans-serif;
    font-size: 0.85rem;
    outline: none;
    width: 220px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .games-search::placeholder {
        color: var(--text-muted);
    }

    .games-search:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(102,192,244,0.12);
    }

/* Filter dropdown */
.filter-dropdown {
    position: relative;
}

    .filter-dropdown summary {
        list-style: none;
    }

        .filter-dropdown summary::-webkit-details-marker {
            display: none;
        }

.filter-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 0 11px;
    background: rgba(42,71,94,0.4);
    border: 1px solid var(--border);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    height: 100%;
    min-height: 36px;
    transition: border-color 0.2s, background 0.2s;
}

    .filter-btn:hover {
        border-color: var(--accent);
        background: rgba(102,192,244,0.1);
    }

    .filter-btn span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--text-muted);
        border-radius: 2px;
        transition: background 0.2s;
    }

    .filter-btn:hover span {
        background: var(--accent);
    }

details[open] .filter-btn {
    border-color: var(--accent);
    background: rgba(102,192,244,0.1);
}

    details[open] .filter-btn span {
        background: var(--accent);
    }

.filter-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #1e2a3a;
    border: 1px solid #2a3f55;
    border-radius: 6px;
    min-width: 180px;
    padding: 8px 0;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.filter-menu-header {
    padding: 6px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6a8fa8;
}

.filter-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.15s;
}

    .filter-menu-item:hover {
        background: #2a3f55;
    }

.filter-menu-footer {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    border-top: 1px solid #2a3f55;
    margin-top: 4px;
}

.genre-clear-btn {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .genre-clear-btn:hover {
        border-color: var(--accent-dim);
        color: var(--white);
    }


/*** GAME PAGE ***/
.gp-wrap {
    background: radial-gradient(ellipse at top left, #1b2838 0%, #0f1c2c 55%, #0b141f 100%);
    min-height: 100vh;
    color: var(--text);
    font-family: sans-serif;
}

/* Cover section */
.gp-cover-section {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.gp-cover-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.35) saturate(0.7);
    display: block;
}

.gp-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(11,20,31,0.6) 65%, #0b141f 100%);
}

.gp-cover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 32px;
}

.gp-cover-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    gap: 28px;
}

.gp-cover-art {
    flex-shrink: 0;
    width: 130px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    margin-bottom: -20px;
}

    .gp-cover-art img {
        width: 100%;
        display: block;
        aspect-ratio: 3/4;
        object-fit: cover;
    }

.gp-cover-meta {
    flex: 1;
    padding-bottom: 4px;
}

.gp-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.gp-stat-row {
    display: flex;
    align-items: center;
    background: rgba(11,20,31,0.75);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 0;
    backdrop-filter: blur(8px);
    width: fit-content;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.gp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 18px;
}

.gp-stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.gp-stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
}

.gp-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

/* Body layout */
.gp-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
    width: 100%;
}

.gp-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 28px;
    align-items: flex-start;
    padding-top: 36px;
}

/* Sidebar */
.gp-sidebar {
    position: sticky;
    top: 72px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gp-price-card {
    background: linear-gradient(160deg, rgba(27,40,56,0.95) 0%, rgba(22,32,45,0.95) 100%);
    border: 1px solid var(--accent-dim);
    border-radius: 6px;
    padding: 18px;
    box-shadow: 0 4px 24px rgba(102,192,244,0.1);
}

.gp-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.gp-price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 3px;
    margin-bottom: 14px;
}

.gp-vnav {
    background: linear-gradient(160deg, #1b2838 0%, var(--bg-panel) 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.gp-vnav-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 12px 16px 8px;
    border-bottom: 1px solid var(--border);
}

.gp-vnav-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-family: sans-serif;
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.18s, background 0.18s;
    text-align: left;
}

    .gp-vnav-btn:last-child {
        border-bottom: none;
    }

    .gp-vnav-btn:hover {
        color: var(--white);
        background: rgba(102,192,244,0.06);
    }

    .gp-vnav-btn.active {
        color: var(--accent);
        background: rgba(102,192,244,0.07);
        border-left: 2px solid var(--accent);
        padding-left: 14px;
    }

.gp-vnav-icon {
    font-size: 0.95rem;
    flex-shrink: 0;
}

.gp-followers-card {
    background: linear-gradient(160deg, #1b2838 0%, var(--bg-panel) 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 18px;
}

.gp-followers-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.gp-followers-count {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

/* Main content */
.gp-main {
    min-width: 0;
}

.gp-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .gp-section-label::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.gp-description {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 24px;
}

/* Info strip */
.gp-info-strip {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-bottom: 32px;
}

.gp-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid var(--border);
    margin-bottom: 16px;
}

    .gp-info-item:last-child {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }

.gp-info-item-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.gp-info-item-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
}

    .gp-info-item-value.accent {
        color: var(--accent);
    }

/* Cards */
.gp-card {
    background: linear-gradient(160deg, #1b2838 0%, var(--bg-panel) 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.gp-card-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* Reviews */
.gp-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    flex-wrap: wrap;
}

.gp-reviews-header-left {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
}

.gp-inline-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .gp-inline-filter label {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-muted);
        white-space: nowrap;
    }

.gp-select-sm {
    padding: 5px 10px;
    background: rgba(42,71,94,0.4);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--white);
    font-family: sans-serif;
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
}

.gp-filter-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.gp-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(102,192,244,0.08);
    border: 1px solid var(--accent-dim);
    border-radius: 3px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
}

.gp-review {
    background: rgba(11,20,31,0.6);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

    .gp-review:hover {
        border-color: var(--accent-dim);
    }

.gp-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.gp-review-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 3px;
}

.gp-review-stars {
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.gp-review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.gp-review-body {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.gp-review-actions {
    margin-top: 8px;
}

/* Discussions */
.gp-discussions {
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gp-discussion-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.83rem;
    padding: 6px 10px;
    background: rgba(42,71,94,0.15);
    border-radius: 3px;
    border-left: 2px solid var(--accent-dim);
}

.gp-discussion-author {
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.gp-discussion-text {
    color: var(--text);
    flex: 1;
    line-height: 1.5;
}

.gp-discussion-date {
    color: var(--text-muted);
    font-size: 0.72rem;
    white-space: nowrap;
}

/* Forms */
.gp-form-panel {
    margin-top: 12px;
    padding: 18px;
    background: rgba(11,20,31,0.5);
    border: 1px solid var(--border);
    border-left: 2px solid var(--accent);
    border-radius: 5px;
}

.gp-form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.gp-form-control {
    width: 100%;
    padding: 9px 12px;
    background: rgba(42,71,94,0.4);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--white);
    font-family: sans-serif;
    font-size: 0.88rem;
    outline: none;
    resize: vertical;
    margin-bottom: 12px;
}

.gp-form-row {
    display: flex;
    gap: 12px;
}

.gp-form-col {
    flex: 1;
}

.gp-form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* Completions */
.gp-completion-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(11,20,31,0.5);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 8px;
    transition: border-color 0.2s;
}

    .gp-completion-item:hover {
        border-color: var(--accent-dim);
    }

.gp-completion-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.gp-completion-info {
    flex: 1;
}

.gp-completion-type {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.gp-completion-hrs {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.gp-completion-actions {
    display: flex;
    gap: 6px;
}

/* Achievements */
.gp-achiev-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 5px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    margin-top: 14px;
}

.gp-achiev-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: cover;
}

.gp-achiev-info {
    flex: 1;
    min-width: 0;
}

.gp-achiev-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.gp-achiev-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.gp-achiev-rarity {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Buttons */
.gp-btn-primary {
    padding: 9px 20px;
    background: linear-gradient(to right, var(--accent), var(--accent-dim));
    border: none;
    border-radius: 4px;
    color: var(--bg-deep);
    font-family: sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

    .gp-btn-primary:hover {
        background: linear-gradient(to right, var(--white), var(--accent));
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(102,192,244,0.3);
    }

.gp-btn-outline {
    padding: 7px 16px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 4px;
    color: var(--accent);
    font-family: sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

    .gp-btn-outline:hover {
        background: rgba(102,192,244,0.1);
    }

.gp-btn-ghost {
    padding: 7px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

    .gp-btn-ghost:hover {
        border-color: var(--accent-dim);
        color: var(--white);
    }

.gp-btn-sm {
    padding: 4px 10px !important;
    font-size: 0.76rem !important;
}

.gp-btn-follow {
    width: 100%;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--accent-dim);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

    .gp-btn-follow:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(102,192,244,0.06);
    }

.gp-empty-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 8px 0;
}

.gp-message {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Delete confirm modal */
#gp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#gp-modal {
    background: linear-gradient(160deg, #1b2838 0%, #0f1c2c 100%);
    border: 1px solid #6a2a2a;
    border-radius: 8px;
    padding: 32px 28px 24px;
    min-width: 300px;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.7);
}

#gp-modal-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

#gp-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

#gp-modal-subtitle {
    font-size: 0.82rem;
    color: #7a7a9a;
    margin-bottom: 24px;
}

#gp-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#gp-modal-confirm {
    padding: 9px 22px;
    background: rgba(74,26,26,0.9);
    border: 1px solid #6a2a2a;
    border-radius: 4px;
    color: #ff6b6b;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

    #gp-modal-confirm:hover {
        background: rgba(110,30,30,1);
    }

#gp-modal-cancel {
    padding: 9px 22px;
    background: transparent;
    border: 1px solid #2a2a3a;
    border-radius: 4px;
    color: #7a7a9a;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

    #gp-modal-cancel:hover {
        border-color: #66c0f4;
        color: #ffffff;
    }


/*** PROFILE PAGE ***/
.profile-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.profile-banner {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.profile-container {
    display: flex;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 20px 48px;
    align-items: flex-start;
}

.profile-sidebar {
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: -60px;
}

.avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
}

.profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    display: block;
}

.avatar-upload-btn {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
}

    .avatar-upload-btn:hover {
        background: var(--white);
        transform: scale(1.1);
    }

.profile-username {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.5px;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.profile-card {
    background: linear-gradient(160deg, #1b2838 0%, #16202d 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px 20px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.card-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 5px 0;
    border-bottom: 1px solid rgba(42,71,94,0.4);
    background: none;
    border-left: none;
    border-top: none;
    border-right: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}

    .card-item:last-child {
        border-bottom: none;
    }

    .card-item:hover {
        color: var(--accent);
        text-decoration: underline;
    }

    .card-item:focus {
        outline: none;
    }

    .card-item.active {
        color: var(--accent);
        outline: none;
        text-decoration: underline;
    }

.review-card {
    background: linear-gradient(160deg, #1b2838 0%, #16202d 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    height: 500px;
    display: flex;
    flex-direction: column;
}

    .review-card .activity {
        flex: 1;
        overflow-y: auto;
        margin-top: 8px;
        padding-right: 4px;
    }

        .review-card .activity::-webkit-scrollbar {
            width: 6px;
        }

        .review-card .activity::-webkit-scrollbar-track {
            background: rgba(42,71,94,0.2);
            border-radius: 3px;
        }

        .review-card .activity::-webkit-scrollbar-thumb {
            background: var(--accent-dim);
            border-radius: 3px;
        }

            .review-card .activity::-webkit-scrollbar-thumb:hover {
                background: var(--accent);
            }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

    .section-header h3 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.5px;
    }

    .section-header a {
        font-size: 0.75rem;
        color: var(--accent-dim);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.2s;
    }

        .section-header a:hover {
            color: var(--accent);
        }

.activity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .activity > div,
    .activity > p {
        font-size: 0.875rem;
        color: var(--text-muted);
        padding: 8px 10px;
        background: rgba(42,71,94,0.2);
        border-radius: 3px;
        border-left: 2px solid var(--accent-dim);
        transition: background 0.2s, border-color 0.2s;
    }

        .activity > div:hover,
        .activity > p:hover {
            background: rgba(102,192,244,0.07);
            border-left-color: var(--accent);
            color: var(--text);
        }

.security-action-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    background: rgba(42,71,94,0.3);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
}

    .security-action-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(102,192,244,0.07);
    }

.modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.modal-input {
    width: 100%;
    padding: 9px 12px;
    background: rgba(42,71,94,0.4);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.82rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

    .modal-input::placeholder {
        color: var(--text-muted);
    }

    .modal-input:focus {
        border-color: var(--accent);
    }

.card-subitem {
    display: block;
    width: 100%;
    text-align: left;
    padding: 6px 0 6px 16px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(42,71,94,0.3);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

    .card-subitem:last-child {
        border-bottom: none;
    }

    .card-subitem:hover {
        color: var(--accent);
    }

    .card-subitem.active {
        color: var(--accent);
        text-decoration: underline;
    }

    .card-subitem.logout-subitem {
        margin-top: 6px;
        color: var(--text-muted);
        border-top: 1px solid var(--border);
    }

        .card-subitem.logout-subitem:hover {
            color: var(--white);
        }

    .card-subitem.delete-subitem {
        color: rgba(248,113,113,0.7);
        border-bottom: none;
    }

        .card-subitem.delete-subitem:hover {
            color: #f87171;
        }

#settings.review-card {
    flex-direction: column;
}

.settings-panel {
    flex-direction: column;
    flex: 1;
}

.review-view-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

    .review-view-btn:hover {
        background: rgba(102,192,244,0.12);
        color: #fff;
        text-decoration: none;
    }

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-box {
    background: linear-gradient(160deg, #1b2838 0%, #16202d 100%);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px 24px;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(102,192,244,0.06);
    animation: slideUp 0.18s ease;
}

.modal-icon {
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.logout-icon {
    background: rgba(102,192,244,0.1);
    border: 1px solid rgba(102,192,244,0.25);
    color: var(--accent);
}

.delete-icon {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.3);
    color: #f87171;
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.modal-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

    .modal-desc strong {
        color: #f87171;
    }

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    width: 100%;
}

.modal-btn {
    flex: 1;
    padding: 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

    .modal-btn.cancel {
        background: rgba(42,71,94,0.5);
        border: 1px solid var(--border);
        color: var(--text);
    }

        .modal-btn.cancel:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(102,192,244,0.07);
        }

    .modal-btn.confirm-logout {
        background: rgba(102,192,244,0.12);
        border: 1px solid rgba(102,192,244,0.4);
        color: var(--accent);
    }

        .modal-btn.confirm-logout:hover {
            background: rgba(102,192,244,0.2);
            border-color: var(--accent);
            color: var(--white);
        }

    .modal-btn.confirm-delete {
        background: rgba(248,113,113,0.1);
        border: 1px solid rgba(248,113,113,0.4);
        color: #f87171;
    }

        .modal-btn.confirm-delete:hover {
            background: rgba(248,113,113,0.2);
            border-color: #f87171;
            color: var(--white);
        }


/*** LOGIN /Signup ***/
.thePage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.panel {
    width: 100%;
    max-width: 420px;
}

.container {
    background: linear-gradient(160deg, #1b2838 0%, #16202d 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(102,192,244,0.05);
}

.tab-bar {
    display: flex;
    background: rgba(11,20,31,0.85);
    border-bottom: 1px solid var(--border);
}

.tab-btn {
    flex: 1;
    padding: 14px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-family: sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tab-btn:hover:not(.active) {
        color: var(--white);
        background: rgba(102,192,244,0.08);
    }

    .tab-btn.active {
        color: var(--accent);
        border-bottom: 2px solid var(--accent);
        background: rgba(102,192,244,0.05);
    }

.form-wrap {
    padding: 28px;
}

.formGroup {
    margin-bottom: 16px;
}

    .formGroup label {
        display: block;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 6px;
    }

    .formGroup input,
    .formGroup .valid.modified,
    .formGroup .invalid {
        width: 100%;
        padding: 10px 12px;
        background: rgba(42,71,94,0.5);
        border: 1px solid var(--border);
        border-radius: 3px;
        color: var(--white);
        font-family: sans-serif;
        font-size: 0.95rem;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .formGroup input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(102,192,244,0.12);
        }

    .formGroup .invalid {
        border-color: #f87171;
    }

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.forgot-link {
    font-size: 0.8rem;
    color: var(--accent-dim);
    text-decoration: none;
    transition: color 0.2s;
}

    .forgot-link:hover {
        color: var(--accent);
        text-decoration: underline;
    }

.btnSubmit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, var(--accent), var(--accent-dim));
    border: none;
    border-radius: 4px;
    color: var(--bg-deep);
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

    .btnSubmit:hover {
        background: linear-gradient(to right, var(--white), var(--accent));
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(102,192,244,0.3);
    }

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: var(--text-muted);
    font-size: 0.75rem;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.terms-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    margin: 10px 0 6px;
    line-height: 1.5;
}

    .terms-note a {
        color: var(--accent);
        text-decoration: none;
    }

        .terms-note a:hover {
            text-decoration: underline;
        }

.validation-summary {
    font-size: 0.85rem;
    color: #f87171;
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.25);
    border-radius: 3px;
    padding: 8px 12px;
    margin-bottom: 14px;
}

/* Verification / Confirmation */
.confirm-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    opacity: 0.85;
}

.confirm-title {
    text-align: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.confirm-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.email-inline {
    color: var(--accent);
    font-weight: 600;
}

.code-input {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 6px;
    font-weight: 700;
    width: 100%;
}

.message-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    min-height: 1.2em;
    margin-bottom: 4px;
}

.verify-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.btn-primary {
    flex: 1;
    padding: 9px 16px;
    background: linear-gradient(to right, var(--accent), var(--accent-dim));
    border: none;
    border-radius: 4px;
    color: var(--bg-deep);
    font-family: sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-primary:hover {
        background: linear-gradient(to right, var(--white), var(--accent));
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(102,192,244,0.3);
    }

.btn-secondary {
    flex: 1;
    padding: 9px 16px;
    background: rgba(42,71,94,0.4);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
}

    .btn-secondary:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(102,192,244,0.06);
    }
