@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom right, #00b4d8, #0077b6, #023e8a);
    color: #f8f9fa;
    min-height: 100vh;
}

.primary-header {
    background: rgba(0, 35, 102, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #00b4d8;
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.identity {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.identity-logo {
    width: 55px;
    height: 55px;
}

.identity-text {
    font-size: 2.1rem;
    font-weight: 900;
    color: #00b4d8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.primary-nav a {
    color: #90e0ef;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.primary-nav a:hover {
    border-color: #00b4d8;
    background: rgba(0, 180, 216, 0.2);
    color: #caf0f8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 32px;
    height: 4px;
    background: #00b4d8;
    border-radius: 2px;
    transition: all 0.3s;
}

.page-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.primary-banner {
    background: rgba(0, 119, 182, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid #00b4d8;
    padding: 5rem 4rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.primary-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #caf0f8;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.primary-banner p {
    font-size: 1.4rem;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #90e0ef;
    font-weight: 400;
}

.content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.content-block {
    background: rgba(0, 35, 102, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid #00b4d8;
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.content-block:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(0, 180, 216, 0.4);
    border-color: #90e0ef;
}

.content-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    color: #00b4d8;
    font-weight: 800;
}

.content-block p {
    line-height: 1.9;
    color: #caf0f8;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.content-block ul {
    list-style: none;
    margin-top: 1.8rem;
}

.content-block li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 180, 216, 0.3);
    color: #90e0ef;
    font-size: 1.05rem;
}

.content-block li:last-child {
    border-bottom: none;
}

.gameplay-area {
    margin: 5rem 0;
    text-align: center;
}

.gameplay-area h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    color: #00b4d8;
    font-weight: 900;
}

.gameplay-embed {
    width: 100%;
    max-width: 950px;
    height: 730px;
    border: 4px solid #00b4d8;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 0 15px 60px rgba(0, 180, 216, 0.4);
}

.warning-area {
    background: rgba(178, 34, 34, 0.3);
    backdrop-filter: blur(10px);
    border: 3px solid #dc2626;
    border-radius: 20px;
    padding: 3.5rem;
    margin: 5rem 0;
    text-align: center;
}

.warning-area h2 {
    color: #fca5a5;
    font-size: 2.6rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.warning-area p {
    font-size: 1.3rem;
    line-height: 2;
    color: #fecaca;
    margin: 1rem 0;
}

.primary-footer {
    background: rgba(0, 35, 102, 0.9);
    border-top: 3px solid #00b4d8;
    padding: 4rem 3rem;
    margin-top: 6rem;
}

.footer-wrap {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: #90e0ef;
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border: 2px solid #00b4d8;
    border-radius: 10px;
    transition: all 0.3s;
}

.footer-navigation a:hover {
    background: rgba(0, 180, 216, 0.3);
    border-color: #90e0ef;
    color: #caf0f8;
}

.footer-info {
    color: #90e0ef;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.show {
    display: flex;
}

.age-dialog {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    border: 4px solid #00b4d8;
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 80px rgba(0, 180, 216, 0.6);
}

.age-dialog h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: #caf0f8;
    font-weight: 900;
}

.age-dialog p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 2;
    color: #90e0ef;
}

.age-controls {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-control {
    padding: 1.3rem 3.5rem;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-control.confirm {
    background: #00b4d8;
    color: #023e8a;
}

.age-control.confirm:hover {
    background: #90e0ef;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.6);
    transform: scale(1.08);
}

.age-control.deny {
    background: #dc2626;
    color: white;
}

.age-control.deny:hover {
    background: #ef4444;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.6);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(0, 35, 102, 0.98);
        transition: right 0.3s;
        padding-top: 5rem;
        border-left: 3px solid #00b4d8;
    }
    
    .primary-nav.active {
        right: 0;
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2.5rem;
    }
    
    .primary-nav a {
        display: block;
        padding: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .primary-banner h1 {
        font-size: 2.5rem;
    }
    
    .primary-banner p {
        font-size: 1.1rem;
    }
    
    .content-blocks {
        grid-template-columns: 1fr;
    }
    
    .identity-text {
        font-size: 1.5rem;
    }
    
    .gameplay-embed {
        height: 530px;
    }
    
    .age-dialog {
        margin: 1.5rem;
        padding: 3rem;
    }
    
    .age-controls {
        flex-direction: column;
    }
}
