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

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

.verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #ff00ff15, #0000ff15),
                linear-gradient(135deg, #1a0033 0%, #0d001a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.verification-popup.show {
    opacity: 1;
    visibility: visible;
}

.verification-box {
    background: linear-gradient(145deg, #2a0052 0%, #1a0033 100%);
    border: 3px solid #ff00ff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5), 0 0 80px rgba(0, 255, 255, 0.3);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.5), 0 0 80px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 0, 255, 0.8), 0 0 100px rgba(0, 255, 255, 0.5);
    }
}

.lock-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a0033;
    animation: rotateBadge 3s linear infinite;
}

@keyframes rotateBadge {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.verification-heading {
    font-size: 32px;
    margin-bottom: 15px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.verification-info {
    font-size: 16px;
    margin-bottom: 30px;
    color: #fff;
}

.verification-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.action-yes, .action-no {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.action-yes {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.action-yes:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

.action-no {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.action-no:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}

.verification-notice {
    font-size: 12px;
    color: #aaa;
}

.site-wrapper {
    opacity: 1;
    /* visibility: hidden; */
    transition: opacity 0.5s, visibility 0.5s;
}

.site-wrapper.show {
    opacity: 1;
    visibility: visible;
}

.site-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.top-bar {
    background: linear-gradient(135deg, #2a0052 0%, #1a0033 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff00ff;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    color: #ffff00;
    filter: drop-shadow(0 0 10px rgba(255, 255, 0, 0.8));
    animation: spinIcon 4s linear infinite;
}

@keyframes spinIcon {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(360deg); }
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    transition: all 0.3s;
}

.brand-name:hover {
    color: #ff00ff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.menu-items {
    display: flex;
    gap: 30px;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: width 0.3s;
}

.menu-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.menu-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    border-radius: 2px;
    transition: all 0.3s;
}

.banner-hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #ff00ff15, transparent),
                linear-gradient(135deg, #1a0033 0%, #2d0052 100%);
    overflow: hidden;
}

.sparkles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 60% 70%, #ff00ff, transparent),
        radial-gradient(1px 1px at 50% 50%, #00ffff, transparent),
        radial-gradient(1px 1px at 80% 10%, #ffff00, transparent),
        radial-gradient(2px 2px at 90% 60%, #00ff00, transparent),
        radial-gradient(1px 1px at 30% 80%, #ff00ff, transparent);
    background-size: 200% 200%;
    animation: sparkleMove 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes sparkleMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.banner-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-pre {
    font-size: 20px;
    color: #ffff00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
    letter-spacing: 4px;
    animation: flickerText 3s infinite;
}

@keyframes flickerText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.banner-title {
    font-family: 'Pirata One', cursive;
    font-size: 60px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.banner-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin: 30px 0 40px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff00ff, #ff0080);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(255, 0, 255, 0.9);
    }
}

.action-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff0080, #ff00ff);
}

.action-arrow {
    transition: transform 0.3s;
}

.action-btn:hover .action-arrow {
    transform: translateX(5px);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0d001a 0%, #1a0033 100%);
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #00ffff;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
    animation: borderGlow 3s infinite;
}

@keyframes borderGlow {
    0%, 100% {
        border-color: #00ffff;
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
    }
    50% {
        border-color: #ff00ff;
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
    }
}

.visual-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.visual-wrapper:hover img {
    transform: scale(1.05);
}

.info-details {
    padding: 20px;
}

.block-heading {
    font-size: 42px;
    color: #ff00ff;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.block-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
}

.benefits-area {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #2d0052, #1a0033);
}

.benefits-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-box {
    background: linear-gradient(145deg, #2a0052, #1a0033);
    border: 2px solid #ff00ff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}

.benefit-symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0033;
    animation: rotateSymbol 6s linear infinite;
}

@keyframes rotateSymbol {
    0%, 100% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.benefit-label {
    font-size: 22px;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.showcase-screen {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0d001a 0%, #2a0052 100%);
}

.screen-holder {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #ffff00;
    box-shadow: 0 0 60px rgba(255, 255, 0, 0.6);
}

.preview-img {
    width: 100%;
    height: auto;
    display: block;
}

.launch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.screen-holder:hover .launch-overlay {
    opacity: 1;
}

.launch-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ffff00, #ff8800);
    border: none;
    border-radius: 50px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(255, 255, 0, 0.8);
    transition: all 0.3s;
}

.launch-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 60px rgba(255, 255, 0, 1);
}

.launch-icon {
    color: #000;
}

.story-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0033 0%, #0d001a 100%);
}

.story-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-panel {
    background: linear-gradient(145deg, #2a0052, #1a0033);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.story-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.panel-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
    background-size: 200% 200%;
    animation: accentMove 3s linear infinite;
}

@keyframes accentMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.panel-heading {
    font-size: 26px;
    color: #ff00ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

.panel-content {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.contact-email {
    color: #00ffff;
    text-decoration: underline;
    transition: color 0.3s;
}

.contact-email:hover {
    color: #ff00ff;
}

.legal-notice {
    padding: 80px 20px;
    background: radial-gradient(circle at bottom, #2d0052, #1a0033);
}

.legal-heading {
    font-size: 42px;
    text-align: center;
    color: #ffff00;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
}

.legal-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.legal-block {
    background: linear-gradient(145deg, #2a0052, #1a0033);
    border: 2px solid #ffff00;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
    transition: all 0.3s;
}

.legal-block:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 0, 0.6);
}

.legal-marker {
    font-size: 48px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.legal-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.message-form {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0d001a 0%, #1a0033 100%);
}

.inquiry-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2a0052, #1a0033);
    border: 3px solid #ff00ff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

.inquiry-heading {
    font-size: 36px;
    color: #00ffff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inquiry-field.span-full {
    grid-column: 1 / -1;
}

.inquiry-field label {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.inquiry-field input,
.inquiry-field textarea {
    padding: 15px;
    border: 2px solid #ff00ff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.inquiry-submit {
    grid-column: 1 / -1;
    padding: 18px;
    background: linear-gradient(135deg, #00ff00, #00cc00);
    border: none;
    border-radius: 50px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    margin-top: 10px;
}

.inquiry-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.8);
}

.trust-markers {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 100%);
}

.markers-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    transition: transform 0.3s;
    filter: grayscale(0.3);
}

.trust-badge:hover {
    transform: scale(1.15);
    filter: grayscale(0);
}

.trust-badge img {
    height: 60px;
    width: auto;
}

.bottom-footer {
    background: linear-gradient(135deg, #0d001a 0%, #1a0033 100%);
    padding: 60px 20px 30px;
    position: relative;
    border-top: 3px solid #ff00ff;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 200% 200%;
    animation: glowMove 3s linear infinite;
}

@keyframes glowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-info {
    font-size: 15px;
    line-height: 1.7;
    color: #bbb;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.subscription {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscription-heading {
    font-size: 20px;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.subscription-box {
    display: flex;
    gap: 10px;
}

.subscription-field {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ff00ff;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.subscription-field:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.subscription-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff00ff, #ff0080);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.subscription-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-nav a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.footer-credits {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    color: #999;
    font-size: 14px;
}

@media (max-width: 992px) {
    .info-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .story-panels {
        grid-template-columns: 1fr;
    }

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

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

    .banner-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .menu-items {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #1a0033, #2a0052);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.3s;
        border-top: 2px solid #ff00ff;
    }

    .menu-items.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

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

    .verification-box {
        padding: 40px 30px;
    }

    .verification-actions {
        flex-direction: column;
    }
}
  .content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #6c1dac;
}

.content-block p,
.content-block ul {
    color: rgba(191, 221, 235, 0.7);
}

.play-ground-area {
    position: relative;
    padding: 2rem;
    background: black;
}

.play-game {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
}