@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Orbitron', sans-serif;
    background: #0d0221;
    color: #e0d0ff;
    line-height: 1.7;
    min-height: 100vh;
}

.top-notice {
    background: linear-gradient(90deg, #6a0572, #ab47bc, #6a0572);
    padding: 0.9rem;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 15px rgba(171, 71, 188, 0.5);
}

.navigation-bar {
    background: rgba(13, 2, 33, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ab47bc;
    box-shadow: 0 4px 25px rgba(171, 71, 188, 0.4);
}

.nav-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-symbol {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ab47bc, #d81b60);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(171, 71, 188, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(171, 71, 188, 0.6); }
    50% { box-shadow: 0 0 30px rgba(171, 71, 188, 0.9); }
}

.brand-name {
    font-size: 2.1rem;
    font-weight: 900;
    color: #ce93d8;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: #e0d0ff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    border-color: #ab47bc;
    background: rgba(171, 71, 188, 0.2);
    color: #ce93d8;
    transform: translateY(-3px);
}

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

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #ce93d8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(106, 5, 114, 0.8), rgba(171, 71, 188, 0.8)), 
                radial-gradient(circle at 30% 50%, rgba(216, 27, 96, 0.3), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(106, 5, 114, 0.3), transparent 50%);
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: inset 0 0 50px rgba(171, 71, 188, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(171, 71, 188, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #f3e5f5;
    text-shadow: 0 0 20px rgba(171, 71, 188, 0.8);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-banner p {
    font-size: 1.5rem;
    color: #e1bee7;
    font-weight: 500;
    letter-spacing: 2px;
}

.main-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

.content-block {
    background: linear-gradient(135deg, rgba(106, 5, 114, 0.3), rgba(171, 71, 188, 0.3));
    border: 2px solid rgba(171, 71, 188, 0.5);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(171, 71, 188, 0.3);
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ab47bc, #d81b60);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.content-block h2 {
    font-size: 2.5rem;
    color: #ce93d8;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.content-block p {
    font-size: 1.05rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}

.notice {
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.2), rgba(216, 27, 96, 0.2));
    border-left: 5px solid #ab47bc;
    padding: 1.8rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(171, 71, 188, 0.3);
}

.notice strong {
    color: #f48fb1;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.game-display {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.8), rgba(106, 5, 114, 0.8));
    border: 4px solid #ab47bc;
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 0 50px rgba(171, 71, 188, 0.6);
    position: relative;
}

.game-display::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ab47bc, #d81b60, #ab47bc);
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.game-display h2 {
    text-align: center;
    color: #ce93d8;
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-box {
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.2), rgba(216, 27, 96, 0.2));
    border: 2px solid rgba(171, 71, 188, 0.4);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(171, 71, 188, 0.3), transparent);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #ab47bc;
    box-shadow: 0 20px 50px rgba(171, 71, 188, 0.5);
}

.feature-box h3 {
    color: #f48fb1;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.feature-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.site-footer {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(106, 5, 114, 0.95));
    padding: 3.5rem 2rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid #ab47bc;
}

.footer-sections {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.footer-section h3 {
    color: #ce93d8;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-section p {
    line-height: 1.8;
    font-size: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list a {
    color: #e1bee7;
    text-decoration: none;
    display: block;
    margin: 0.8rem 0;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: #ce93d8;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(171, 71, 188, 0.3);
    color: #ce93d8;
    font-size: 0.95rem;
    max-width: 1350px;
    margin: 0 auto;
}

.verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.verification-modal.active {
    display: flex;
}

.modal-container {
    background: linear-gradient(135deg, #6a0572, #ab47bc);
    border: 4px solid #ce93d8;
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 60px rgba(171, 71, 188, 0.8);
    position: relative;
}

.modal-container::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #ab47bc, #d81b60, #ab47bc, #d81b60);
    border-radius: 25px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.modal-container h2 {
    color: #f3e5f5;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-container p {
    font-size: 1.2rem;
    margin: 1rem 0;
    line-height: 1.7;
    color: #e1bee7;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.modal-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.modal-btn-accept {
    background: linear-gradient(135deg, #ab47bc, #d81b60);
    color: white;
    box-shadow: 0 5px 20px rgba(171, 71, 188, 0.5);
}

.modal-btn-accept:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(171, 71, 188, 0.8);
}

.modal-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #e0d0ff;
}

.modal-btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(13, 2, 33, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        border-left: 3px solid #ab47bc;
        z-index: 999;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem;
        margin: 0.5rem 0;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner p {
        font-size: 1.2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .modal-container {
        padding: 2rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}
