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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    min-height: 100vh;
    color: #2d2d2d;
}

/* Verify Screen */
.verify-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95) 0%, rgba(78, 205, 196, 0.95) 100%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.verify-screen.active {
    display: flex;
}

.verify-panel {
    background: white;
    max-width: 600px;
    width: 100%;
    padding: 3.5rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: scale(1);
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.verify-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.verify-panel h2 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.verify-message {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.verify-prompt {
    font-size: 1.2rem;
    color: #2d2d2d;
    margin: 2rem 0;
    font-weight: 700;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.verify-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.btn-verify {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
}

.btn-verify:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-cancel {
    background: #e0e0e0;
    color: #666;
}

.btn-cancel:hover {
    background: #d0d0d0;
}

/* Burger Menu */
.burger-menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.burger-line {
    width: 30px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.open .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Top Bar */
.top-bar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.logo-badge {
    display: block;
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: -5px;
}

.main-menu {
    display: flex;
    gap: 2.5rem;
}

.menu-item {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.menu-item:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.menu-item.active {
    color: white;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

/* Content Area */
.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Block */
.hero-block {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-heading {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-tags {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Alert Boxes */
.alert-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.alert-box {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-top: 6px solid;
}

.box-blue {
    border-top-color: #45b7d1;
}

.box-green {
    border-top-color: #4ecdc4;
}

.box-orange {
    border-top-color: #ff8e53;
}

.box-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.alert-box h3 {
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.alert-box p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 500;
}

/* About Block */
.about-block {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.block-title {
    font-size: 2.8rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-text p {
    color: #666;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Game Block */
.game-block {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.game-intro {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.game-box {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    aspect-ratio: 16 / 10;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #ff6b6b, #4ecdc4) border-box;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-details {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Perks Block */
.perks-block {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.perk-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fffe 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.perk-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.perk-card h4 {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.perk-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3.5rem 2rem;
    background: white;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.page-title {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

/* Info Card */
.info-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.card-heading {
    font-size: 2rem;
    color: #2d2d2d;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.row-bullet {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.info-row p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Advice Block */
.advice-block {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advice-item {
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #f0fffe 100%);
    border-radius: 15px;
    border-left: 4px solid #ff6b6b;
}

.advice-item h4 {
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.advice-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Legal Content */
.legal-content {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.legal-item {
    margin-bottom: 2.5rem;
}

.legal-item h2 {
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.legal-item p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 500;
}

.critical-notice {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    border-left: 6px solid #ff6b6b;
}

.critical-notice h2 {
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.critical-notice p {
    color: #2d2d2d;
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Bottom Bar */
.bottom-bar {
    background: white;
    padding: 4rem 3rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-col p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 500;
}

.resource-links {
    list-style: none;
}

.resource-links li {
    margin-bottom: 0.8rem;
}

.resource-links a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: #4ecdc4;
}

.key-points {
    list-style: none;
}

.key-points li {
    color: #666;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.copyright {
    font-weight: 800;
    color: #2d2d2d;
    letter-spacing: 1px;
}

.tagline {
    font-style: italic;
    color: #999;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-menu {
        display: none;
        position: fixed;
        top: 90px;
        right: 20px;
        flex-direction: column;
        background: white;
        border-radius: 15px;
        padding: 1.5rem;
        gap: 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .main-menu.open {
        display: flex;
    }

    .content-area {
        padding: 2rem 1rem;
    }

    .hero-block {
        padding: 2.5rem 1.5rem;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-subheading {
        font-size: 1.15rem;
    }

    .alert-boxes {
        grid-template-columns: 1fr;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .advice-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .verify-panel {
        padding: 2.5rem 2rem;
    }

    .verify-panel h2 {
        font-size: 2rem;
    }

    .verify-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .verify-buttons button {
        width: 100%;
    }
}
