* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0e17;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(10, 14, 23, 0.9);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 58, 90, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.logo i {
    color: #4d7cfe;
    font-size: 28px;
}

.logo h1 {
    font-size: 24px;
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.logo-link h1 {
    font-size: 24px;
    margin: 0;
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.logo-link img {
    display: block;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.nav-links {
    display: flex;
    gap: 60px;
}

.nav-links a {
    color: #b0b8d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-links a:hover {
    color: #6a9eff;
}

.cta-button {
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 16px;
    margin-right: 30px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 124, 254, 0.4);
}

/* Hero section with full-screen map */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.9) 0%, rgba(10, 14, 23, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #a0b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 22px;
    color: #b0b8d0;
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.interactive-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.world-map {
    width: 100%;
    height: 100%;
    background-image: url('../static/zzz.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    opacity: 0.9;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(77, 124, 254, 0), rgba(77, 124, 254, 0.7), rgba(77, 124, 254, 0));
    transform-origin: left center;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.game-icon {
    position: absolute;
    max-width: 50px;
    max-height: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 10;
    border-radius: 10px 10px 10px 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(77, 124, 254, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
}

.game-icon i {
    font-size: 32px;
    color: white;
}

.game-icon .game-name {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(10, 14, 23, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    border: 1px solid rgba(42, 58, 90, 0.5);
}

.game-icon:hover .game-name {
    opacity: 1;
    visibility: visible;
}

.server-status {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00ff00;
    box-shadow: 0 0 8px #00ff00;
}

.icon-1 {
    top: 45%;
    left: 31%;
}

.icon-2 {
    top: 14%;
    left: 57%;
}

.icon-3 {
    top: 38%;
    left: 55%;
}

.icon-4 {
    top: 75%;
    left: 42%;
}

.icon-5 {
    top: 32%;
    left: 80%;
}

.icon-6 {
    top: 81%;
    left: 21%;
}

.icon-7 {
    top: 50%;
    left: 40%;
}

.icon-8 {
    top: 59%;
    left: 62%;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #b0b8d0;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator i {
    font-size: 24px;
}

.features {
    padding: 100px 0;
    background-color: #0f1525;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #1a1f2e;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #2a3a5a;
    text-align: center;
}


.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #b0b8d0;
    font-size: 16px;
}

/* Pricing section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #1a1f2e;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #2a3a5a;
    position: relative;
}

.pricing-card.popular {
    border-color: #4d7cfe;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price span {
    font-size: 18px;
    color: #b0b8d0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #b0b8d0;
    border-bottom: 1px solid #2a3a5a;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #4d7cfe;
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: #0a0e17;
    padding: 60px 0 30px;
    border-top: 1px solid #2a3a5a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p, .footer-column a {
    color: #b0b8d0;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #6a9eff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a1f2e;
    color: #b0b8d0;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #4d7cfe;
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: #8a94b0;
    font-size: 14px;
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .game-icon {
        width: 60px;
        height: 60px;
    }
    
    .game-icon i {
        font-size: 28px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .icon-6 {
        top: 67%;
        left:15%;
    }
}

@media (max-width: 768px) {
    .header-content {
        gap: 20px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .game-icon {
        width: 50px;
        height: 50px;
    }
    
    .game-icon i {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 30px;
    }
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-form-card {
        padding: 30px 25px;
    }
    
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-us {
        padding: 70px 0;
    }
    .header-title {
        display: none;
    }
    .header-button {
        display: none;
        visibility: none;
    }

}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .game-icon {
        width: 45px;
        height: 45px;
    }
    
    .game-icon i {
        font-size: 20px;
    }
    
    .features, .pricing {
        padding: 80px 0;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    .header-button {
        display: none;
        visibility: none;
    }
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    border-bottom: 1px solid #2a3a5a;
}

.section-subtitle {
    text-align: center;
    color: #b0b8d0;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #0f1525 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(77, 124, 254, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    border-radius: 20px 20px 0 0;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(77, 124, 254, 0.2), rgba(106, 158, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(77, 124, 254, 0.3);
}

.form-icon i {
    font-size: 36px;
    color: #6a9eff;
}

.contact-form-header h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #a0b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form-header p {
    color: #8a94b0;
    font-size: 16px;
}
.elegant-input {
    margin-bottom: 30px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a9eff;
    font-size: 18px;
    z-index: 2;
    transition: all 0.3s;
}

.elegant-input-field {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(10, 14, 23, 0.6);
    border: 2px solid rgba(42, 58, 90, 0.5);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.elegant-input-field::placeholder {
    color: #6a7b9c;
    font-weight: normal;
}

.elegant-input-field:focus {
    outline: none;
    border-color: #4d7cfe;
    background: rgba(10, 14, 23, 0.8);
    box-shadow: 0 0 0 3px rgba(77, 124, 254, 0.2);
}

.elegant-input-field:focus + .input-border {
    transform: scaleX(1);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    border-radius: 0 0 12px 12px;
    transform: scaleX(0);
    transition: transform 0.3s;
    z-index: 2;
}

.input-hint {
    color: #6a7b9c;
    font-size: 13px;
    margin-top: 8px;
    padding-left: 10px;
    font-style: italic;
}

/* Submit Button */
.submit-btn-glow {
    width: 100%;
    padding: 20px;
    background: linear-gradient(90deg, #4d7cfe, #6a9eff);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.submit-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(77, 124, 254, 0.4);
}

.submit-btn-glow:active {
    transform: translateY(0);
}

.btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.submit-btn-glow:hover .btn-glow {
    transform: translateX(100%);
}

.btn-icon {
    transition: transform 0.3s;
}

.submit-btn-glow:hover .btn-icon {
    transform: translateX(5px);
}

/* Form Footer */
.form-footer {
    margin-top: 25px;
    text-align: center;
    color: #6a7b9c;
    font-size: 14px;
}

.form-footer i {
    color: #4d7cfe;
    margin-right: 8px;
}

/* Contacts Info Section */
.contacts-info {
    padding: 100px 0;
    background: #0f1525;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-method {
    background: #1a1f2e;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(42, 58, 90, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-method:hover {
    transform: translateY(-10px);
    border-color: rgba(77, 124, 254, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--icon-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-method:hover::before {
    opacity: 1;
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.email-icon {
    background: linear-gradient(135deg, #4d7cfe, #6a9eff);
    box-shadow: 0 10px 20px rgba(77, 124, 254, 0.3);
}

.telegram-icon {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    box-shadow: 0 10px 20px rgba(42, 171, 238, 0.3);
}

.discord-icon {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.support-icon {
    background: linear-gradient(135deg, #FF7B00, #FF5500);
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
}

.contact-method h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-method > p {
    color: #b0b8d0;
    font-size: 15px;
    margin-bottom: 20px;
    min-height: 40px;
}

.contact-link {
    display: block;
    color: #6a9eff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin: 15px 0;
    padding: 10px;
    background: rgba(77, 124, 254, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-link:hover {
    background: rgba(77, 124, 254, 0.2);
    color: #8ab4ff;
}

.contact-phone {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    padding: 10px;
    background: rgba(255, 123, 0, 0.1);
    border-radius: 8px;
}

.contact-note {
    color: #8a94b0;
    font-size: 14px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(42, 58, 90, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-note i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }
    .nav-links {
        display: none;
    }
    
    .contact-form-card {
        padding: 30px 25px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    .about-us {
        padding: 70px 0;
    }

}


.faq-modal {
    display: none;
}

.faq-modal[open] {
    display: block;
}
.about-us {
    padding: 40px 0;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #2a3a5a;
}
.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4d7cfe, transparent);
}
.about-us .section-subtitle {
    text-align: center;
    color: #b0b8d0;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}
.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(77, 124, 254, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}
.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(77, 124, 254, 0.5);
    background: rgba(77, 124, 254, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.about-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
}
.about-card p {
    color: #b0b8d0;
    line-height: 1.6;
    margin: 0;
}
