:root {
    --primary-color: #d4af37;
    /* Gold */
    --bg-color: #0f172a;
    /* Deep Blue */
    --arena-bg: rgba(255, 255, 255, 0.1);
    --text-color: #f8fafc;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

header {
    text-align: center;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.5rem;
}

.subtitle {
    opacity: 0.7;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Game Content Layout */
.game-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

/* Arena Circular Area */
.buzios-arena-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.buzios-arena {
    position: relative;
    width: 50vw;
    /* Mobile Default: 50% screen width */
    height: 50vw;
    border-radius: 50%;
    background: var(--arena-bg);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5) inset, 0 0 20px rgba(212, 175, 55, 0.1);
    /* Base texture pattern */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+');
    z-index: 1;
    /* Stacking context */
}

/* Layer for "Contas" Image */
.buzios-arena::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../buzios/images/kit/contas.png');
    background-size: 100% 100%;
    /* Force fit */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
    /* Behind content but in flow? No, parent has bg. */
    /* Actually, we want it ON TOP of arena background color but BEHIND buzios. */
    /* Since parent has z-index, children reference it. */
    /* If we put -1, it goes behind the parent background? Standard stacking context says yes if parent not established context? */
    /* Let's just put it at z-index 0 and make buzios z-index 10 */
    border-radius: 50%;
    /* Clip to circle */
    z-index: 0;
}

/* ODU Table Styling */
.odu-table-container {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.odu-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-color);
}

.odu-table th,
.odu-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.odu-table th {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
}

.odu-table td {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    height: 3.5rem;
    /* Fixed height for consistency */
}

/* Desktop Responsiveness */
@media (min-width: 900px) {
    .game-content-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 4rem;
    }

    .buzios-arena {
        width: 30vw;
        /* Desktop: 30% screen width */
        height: 30vw;
    }

    .buzios-arena-wrapper {
        width: auto;
    }
}

