* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0d0d0d;
    background-image: 
        linear-gradient(45deg, #ff00ff 0%, transparent 25%),
        linear-gradient(-45deg, #00ffff 0%, transparent 25%),
        linear-gradient(135deg, #ffff00 0%, transparent 25%);
    background-size: 400% 400%;
    background-position: 0% 50%;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.verify-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(12px);
}

.verify-modal.hidden {
    display: none;
}

.verify-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 4px solid #ff00ff;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6), 0 0 80px rgba(0, 255, 255, 0.4);
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 600px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verify-header {
    text-align: center;
    margin-bottom: 30px;
}

.verify-logo {
    font-size: 100px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
    }
    50% {
        text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff;
    }
}

.verify-header h2 {
    font-family: 'Russo One', sans-serif;
    color: #00ffff;
    font-size: 40px;
    text-shadow: 0 0 20px #00ffff;
    letter-spacing: 3px;
}

.verify-msg,
.verify-confirm {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.verify-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.verify-button {
    flex: 1;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Russo One', sans-serif;
    letter-spacing: 2px;
}

.confirm-btn {
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    color: #0d0d0d;
}

.confirm-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.7);
}

.reject-btn {
    background: #333;
    color: #e0e0e0;
}

.reject-btn:hover {
    background: #555;
}

.top-bar {
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 4px solid #ff00ff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-bolt {
    font-size: 45px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-text {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    letter-spacing: 3px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-line {
    display: block;
    width: 35px;
    height: 4px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.site-nav {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

.nav-item:hover::after {
    width: 100%;
}

.splash {
    padding: 120px 40px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 0, 255, 0.2) 0%, transparent 70%);
}

.main-title {
    font-family: 'Russo One', sans-serif;
    font-size: 75px;
    color: #ff00ff;
    text-shadow: 0 0 30px #ff00ff, 0 0 60px #00ffff;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.main-desc {
    font-size: 26px;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #e0e0e0;
}

.splash-tags {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 0, 255, 0.2);
    border: 3px solid #ff00ff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about,
.principles,
.gaming,
.benefits,
.responsibility {
    padding: 100px 40px;
}

.about-wrapper,
.principles-wrapper,
.gaming-wrapper,
.benefits-wrapper,
.responsibility-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.title-main {
    font-family: 'Russo One', sans-serif;
    font-size: 50px;
    color: #00ffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 25px #00ffff;
    letter-spacing: 4px;
}

.about {
    background: rgba(26, 26, 26, 0.5);
}

.about-para {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.principles {
    background: rgba(13, 13, 13, 0.7);
}

.principles-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.principle-box {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 3px solid #ff00ff;
    border-radius: 20px;
    padding: 45px;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
}

.principle-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.principle-box h3 {
    font-family: 'Russo One', sans-serif;
    color: #00ffff;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.principle-box p {
    font-size: 17px;
    line-height: 1.7;
}

.gaming {
    background: rgba(26, 26, 26, 0.5);
}

.gaming-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
}

.game-frame {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #000;
    border: 4px solid #00ffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.game-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.gaming-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    font-size: 17px;
}

.gaming-note a {
    color: #ff00ff;
    text-decoration: underline;
}

.benefits {
    background: rgba(13, 13, 13, 0.7);
}

.benefits-stack {
    margin-top: 50px;
}

.benefit-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(26, 26, 26, 0.7);
    border-left: 6px solid #ff00ff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-row:hover {
    background: rgba(45, 45, 45, 0.8);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

.benefit-num {
    font-family: 'Russo One', sans-serif;
    font-size: 50px;
    color: #00ffff;
    min-width: 60px;
    text-shadow: 0 0 20px #00ffff;
}

.benefit-text h3 {
    font-family: 'Russo One', sans-serif;
    color: #00ffff;
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.7;
}

.responsibility {
    background: rgba(26, 26, 26, 0.5);
}

.responsibility-content p {
    text-align: center;
    font-size: 19px;
    max-width: 1000px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.bottom-bar {
    background: rgba(13, 13, 13, 0.98);
    border-top: 4px solid #00ffff;
    padding: 70px 40px 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-slogan {
    font-style: italic;
    color: #e0e0e0;
}

.footer-col h4 {
    font-family: 'Russo One', sans-serif;
    color: #ff00ff;
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: 2px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.footer-base {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    color: #e0e0e0;
    font-size: 15px;
}

.play-content .play-header {
    background: rgba(26, 26, 26, 0.5);
    padding: 70px 40px;
}

.play-title {
    font-family: 'Russo One', sans-serif;
    font-size: 60px;
    color: #ff00ff;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 30px #ff00ff;
    letter-spacing: 4px;
}

.play-subtitle {
    text-align: center;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.play-area {
    background: #000;
    padding: 0;
}

.play-frame {
    width: 100%;
    height: 900px;
    position: relative;
}

.play-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-specs {
    background: rgba(13, 13, 13, 0.7);
    padding: 100px 40px;
}

.specs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.spec-card {
    background: rgba(26, 26, 26, 0.8);
    border: 3px solid rgba(0, 255, 255, 0.4);
    border-radius: 15px;
    padding: 40px;
}

.spec-card h3 {
    font-family: 'Russo One', sans-serif;
    color: #00ffff;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.spec-card p {
    font-size: 17px;
    line-height: 1.7;
}

.legal-content {
    background: rgba(13, 13, 13, 0.95);
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}

.legal-heading {
    font-family: 'Russo One', sans-serif;
    font-size: 65px;
    color: #ff00ff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 40px #ff00ff;
    letter-spacing: 5px;
}

.legal-updated {
    text-align: center;
    font-style: italic;
    color: #00ffff;
    margin-bottom: 60px;
    font-size: 17px;
}

.legal-article {
    margin-bottom: 60px;
}

.legal-article h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    color: #00ffff;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.legal-article p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-article ul {
    margin: 25px 0 25px 40px;
}

.legal-article li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.alert-box {
    background: rgba(255, 0, 255, 0.1);
    border: 4px solid #ff00ff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        display: none;
        border-top: 4px solid #ff00ff;
    }

    .site-nav.active {
        display: flex;
    }

    .main-title {
        font-size: 50px;
    }

    .main-desc {
        font-size: 22px;
    }

    .title-main {
        font-size: 38px;
    }

    .play-frame {
        height: 600px;
    }

    .benefit-row {
        flex-direction: column;
        gap: 20px;
    }

    .verify-actions {
        flex-direction: column;
    }
}
