@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Roboto:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, #0a1929 0%, #0d2238 50%, #0a1929 100%);
    color: #e3f2fd;
    min-height: 100vh;
}

/* Header Navigation */
header {
    background: rgba(13, 34, 56, 0.95);
    border-bottom: 3px solid #1e88e5;
    box-shadow: 0 5px 25px rgba(30, 136, 229, 0.4);
    position: sticky;
    top: 0;
    z-index: 2000;
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 25px rgba(30, 136, 229, 0.6);
    transform: rotate(-5deg);
}

.site-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e88e5;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(30, 136, 229, 0.5);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e3f2fd;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

nav a:hover,
nav a.active {
    color: #1e88e5;
    border-color: #1e88e5;
    background: rgba(30, 136, 229, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: #1e88e5;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Main Layout */
main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #1e88e5;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(30, 136, 229, 0.6);
}

h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.3rem;
    color: #42a5f5;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-family: 'Rajdhani', sans-serif;
    color: #64b5f6;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    line-height: 1.9;
    margin-bottom: 1.4rem;
    color: #b3cde0;
    font-size: 1.05rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.main-column {
    background: rgba(13, 34, 56, 0.6);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #1e88e5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: rgba(13, 34, 56, 0.6);
    border: 2px solid #0d47a1;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    border-color: #1e88e5;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
}

.widget-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(30, 136, 229, 0.7));
}

/* Game Container */
.game-container {
    background: rgba(10, 25, 41, 0.8);
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    border: 3px solid #1e88e5;
    box-shadow: 0 10px 40px rgba(30, 136, 229, 0.3);
}

.game-container h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.7);
}

/* Content Panel */
.content-panel {
    background: rgba(13, 34, 56, 0.5);
    border-left: 4px solid #1e88e5;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 12px;
}

.content-panel ul {
    margin-left: 2.5rem;
    margin-top: 1.5rem;
}

.content-panel li {
    margin: 1.1rem 0;
    line-height: 1.8;
    color: #b3cde0;
}

.content-panel li strong {
    color: #42a5f5;
}

/* Footer */
footer {
    background: rgba(10, 25, 41, 0.95);
    border-top: 3px solid #1e88e5;
    padding: 3rem 3rem 2rem;
    margin-top: 5rem;
}

.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.9rem;
    color: #42a5f5;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-links a {
    color: #1e88e5;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
}

.footer-links a:hover {
    color: #42a5f5;
    text-shadow: 0 0 12px rgba(30, 136, 229, 0.7);
}

.footer-note {
    color: #6096ba;
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Age Verification */
.age-verify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-verify.show {
    display: flex;
}

.age-verify-content {
    background: linear-gradient(135deg, rgba(13, 34, 56, 0.98) 0%, rgba(10, 25, 41, 0.98) 100%);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 4px solid #1e88e5;
    box-shadow: 0 20px 60px rgba(30, 136, 229, 0.5);
    backdrop-filter: blur(15px);
}

.age-verify-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #42a5f5;
}

.age-verify-content p {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    color: #e3f2fd;
}

.age-verify-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.age-btn-yes {
    background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
    color: #fff;
}

.age-btn-yes:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.6);
}

.age-btn-no {
    background: transparent;
    border: 2px solid #0d47a1;
    color: #e3f2fd;
}

.age-btn-no:hover {
    background: #0d47a1;
    border-color: #1e88e5;
}

/* Responsive */
@media (max-width: 1024px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 90px);
        background: rgba(13, 34, 56, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 3px solid #1e88e5;
        box-shadow: -8px 0 25px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(12px);
    }

    nav ul.active {
        right: 0;
    }

    nav a {
        width: 100%;
        padding: 1rem;
    }

    .header-inner {
        padding: 1rem 1.5rem;
    }

    .site-title {
        font-size: 1.8rem;
    }

    main {
        padding: 2.5rem 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .game-iframe {
        height: 500px;
    }

    .age-verify-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-verify-btns {
        flex-direction: column;
    }
}
