@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #090909;
    --surface-color: rgba(255, 255, 255, 0.05);
    --glass-color: rgba(255, 255, 255, 0.08);
    --gold: #D4AF37;
    --red: #B91C1C;
    --steel: #6B7280;
    --deep-black: #111111;
    --white: #FAFAFA;
    --muted: #A1A1AA;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CHAMPIONS ENTRANCE (Navigation) */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-disclaimer-bar {
    background-color: var(--deep-black);
    color: var(--muted);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #1a1a1a;
}

.champions-entrance {
    background: rgba(9, 9, 9, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-color);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-play-now {
    background: linear-gradient(135deg, #F3D060 0%, #D4AF37 100%);
    color: var(--deep-black) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: 1px solid #FFE58F;
}

.btn-play-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-play-now:active {
    transform: translateY(1px);
}

/* HERO SECTION */
.hero-arena {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5rem;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(9, 9, 9, 0.4) 0%, rgba(9, 9, 9, 0.95) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: spotlight-glow 4s infinite alternate;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* CENTER BOXING RING (Game) */
.center-boxing-ring {
    padding: 5rem 2rem;
    background: var(--bg-color);
    position: relative;
}

.ring-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--deep-black);
    border-radius: 20px;
    padding: 1.5rem;
    /* Black leather and championship gold trim effect */
    border: 4px solid #1a1a1a;
    box-shadow: 
        0 0 0 2px var(--gold),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 0 20px rgba(0,0,0,0.8);
    position: relative;
}

/* Steel corners */
.ring-container::before,
.ring-container::after,
.ring-container-inner::before,
.ring-container-inner::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--steel) 0%, #374151 100%);
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 2px 5px rgba(0,0,0,0.5);
}

.ring-container::before { top: -15px; left: -15px; }
.ring-container::after { top: -15px; right: -15px; }
.ring-container-inner::before { bottom: -15px; left: -15px; }
.ring-container-inner::after { bottom: -15px; right: -15px; }

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    background: #000;
}

.game-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--glass-color);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--surface-color);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(1px);
}

/* ARENA AMENITIES (3 Columns) */
.arena-amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.amenity-block {
    background: var(--surface-color);
    border: 1px solid var(--glass-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Player Tunnel */
.player-tunnel {
    min-height: 400px;
    justify-content: flex-end;
}

.tunnel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.tunnel-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: linear-gradient(to top, var(--bg-color) 40%, transparent);
}

.tunnel-content ul {
    list-style: none;
    margin-top: 1rem;
}

.tunnel-content li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tunnel-content li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 1rem;
    box-shadow: 0 0 8px var(--gold);
}

/* Digital Scoreboard */
.scoreboard {
    background: var(--deep-black);
    padding: 2.5rem;
    border: 2px solid #222;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.score-header {
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.score-header h3 {
    color: var(--red);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(185, 28, 28, 0.5);
}

.score-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.score-item {
    background: #0a0a0a;
    padding: 1rem;
    border: 1px solid #1a1a1a;
    text-align: center;
}

.score-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.score-value {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

/* VIP Lounge */
.vip-lounge {
    padding: 2.5rem;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--surface-color) 100%);
}

.vip-card {
    background: var(--glass-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.vip-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.vip-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.vip-card p {
    font-size: 0.85rem;
    color: var(--muted);
}

/* MEDIA CENTER */
.media-center {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.media-block {
    background: var(--surface-color);
    border: 1px solid var(--glass-color);
}

.media-block-one {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
}

.media-img-wrapper {
    flex: 1;
    height: 400px;
}

.media-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-text-content {
    flex: 1;
    padding: 4rem;
}

.media-text-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.media-block-two {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.media-block-two h3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.media-block-two p {
    color: var(--muted);
    font-size: 1.1rem;
}

.media-block-three {
    position: relative;
    height: 500px;
}

.media-block-three img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border: 1px solid var(--glass-color);
}

.glass-overlay h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* PRESS ROOM */
.press-room {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    border-top: 1px solid var(--surface-color);
}

.press-col h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-color);
}

.support-details {
    margin-bottom: 2rem;
}

.support-label {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.support-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.support-email-text {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.faq-list {
    list-style: none;
}

.faq-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--surface-color);
}

.faq-list h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: none;
    margin-bottom: 0.5rem;
}

.faq-list p {
    font-size: 0.9rem;
    color: var(--muted);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--surface-color);
    border: 1px solid var(--glass-color);
    padding: 1rem;
    color: var(--white);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.btn-submit {
    background: linear-gradient(135deg, #F3D060 0%, #D4AF37 100%);
    color: var(--deep-black);
    border: none;
    padding: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* FOOTER */
.arena-footer {
    position: relative;
    padding: 6rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-color);
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.3;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color) 70%, transparent);
    z-index: -1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--gold);
}

.disclaimer-box {
    background: rgba(185, 28, 28, 0.1);
    border: 1px solid rgba(185, 28, 28, 0.3);
    padding: 1.5rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

.disclaimer-box p {
    font-size: 0.85rem;
    color: #fca5a5;
    margin-bottom: 0.5rem;
}

.age-badge {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    font-weight: 700;
    margin-top: 1rem;
}

.copyright {
    color: var(--muted);
    font-size: 0.85rem;
}

/* LEGAL PAGES */
.legal-container {
    max-width: 900px;
    margin: 10rem auto 5rem;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 3rem 0 1rem;
    color: var(--white);
    border-bottom: 1px solid var(--surface-color);
    padding-bottom: 0.5rem;
}

.legal-content p, .legal-content ul {
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ANIMATIONS */
@keyframes spotlight-glow {
    0% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.1)); }
    100% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4)); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .arena-amenities {
        grid-template-columns: 1fr;
    }
    
    .media-center {
        grid-template-columns: 1fr;
    }
    
    .media-block-one {
        flex-direction: column;
    }
    
    .media-img-wrapper {
        width: 100%;
    }
    
    .press-room {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .champions-entrance {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .nav-links {
        display: none; /* Mobile menu simplified for requirements */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .center-boxing-ring {
        padding: 6rem 1rem 2rem;
    }
    
    .game-frame {
        height: 450px;
    }
    
    .media-text-content {
        padding: 2rem;
    }
    
    .media-text-content h3 {
        font-size: 1.8rem;
    }
    
    .score-grid {
        grid-template-columns: 1fr;
    }
}