* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.7;
}

.verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verify-overlay.hidden {
    display: none;
}

.verify-box {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border: 3px solid #a855f7;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.3);
}

.verify-content {
    text-align: center;
}

.verify-symbol {
    font-size: 4rem;
    margin-bottom: 20px;
}

.verify-content h2 {
    font-size: 2.2rem;
    color: #a855f7;
    margin-bottom: 20px;
    font-weight: 800;
}

.verify-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #b0b0b0;
    line-height: 1.7;
}

.verify-note {
    color: #ec4899 !important;
    font-weight: 600;
    margin-top: 20px !important;
}

.verify-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-yes,
.btn-no {
    flex: 1;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.btn-yes {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.btn-no {
    background: transparent;
    color: #888;
    border: 2px solid #444;
}

.btn-no:hover {
    border-color: #666;
    color: #aaa;
}

.site-header {
    background: rgba(22, 33, 62, 0.98);
    border-bottom: 2px solid #a855f7;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #a855f7;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.main-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-menu a {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    transition: width 0.3s ease;
}

.main-menu a:hover {
    color: #ec4899;
}

.main-menu a:hover::after {
    width: 100%;
}

.hero-area {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    padding: 100px 30px;
    text-align: center;
    position: relative;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.about-section,
.info-cards-section,
.features-area,
.cta-area {
    padding: 90px 30px;
}

.game-area {
    padding: 80px 30px;
    background: #16213e;
}

.content-area {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.about-section {
    background: #0f3460;
}

.text-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-block p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.8;
}

.section-desc {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    max-width: 100%;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.3);
    border: 3px solid #a855f7;
}

.game-player {
    width: 100%;
    height: 650px;
    display: block;
}

.game-info-box {
    max-width: 900px;
    margin: 35px auto 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border: 2px solid #a855f7;
}

.game-info-box p {
    color: #ec4899;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.info-cards-section {
    background: #1a1a2e;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 45px 35px;
    border-radius: 15px;
    border: 2px solid #a855f7;
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
}

.card-emoji {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #ec4899;
    font-weight: 800;
}

.info-card p {
    font-size: 1.05rem;
    color: #b0b0b0;
    line-height: 1.8;
    text-align: center;
}

.features-area {
    background: #0f3460;
}

.feature-list {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 45px;
    padding: 40px;
    background: #16213e;
    border-radius: 15px;
    border: 2px solid #a855f7;
}

.feature-num {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 70px;
}

.feature-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #ec4899;
    font-weight: 800;
}

.feature-info p {
    font-size: 1.05rem;
    color: #b0b0b0;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

.cta-area {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    text-align: center;
    color: #fff;
}

.cta-area h2 {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.cta-area p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 40px;
}

.cta-link {
    display: inline-block;
    padding: 20px 60px;
    background: #fff;
    color: #a855f7;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.site-footer {
    background: #0f1419;
    color: #e0e0e0;
    padding: 70px 30px 30px;
    border-top: 3px solid #a855f7;
}

.footer-content {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ec4899;
    font-weight: 800;
}

.footer-section p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ec4899;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(22, 33, 62, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
        border-bottom: 2px solid #a855f7;
    }

    .main-menu.active {
        left: 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .text-blocks {
        grid-template-columns: 1fr;
    }

    .game-player {
        height: 500px;
    }

    .feature-row {
        flex-direction: column;
        gap: 20px;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .btn-yes,
    .btn-no {
        width: 100%;
    }
}
