@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #0d3b4f 0%, #1a5c75 50%, #0d3b4f 100%);
    color: #e8f4f8;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
    z-index: 0;
}

.compass-bg {
    position: fixed;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    transform: rotate(15deg);
    font-size: 300px;
    color: #fff;
    pointer-events: none;
    z-index: 0;
}

header {
    background: rgba(13, 59, 79, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid #1fb5d0;
    padding: 1.5rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(31, 181, 208, 0.3);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.compass-icon {
    font-size: 3.5rem;
    color: #1fb5d0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, #1fb5d0, #4dd0e1, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.brand-text p {
    font-size: 0.85rem;
    color: #4dd0e1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.main-nav a {
    color: #e8f4f8;
    text-decoration: none;
    font-weight: 700;
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.main-nav a:hover {
    background: rgba(31, 181, 208, 0.2);
    border-color: #1fb5d0;
    color: #1fb5d0;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 32px;
    height: 4px;
    background: #1fb5d0;
    border-radius: 4px;
    transition: all 0.3s;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(31, 181, 208, 0.15), rgba(13, 59, 79, 0.3));
    padding: 6rem 3rem;
    text-align: center;
    border-bottom: 2px solid rgba(31, 181, 208, 0.3);
}

.hero-banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1fb5d0, #4dd0e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(31, 181, 208, 0.3);
}

.hero-banner p {
    font-size: 1.3rem;
    color: #b8e6f0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

.features-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 5rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-box {
    background: linear-gradient(135deg, rgba(26, 92, 117, 0.4), rgba(13, 59, 79, 0.6));
    border: 3px solid #1fb5d0;
    border-radius: 15px;
    padding: 3rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(31, 181, 208, 0.1), transparent);
    transition: all 0.6s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(31, 181, 208, 0.4);
    border-color: #4dd0e1;
}

.feature-box:hover::before {
    top: 0;
    right: 0;
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #1fb5d0;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.feature-box p {
    color: #b8e6f0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.game-area {
    background: rgba(13, 59, 79, 0.7);
    padding: 5rem 3rem;
    text-align: center;
    border-top: 2px solid rgba(31, 181, 208, 0.3);
    border-bottom: 2px solid rgba(31, 181, 208, 0.3);
}

.game-area h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: #1fb5d0;
    margin-bottom: 3rem;
    font-weight: 900;
}

.game-area iframe {
    border-radius: 15px;
    border: 4px solid #1fb5d0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    max-width: 100%;
}

.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.text-section {
    background: rgba(26, 92, 117, 0.3);
    border-radius: 15px;
    padding: 4rem;
    margin: 3rem 0;
    border-left: 5px solid #1fb5d0;
}

.text-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #1fb5d0;
    margin-bottom: 2rem;
    font-weight: 800;
}

.text-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #4dd0e1;
    margin: 2.5rem 0 1.2rem;
    font-weight: 700;
}

.text-section p {
    color: #b8e6f0;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.text-section ul {
    list-style-position: inside;
    color: #b8e6f0;
    line-height: 1.9;
    margin-left: 2rem;
}

.text-section li {
    margin-bottom: 1rem;
}

footer {
    background: rgba(13, 59, 79, 0.98);
    padding: 4rem 3rem;
    border-top: 4px solid #1fb5d0;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1fb5d0;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.support-links a {
    color: #e8f4f8;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border: 3px solid #1fb5d0;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.support-links a:hover {
    background: #1fb5d0;
    color: #0d3b4f;
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(31, 181, 208, 0.5);
}

.footer-content p {
    color: #5a8da0;
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, #1a5c75, #0d3b4f);
    padding: 4.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 650px;
    border: 4px solid #1fb5d0;
    box-shadow: 0 30px 90px rgba(31, 181, 208, 0.6);
}

.age-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1fb5d0;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.age-content p {
    color: #b8e6f0;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-size: 1.15rem;
}

.age-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-action {
    padding: 1.5rem 4rem;
    border: 3px solid #1fb5d0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-action.accept {
    background: linear-gradient(135deg, #1fb5d0, #4dd0e1);
    color: #0d3b4f;
}

.age-action.accept:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 45px rgba(31, 181, 208, 0.6);
}

.age-action.decline {
    background: transparent;
    color: #e8f4f8;
}

.age-action.decline:hover {
    background: rgba(31, 181, 208, 0.1);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav ul {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: rgba(13, 59, 79, 0.98);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s;
        border-top: 3px solid #1fb5d0;
    }
    
    .main-nav ul.open {
        left: 0;
    }
    
    .brand-text h1 {
        font-size: 2rem;
    }
    
    .hero-banner h1 {
        font-size: 2.8rem;
    }
    
    .features-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
    
    .text-section {
        padding: 2.5rem;
    }
}
