@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* _content/server/Components/Layout/FooterLayout.razor.rz.scp.css */
.footer[b-lq137s3m8z] {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #222;
    color: #777;
    background: #0a0a0f;
}
/* _content/server/Components/Layout/MainLayout.razor.rz.scp.css */

.layout[b-rx3j2z7yzy] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0f0f14, #0a0a0f);
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

main[b-rx3j2z7yzy] {
    flex: 1;
}

/* _content/server/Components/Layout/MdModal.razor.rz.scp.css */
.modal-backdrop[b-n6um7h81x2] {
    position: fixed;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.15);
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999; 
}

.modal-container[b-n6um7h81x2] {
    background: linear-gradient(135deg, #0f0f14, #0a0a0f);
    border: 1px solid rgba(29, 40, 72, 0.8);
    border-radius: 15px;
    color: white;
    width: 600px;
    max-width: 90vw;
    max-height: 80vh;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalFade-b-n6um7h81x2 0.4s ease;
}

.modal-header[b-n6um7h81x2] {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-content[b-n6um7h81x2] {
    padding: 20px;
    overflow-y: auto;
}

.close-btn[b-n6um7h81x2] {
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

@keyframes modalFade-b-n6um7h81x2 {
    from {
        transform: scale(0.96);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* _content/server/Components/Layout/NavMenu.razor.rz.scp.css */
.header[b-x2g53adl6v] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
    backdrop-filter: blur(10px);
    background: rgba(15, 15, 20, 0.85);
    border-bottom: 1px solid #1f1f2b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo[b-x2g53adl6v] {
    font-size: 22px;
    font-weight: 700;
    color: #7c3aed;
    letter-spacing: 1px;
    cursor: pointer;
}

.nav[b-x2g53adl6v] {
    display: flex;
    gap: 30px;
}

[b-x2g53adl6v] .header-linc {
    text-decoration: none;
    color: #cfcfe8;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

[b-x2g53adl6v] .header-linc {
    color: white;
}

    [b-x2g53adl6v] .header-linc::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0%;
        height: 2px;
        background: #7c3aed;
        transition: width 0.25s ease;
    }

    [b-x2g53adl6v] .header-linc:hover::after {
        width: 100%;
    }

    [b-x2g53adl6v] .header-linc.active {
        color: white;
    }

        [b-x2g53adl6v] .header-linc.active::after {
            width: 100%;
        }

[b-x2g53adl6v] .logo-linc {
    text-decoration: none;
    color: inherit;
    display: block;
}

    [b-x2g53adl6v] .logo-linc:visited {
        color: inherit;
    }

    [b-x2g53adl6v] .logo-linc:hover {
        text-decoration: none;
    }
/* _content/server/Components/Pages/Auth/Login.razor.rz.scp.css */
/* === AUTH LAYOUT === */

.auth-wrapper[b-wmrg9evo4j] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card[b-wmrg9evo4j] {
    width: 360px;
    padding: 40px 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: white;
    animation: fadeIn-b-wmrg9evo4j 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .auth-card h2[b-wmrg9evo4j] {
        margin-bottom: 20px;
        color: #a855f7;
    }

@keyframes fadeIn-b-wmrg9evo4j {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM */

.auth-form[b-wmrg9evo4j] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

TextInput[b-wmrg9evo4j] {
    color: white;
    background-color: transparent;
    transition: all 0.2s ease;
}

    TextInput[b-wmrg9evo4j]::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

.auth-btn[b-wmrg9evo4j] {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: white;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

    .auth-btn:hover[b-wmrg9evo4j] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

.auth-error[b-wmrg9evo4j] {
    margin-bottom: 12px;
    background: rgba(255, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    color: red;
    width: 100%;
    text-align: center;
}

.auth-switch[b-wmrg9evo4j] {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

    .auth-switch a[b-wmrg9evo4j] {
        color: #38bdf8;
        text-decoration: none;
    }

        .auth-switch a:hover[b-wmrg9evo4j] {
            text-decoration: underline;
        }
/* _content/server/Components/Pages/Auth/Register.razor.rz.scp.css */
/* === AUTH LAYOUT === */

.auth-wrapper[b-ocal3v3b43] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card[b-ocal3v3b43] {
    width: 360px;
    padding: 40px 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: white;
    animation: fadeIn-b-ocal3v3b43 0.3s ease;
    display: flex;
    flex-direction: column;
    
    align-items: center;
    justify-content: center;
}

.auth-card h2[b-ocal3v3b43] {
    margin-bottom: 20px;
    color: #a855f7;
}

@keyframes fadeIn-b-ocal3v3b43 {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM */

.auth-form[b-ocal3v3b43] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px; 
}

TextInput[b-ocal3v3b43] {
    color: white;
    background-color: transparent;
    transition: all 0.2s ease;
}
    TextInput[b-ocal3v3b43]::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

.auth-btn[b-ocal3v3b43] {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: white;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

    .auth-btn:hover[b-ocal3v3b43] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

.auth-error[b-ocal3v3b43] {
    margin-bottom: 12px;
    background: rgba(255, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    color: red;
    width: 100%;
    text-align: center;
}

.auth-switch[b-ocal3v3b43] {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

    .auth-switch a[b-ocal3v3b43] {
        color: #38bdf8;
        text-decoration: none;
    }

        .auth-switch a:hover[b-ocal3v3b43] {
            text-decoration: underline;
        }
/* _content/server/Components/Pages/Game.razor.rz.scp.css */
.game-header[b-su9d5ke533] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    padding: 20px 40px;
    border-radius: 14px;
    margin-bottom: 30px;
    gap: 20px;
}

.game-info h1[b-su9d5ke533] {
    font-size: 32px;
    margin: 0 0 8px 0;
    color: #fff;
}

.game-info p[b-su9d5ke533] {
    color: #cfcfe8;
    margin: 0 0 12px 0;
}

.game-info a[b-su9d5ke533] {
    padding: 10px 18px;
    background: #7c3aed;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .game-info a:hover[b-su9d5ke533] {
        background: #5b21b6;
    }

.game-image img[b-su9d5ke533] {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

/* Cheats grid */
.cheats-grid[b-su9d5ke533] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    padding: 10px 40px;
}

/* Cheat card */
.cheat-card[b-su9d5ke533] {
    position: relative;
    background: #1c1c22;
    min-width: 450px;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .cheat-card:hover[b-su9d5ke533] {
        transform: translateY(-4px);
        box-shadow: 0 10px 16px rgba(0,0,0,0.5);
    }

    .cheat-card:hover .expand-btn[b-su9d5ke533] {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .cheat-card h3[b-su9d5ke533] {
        margin: 0;
        color: #fff;
        font-size: 18px;
    }

    .cheat-card p[b-su9d5ke533] {
        margin: 0;
        color: #cfcfe8;
        font-size: 14px;
    }

/* Tags */
.cheat-tags[b-su9d5ke533] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

    .cheat-tags .tag[b-su9d5ke533] {
        background: #2a2a3a;
        color: #cfcfe8;
        padding: 2px 8px;
        border-radius: 6px;
        font-size: 12px;
    }

/* Download button */
.btn-download[b-su9d5ke533] {
    text-align: center;
    margin-top: auto;
    background: #7c3aed;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

    .btn-download:hover[b-su9d5ke533] {
        background: #5b21b6;
    }

.expand-btn[b-su9d5ke533] {
    position: absolute;
    bottom: 80px;
    right: 15px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(6px) scale(0.9);
    pointer-events: none;
}



    .expand-btn:hover[b-su9d5ke533] {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.08);
    }

    .expand-btn:active[b-su9d5ke533] {
        transform: scale(0.95);
    }
/* _content/server/Components/Pages/GameList.razor.rz.scp.css */
/* ================= GLOBAL ================= */

body[b-av2cvo5mj9] {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(140, 0, 255, 0.15), transparent 40%), radial-gradient(circle at 80% 70%, rgba(0, 120, 255, 0.1), transparent 40%), linear-gradient(135deg, #0a0a12, #0f0f1a 50%, #0a0a12);
    color: white;
}

/* ================= HERO ================= */

.hero[b-av2cvo5mj9] {
    padding: 140px 20px 100px 20px;
    text-align: center;
}

    .hero h1[b-av2cvo5mj9] {
        font-size: 58px;
        font-weight: 800;
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
        margin-bottom: 25px;
    }

    .hero p[b-av2cvo5mj9] {
        color: #b8b8d4;
        max-width: 700px;
        margin: 0 auto 50px auto;
        font-size: 18px;
        line-height: 1.6;
    }

/* ================= SEARCH ================= */

.search-box input[b-av2cvo5mj9] {
    width: 520px;
    max-width: 95%;
    padding: 18px 24px;
    border-radius: 18px;
    border: 1px solid rgba(140, 0, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
}

    .search-box input:focus[b-av2cvo5mj9] {
        border-color: #8b5cf6;
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    }

/* ================= STATS ================= */

.stats[b-av2cvo5mj9] {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 20px;
    text-align: center;
}

.stat h3[b-av2cvo5mj9] {
    font-size: 32px;
    margin: 0;
    color: #a855f7;
}

.stat span[b-av2cvo5mj9] {
    font-size: 14px;
    color: #b8b8d4;
}

/* ================= SECTION ================= */

.section[b-av2cvo5mj9] {
    padding: 80px 40px;
    max-width: 1300px;
    margin: auto;
}

.section-header h2[b-av2cvo5mj9] {
    font-size: 28px;
    margin-bottom: 40px;
}

/* ================= GRID ================= */

.card-grid[b-av2cvo5mj9] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* ================= CARD ================= */

.card[b-av2cvo5mj9] {
    background: linear-gradient(160deg, #141422, #101018);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .card:hover[b-av2cvo5mj9] {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(124, 58, 237, 0.4);
        border-color: rgba(124, 58, 237, 0.5);
    }

/* IMAGE */

.card-image[b-av2cvo5mj9] {
    overflow: hidden;
}

    .card-image img[b-av2cvo5mj9] {
        width: 100%;
        height: 190px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.card:hover .card-image img[b-av2cvo5mj9] {
    transform: scale(1.08);
}

/* BODY */

.card-body[b-av2cvo5mj9] {
    padding: 18px;
}

    .card-body h3[b-av2cvo5mj9] {
        margin: 0 0 8px 0;
        font-size: 18px;
        transition: 0.2s ease;
    }

    .card-body p[b-av2cvo5mj9] {
        margin: 0;
        font-size: 14px;
        color: #b8b8d4;
    }

.card:hover h3[b-av2cvo5mj9] {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.card:hover p[b-av2cvo5mj9] {
    color: #dcdcff;
}

/* ================= ADD CARD ================= */

.add-card[b-av2cvo5mj9] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed rgba(124, 58, 237, 0.4);
    background: linear-gradient(160deg, #101018, #141422);
    text-align: center;
    transition: all 0.3s ease;
}

    .add-card:hover[b-av2cvo5mj9] {
        transform: translateY(-10px);
        border-color: #a855f7;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(124, 58, 237, 0.5);
    }

.add-icon[b-av2cvo5mj9] {
    font-size: 60px;
    font-weight: 300;
    color: rgba(168, 85, 247, 0.6);
    margin-top: 40px;
    transition: 0.3s ease;
}

.add-card:hover .add-icon[b-av2cvo5mj9] {
    color: #a855f7;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
    transform: scale(1.1);
}

/* LINK RESET */

[b-av2cvo5mj9] .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

    [b-av2cvo5mj9] .card-link:visited {
        color: inherit;
    }

    [b-av2cvo5mj9] .card-link:hover {
        text-decoration: none;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .hero h1[b-av2cvo5mj9] {
        font-size: 42px;
    }

    .stats[b-av2cvo5mj9] {
        flex-direction: column;
        gap: 30px;
    }
}
/* _content/server/Components/Pages/Home.razor.rz.scp.css */
/* ---------------- Hero Section ---------------- */

.hero[b-6trx0jh3pw] {
    position: relative;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #0f0f18;
}

.hero-slider[b-6trx0jh3pw] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-track[b-6trx0jh3pw] {
    display: flex;
    height: 380px;
    animation: scrollHero-b-6trx0jh3pw 25s linear infinite;
}

.hero:hover .hero-track[b-6trx0jh3pw] {
    animation-play-state: paused;
}

.hero-track img[b-6trx0jh3pw] {
    height: 380px;
    width: auto;
    object-fit: cover;
    filter: brightness(0.6) blur(2px);
}

.hero-gradient[b-6trx0jh3pw] {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to right, rgba(10,10,20,1) 0%, rgba(10,10,20,0.8) 15%, rgba(10,10,20,0.4) 40%, rgba(10,10,20,0.4) 60%, rgba(10,10,20,0.8) 85%, rgba(10,10,20,1) 100% ), linear-gradient( to bottom, rgba(10,10,20,0.9) 0%, rgba(10,10,20,0.4) 40%, rgba(10,10,20,0.9) 100% );
}

.hero-content[b-6trx0jh3pw] {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
}

    .hero-content h1[b-6trx0jh3pw] {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .hero-content p[b-6trx0jh3pw] {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: #d0d0d0;
    }

@keyframes scrollHero-b-6trx0jh3pw {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-186%);
    }
}

.btn-lg[b-6trx0jh3pw] {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    background-color: #4b0082;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration:none;
}

    .btn-lg:hover[b-6trx0jh3pw] {
        background-color: #3a0068;
    }

/* ---------------- Instructions Section ---------------- */

.instructions[b-6trx0jh3pw] {
    background: linear-gradient(
        135deg,
        #1a1028 0%,
        #241537 40%,
        #2b1a40 70%,
        #1f132e 100%
    );
    color: #f0f0f0;
    padding: 45px 15px;
    height:max-content;
}

    .instructions h2[b-6trx0jh3pw] {
        text-align: center;
        margin-bottom: 40px;
        color: #fff;
    }

.steps[b-6trx0jh3pw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.step[b-6trx0jh3pw] {
    background: #3a1f5d;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #fff;
}

    .step:hover[b-6trx0jh3pw] {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    }

.step-number[b-6trx0jh3pw] {
    font-size: 2rem;
    font-weight: 700;
    color: #ff80ff;
    margin-bottom: 15px;
}

/* ---------------- Media Queries ---------------- */
@media (max-width: 768px) {
    .hero h1[b-6trx0jh3pw] {
        font-size: 2.2rem;
    }

    .hero p[b-6trx0jh3pw] {
        font-size: 1rem;
    }

    .steps[b-6trx0jh3pw] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .steps[b-6trx0jh3pw] {
        grid-template-columns: 1fr;
    }

    .btn-lg[b-6trx0jh3pw] {
        width: 100%;
    }
}
/* _content/server/Components/Pages/UserActions/UserGameAdd.razor.rz.scp.css */
/* ================= SUBMIT PAGE ================= */
.form-wrapper[b-yryvilqf7h] {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(20, 20, 34, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 18px;
    backdrop-filter: blur(20px);
}


.submit-title[b-yryvilqf7h] {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

/* ================= PENDING CARD ================= */

.pending-card[b-yryvilqf7h] {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(20, 20, 34, 0.4);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(10px);
}

    .pending-card h4[b-yryvilqf7h] {
        font-size: 20px;
        margin: 0 0 15px 0;
        color: #a855f7;
    }

    .pending-card p[b-yryvilqf7h] {
        margin: 0;
        color: #b8b8d4;
        font-size: 16px;
    }

/* ================= FORM CONTAINER ================= */

.submit-form[b-yryvilqf7h] {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(20, 20, 34, 0.25);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 18px;
    backdrop-filter: blur(20px);
}

/* ================= FORM FIELDS ================= */

.field[b-yryvilqf7h] {
    margin-bottom: 28px;
}

    .field label[b-yryvilqf7h] {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #dcdcff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* ================= INPUTS ================= */

.search-box input[b-yryvilqf7h] {
    width: 520px;
    max-width: 95%;
    padding: 18px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    outline: none;
    transition: 0.3s ease;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

    .search-box input:focus[b-yryvilqf7h] {
        border-color: #8b5cf6;
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    }

.input[b-yryvilqf7h] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background-color: transparent;
    color: white;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .input:focus[b-yryvilqf7h] {
        border-color: #8b5cf6;
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), inset 0 0 10px rgba(139, 92, 246, 0.1);
    }

    .input[b-yryvilqf7h]::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

.textarea[b-yryvilqf7h] {
    resize: vertical;
    min-height: 120px;
    max-height: 240px;
}

/* ================= SEARCH RESULTS ================= */

.search-results[b-yryvilqf7h] {
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    background: rgba(20, 20, 34, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.search-item[b-yryvilqf7h] {
    padding: 12px 16px;
    cursor: pointer;
    color: #b8b8d4;
    font-size: 15px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    .search-item:last-child[b-yryvilqf7h] {
        border-bottom: none;
    }

    .search-item:hover[b-yryvilqf7h] {
        background: rgba(168, 85, 247, 0.15);
        color: #a855f7;
        padding-left: 20px;
    }

/* ================= SELECTED GAME ================= */

.selected-game[b-yryvilqf7h] {
    margin-top: 15px;
    padding: 14px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    color: #dcdcff;
    font-size: 15px;
}

    .selected-game strong[b-yryvilqf7h] {
        color: #a855f7;
    }

/* ================= MARKDOWN PREVIEW ================= */

.row[b-yryvilqf7h] {
    display: flex;
    gap: 20px;
}

.col[b-yryvilqf7h] {
    flex: 1;
    margin-bottom: 20px;
}

.border-bottom[b-yryvilqf7h] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.mb-3[b-yryvilqf7h] {
    margin-bottom: 20px;
}

.row .col b[b-yryvilqf7h] {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #dcdcff;
}

.row textarea[b-yryvilqf7h] {
    width: 100%;
    max-height: 150px;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .row textarea:focus[b-yryvilqf7h] {
        border-color: #8b5cf6;
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), inset 0 0 10px rgba(139, 92, 246, 0.1);
    }

    .row textarea[b-yryvilqf7h]::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

/* ================= MARKDOWN COMPONENT ================= */

[b-yryvilqf7h] .markdown {
    padding: 14px;
    background: rgba(20, 20, 34, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 10px;
    color: #dcdcff;
    font-size: 14px;
    line-height: 1.6;
}

/* ================= SUBMIT BUTTON ================= */

.submit-btn[b-yryvilqf7h] {
    width: 100%;
    padding: 16px;
    margin-top: 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #a855f7, #7c3aed);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .submit-btn:hover[b-yryvilqf7h] {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    }

    .submit-btn:active[b-yryvilqf7h] {
        transform: translateY(0);
    }

    .submit-btn:disabled[b-yryvilqf7h] {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

/* ================= VALIDATION ================= */

[b-yryvilqf7h] .validation-summary {
    padding: 16px;
    margin-bottom: 25px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #fca5a5;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

[b-yryvilqf7h] .validation-message {
    color: #fca5a5;
    font-size: 13px;
    margin-top: 6px;
}


/* ================= LOADING STATE ================= */

.loading[b-yryvilqf7h] {
    text-align: center;
    padding: 60px 20px;
    color: #b8b8d4;
    font-size: 18px;
}

/* ================= LOADING STATE ================= */
.submit-error[b-yryvilqf7h] {
    margin-bottom: 12px;
    background: rgba(255, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    color: red;
    width: 100%;
    text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .submit-form[b-yryvilqf7h] {
        padding: 25px;
        margin: 20px;
    }

    .row[b-yryvilqf7h] {
        flex-direction: column;
    }
}
