* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #f0fdfa;
    color: #0f172a;
    line-height: 1.65;
}

.access-gate {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.98), rgba(6, 182, 212, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.access-gate.granted {
    display: none;
}

.gate-panel {
    background: white;
    padding: 4rem 3.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 4px solid #06b6d4;
}

.gate-gem {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.gate-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0891b2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gate-panel p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #475569;
    font-weight: 500;
}

.gate-note {
    font-size: 1rem;
    font-style: italic;
    color: #64748b;
}

.gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.gate-buttons button {
    padding: 1.3rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-grant {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.btn-grant:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.4);
}

.btn-deny {
    background: white;
    color: #0891b2;
    border: 3px solid #0891b2;
}

.btn-deny:hover {
    background: #f0fdfa;
}

.top-bar {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 10000;
    border-bottom: 3px solid #06b6d4;
}

.header-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.trigger-line {
    width: 30px;
    height: 4px;
    background: #06b6d4;
    border-radius: 4px;
    transition: 0.3s;
}

.main-menu {
    display: flex;
    gap: 3rem;
}

.main-menu a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.08rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #0891b2);
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}

.main-menu a:hover {
    color: #06b6d4;
}

.banner {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    padding: 7rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1)),
                linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1));
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    color: white;
}

.banner-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.8;
}

.action-btn {
    display: inline-block;
    padding: 1.4rem 4rem;
    background: white;
    color: #0891b2;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.action-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
}

.intro-block {
    padding: 6.5rem 0;
    background: white;
}

.intro-block h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #0891b2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.lead-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 5rem;
    color: #475569;
    line-height: 1.9;
    font-weight: 500;
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.block {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #67e8f9;
}

.block:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.3);
    border-color: #06b6d4;
}

.block-emoji {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.block h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #0891b2;
    font-weight: 800;
    text-transform: uppercase;
}

.block p {
    color: #475569;
    font-size: 1.12rem;
    line-height: 1.8;
    font-weight: 500;
}

.warning-block {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.warning-panel {
    background: white;
    padding: 4rem;
    border-radius: 25px;
    border: 5px solid #f59e0b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.warning-panel h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #d97706;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-list {
    list-style: none;
}

.warning-list li {
    padding: 2rem;
    background: #fffbeb;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border-left: 6px solid #fbbf24;
    font-size: 1.15rem;
    color: #78350f;
    font-weight: 500;
}

.warning-list li:last-child {
    margin-bottom: 0;
}

.warning-list strong {
    color: #92400e;
    font-weight: 800;
}

.game-showcase {
    padding: 6.5rem 0;
    background: white;
}

.game-showcase h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #0891b2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-window {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 5px solid #06b6d4;
}

.game-window iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.value-props {
    padding: 6.5rem 0;
    background: #f0fdfa;
}

.value-props h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 5rem;
    color: #0891b2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 3.5rem;
}

.prop-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.prop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.25);
    border-color: #06b6d4;
}

.prop-label {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

.prop-item h4 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #0f172a;
    font-weight: 800;
    text-transform: uppercase;
}

.prop-item p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.mission-statement {
    padding: 6.5rem 0;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: white;
}

.mission-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-box h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mission-box p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.9;
    font-weight: 500;
}

.bottom-section {
    background: #0f172a;
    color: white;
    padding: 5rem 0 2.5rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    color: #06b6d4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: #06b6d4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid #334155;
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }

    .main-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 3rem 0;
        gap: 0;
    }

    .main-menu.active {
        left: 0;
    }

    .main-menu a {
        padding: 1.5rem 0;
    }

    .banner-content h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .intro-block h2,
    .game-showcase h2,
    .value-props h2,
    .mission-box h2 {
        font-size: 2.5rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .game-window iframe {
        height: 500px;
    }

    .gate-panel {
        padding: 3rem 2.5rem;
        margin: 2rem;
    }

    .gate-panel h2 {
        font-size: 2rem;
    }

    .props-grid {
        grid-template-columns: 1fr;
    }

    .feature-blocks {
        grid-template-columns: 1fr;
    }
}