/* Controls */
.controls {
    margin-top: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: #e6c255;
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Results Panel */
.results-panel {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.score-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-card .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.score-card .count {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Búzios Images stuff */
.buzio {
    position: absolute;
    width: 12%;
    /* Relative to arena size */
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
    transition: opacity 1s ease, transform 0.5s ease;
    opacity: 0;
    /* Applied immediately on append, then JS sets to 1 */
    animation: fadeIn 0.5s forwards;
    z-index: 10;
    /* Ensure on top of background image */
}

/* Monitoring Section */
.monitor-container {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.monitor-container h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.monitor-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.monitor-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
    transition: all 0.3s ease;
}

.monitor-row:hover {
    background: rgba(212, 175, 55, 0.1);
}

.monitor-label {
    font-weight: bold;
    color: #888;
    font-size: 0.9rem;
}

.monitor-name {
    color: #fff;
    font-weight: 700;
}

.monitor-status {
    color: #d4af37;
    font-style: italic;
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .monitor-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .monitor-row {
        /* Standard Block flow to allow inline children */
        display: block;
        text-align: center;
        padding: 0.5rem;
        border-left: none;
        /* Remove side border */
        border-top: 3px solid #d4af37;
        /* Add top border for visual anchor */
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        /* Slightly darker for contrast */
    }

    .monitor-label {
        display: block;
        /* Force new line */
        font-size: 0.75rem;
        color: #aaa;
        margin-bottom: 0.2rem;
        text-transform: uppercase;
    }

    .monitor-label::after {
        content: " Caída";
        font-size: 0.7rem;
        opacity: 0.7;
    }

    .monitor-name {
        display: inline-block;
        /* Inline with status */
        font-size: 0.9rem;
        font-weight: bold;
        color: #fff;
    }

    .monitor-status {
        display: inline-block;
        /* Inline with name */
        text-align: left;
        font-size: 0.8rem;
        color: #d4af37;
        margin-left: 0.3rem;
        border: none;
        padding: 0;
        margin-top: 0;
    }

    /* Compact Table for Mobile */
    .odu-table th,
    .odu-table td {
        padding: 0.2rem;
        font-size: 0.8rem;
        height: 2.2rem;
        /* Reduced height */
    }

    .odu-table-container {
        padding: 0.3rem;
    }

    /* Reduce Gap */
    .game-content-wrapper {
        gap: 0.5rem;
    }

    .buzios-arena {
        width: 70vw;
        /* Slightly larger on mobile for better view */
        height: 70vw;
    }
}

.buzio.fading-out {
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Modal Core Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #0f172a;
    border: 1px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    color: var(--text-color);
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-btn:hover {
    transform: scale(1.1);
}

/* Modal Content Defaults */
#modal-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 1rem;
}

.modal-section {
    text-align: justify;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-box.positive h3 {
    color: #4ade80;
}

.detail-box.negative h3 {
    color: #f87171;
}

.detail-box p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* AI Modal Specifics */
.modal-content.full-screen {
    width: 90vw;
    height: 90vh;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Start from top */
    align-items: center;
    text-align: left;
    overflow-y: auto;
}

.modal-content.full-screen h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.ai-content {
    font-size: 1.2rem;
    line-height: 1.8;
    white-space: pre-wrap;
    /* Preserve paragraphs */
    width: 100%;
    max-width: 800px;
}

.ai-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ... Existing Styles ... */

/* =========================================
   LANDING PAGE STYLES (LoL Inspired)
   ========================================= */

.landing-body {
    display: block;
    /* Override flex center of body */
    background: #000;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 100;
    border-bottom: 2px solid #1e2328;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 2px;
}

.landing-nav {
    display: none;
    /* Mobile hidden by default, or implement hamburger later. Shown on desktop via media query */
}

.landing-nav a {
    color: #f0e6d2;
    text-decoration: none;
    font-weight: bold;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.landing-nav a:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.btn-login-header {
    background: transparent;
    color: #f0e6d2;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-play-header {
    background: #0ac8b9;
    color: #000;
    border: none;
    padding: 0.5rem 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    /* LoL buttons are often squarish or slightly rounded */
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(10, 200, 185, 0.3);
}

.btn-play-header:hover {
    background: #08a396;
    box-shadow: 0 0 15px rgba(10, 200, 185, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../images/landing_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 4px solid #d4af37;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-icon {
    width: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px #d4af37);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #f0e6d2;
    /* Gold gradient text */
    background: linear-gradient(to bottom, #f0e6d2 0%, #d4af37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 5px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-cta-hero {
    background: linear-gradient(to bottom, #d4af37 0%, #a88622 100%);
    border: 2px solid #f0e6d2;
    color: #1e2328;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 1rem 3rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-cta-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

/* Content Sections */
.content-section {
    padding: 6rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.section-container.reverse {
    flex-direction: row-reverse;
}

.dark-section {
    background: #090a0c;
    color: #f0e6d2;
}

.gold-section {
    background: #1e2328;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.text-block {
    flex: 1;
    min-width: 300px;
}

.text-block h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-style: italic;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a09b8c;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 0.8rem 2rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
}

.image-block {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-card {
    background: #111;
    border: 1px solid #333;
    padding: 2rem;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: rotate(2deg);
    /* Artistic tilt */
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: rotate(0);
}

.feature-card.dark {
    background: #000;
    border-color: #d4af37;
    transform: rotate(-2deg);
}

.feature-card.dark:hover {
    transform: rotate(0);
}


.feature-card h3 {
    color: #f0e6d2;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.feature-card p {
    color: #888;
}

.feature-card.odus-bg {
    background-image: url('../images/16odus.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-color: #d4af37;
    overflow: hidden;
}

.feature-card.odus-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for readability */
    z-index: 1;
    transition: background 0.3s;
}

.feature-card.odus-bg:hover::before {
    background: rgba(0, 0, 0, 0.3);
    /* Lighter on hover */
}

.feature-card.odus-bg h3,
.feature-card.odus-bg p {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.feature-card.odus-bg h3 {
    color: #d4af37;
    /* Keep gold title */
}

/* Online Feature Card Background */
.feature-card.online-bg {
    background-image: url('../images/online.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-color: #d4af37;
    overflow: hidden;
}

.feature-card.online-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
    transition: background 0.3s;
}

.feature-card.online-bg:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.feature-card.online-bg h3,
.feature-card.online-bg p {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.feature-card.online-bg h3 {
    color: #d4af37;
}

/* Footer */
.landing-footer {
    background: #010101;
    padding: 3rem 1rem;
    text-align: center;
    border-top: 2px solid #1e2328;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #666;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}

/* Login Modal (LoL Client Style) */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.login-modal-overlay.active {
    display: flex;
    /* Flex to center */
    opacity: 1;
}

.login-modal-box {
    background: #010a13;
    /* Deep LoL blue/black */
    border: 2px solid #c8aa6e;
    /* LoL gold border */
    width: 400px;
    padding: 3rem 2rem;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #c8aa6e;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.login-modal-box h2 {
    text-align: center;
    font-family: var(--font-heading);
    color: #f0e6d2;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    background: #1e2328;
    border: 1px solid #3c3c3c;
    color: #f0e6d2;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #c8aa6e;
    outline: none;
    box-shadow: 0 0 10px rgba(200, 170, 110, 0.2);
}

.btn-submit-login {
    width: 100%;
    padding: 1rem;
    background: #1e2328;
    border: 2px solid #c8aa6e;
    color: #c8aa6e;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-submit-login:hover {
    background: #c8aa6e;
    color: #000;
}

.modal-footer-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.modal-footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.modal-footer-links a:hover {
    color: #f0e6d2;
}

.divider {
    margin: 0 0.5rem;
    color: #444;
}

/* Mobile Media Queries for Landing */
@media (min-width: 900px) {
    .landing-nav {
        display: block;
    }

    .hero-title {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Brightness Optimization - Aggressive */

    .hero-section {
        background-position: center center;
    }

    .hero-overlay {
        /* Remove darkening overlay almost entirely for mobile */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.2) 100%);
    }

    .hero-title {
        font-size: 3rem;
        /* Disable gradient text clip for mobile to ensure max brightness */
        background: none;
        background-clip: initial;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;

        /* Pure white text with strong Golden Glow */
        color: #ffffff;
        text-shadow: 0 0 10px #d4af37, 0 0 20px rgba(212, 175, 55, 0.5);

        filter: none;
        /* Remove drop shadow filter to prevent mudiness */
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        color: #ffffff;
        text-shadow: 0 0 5px #000;
        /* Keep some shadow for readability against image */
        font-size: 1.1rem;
        opacity: 1;
        font-weight: bold;
    }

    .logo {
        text-shadow: 0 0 5px #000;
        font-size: 1.2rem;
    }

    .login-modal-box {
        width: 95%;
        padding: 2rem 1rem;
        background: #010a13;
        /* Ensure solid background */
    }
}