


.gaming-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.gaming-header.scrolled {
    background: rgba(5, 8, 16, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.12);
    box-shadow: 0 4px 40px rgba(0, 217, 255, 0.08);
}

.header-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary, #00d9ff) 30%, 
        var(--accent, #8b5cf6) 70%, 
        transparent 100%
    );
    opacity: 0.7;
}

.header-container {
    max-width: var(--container, 1140px);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}


.header-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    text-decoration: none;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25), transparent 70%);
    filter: blur(25px);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.header-logo:hover .logo-glow {
    opacity: 1;
}

.logo-img {
    position: relative;
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.3));
    transition: all 0.3s ease;
}

.header-logo:hover .logo-img {
    filter: drop-shadow(0 0 35px rgba(0, 217, 255, 0.5));
    transform: scale(1.02);
}


.header-links {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .header-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(240, 244, 255, 0.7);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary, #00d9ff), var(--accent, #8b5cf6));
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--primary, #00d9ff);
    background: rgba(0, 217, 255, 0.08);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link.is-active,
.mobile-nav-link.is-active {
    color: var(--primary, #00d9ff);
    background: rgba(0, 217, 255, 0.12);
}

.nav-link.is-active::before {
    width: 60%;
}

.nav-link i {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}


.header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}


.store-btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #050810;
    background: linear-gradient(135deg, var(--primary, #00d9ff), #5eeaff);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.35),
        0 4px 20px rgba(0, 217, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    box-shadow: 
        0 0 45px rgba(0, 217, 255, 0.5),
        0 8px 30px rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

.store-btn i {
    width: 18px;
    height: 18px;
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.store-btn:hover .btn-shine {
    transform: translateX(100%);
}


.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.05);
    color: rgba(240, 244, 255, 0.8);
    text-decoration: none;
    transition: all 0.25s ease;
}

.icon-btn:hover {
    background: rgba(0, 217, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.4);
    color: var(--primary, #00d9ff);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.icon-btn.is-active {
    background: rgba(0, 217, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.5);
    color: var(--primary, #00d9ff);
}

.icon-btn i {
    width: 18px;
    height: 18px;
}


.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.08);
    color: var(--primary, #00d9ff);
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--primary, #00d9ff);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.2);
}

.mobile-menu-btn i {
    width: 26px;
    height: 26px;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}


.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 8, 16, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.35s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    color: rgba(240, 244, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--primary, #00d9ff);
    background: rgba(0, 217, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.15);
}

.mobile-nav-link.is-active {
    color: var(--primary, #00d9ff);
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.2);
}

.mobile-nav-link i {
    width: 22px;
    height: 22px;
    opacity: 0.8;
}

.mobile-menu-actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    margin-top: 8px;
}

.mobile-store-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #050810;
    background: linear-gradient(135deg, var(--primary, #00d9ff), #5eeaff);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.3);
    text-decoration: none;
}

.mobile-store-btn i {
    width: 22px;
    height: 22px;
}

.mobile-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.08);
    color: var(--primary, #00d9ff);
    text-decoration: none;
}

.mobile-icon-btn i {
    width: 22px;
    height: 22px;
}


.gaming-footer {
    position: relative;
    background: transparent;
    overflow: hidden;
}

.footer-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 217, 255, 0.04), transparent 50%);
    pointer-events: none;
}

.footer-radial-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0, 217, 255, 0.06), transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 80%, rgba(139, 92, 246, 0.04), transparent 50%);
    pointer-events: none;
}

.footer-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 217, 255, 0.5) 30%, 
        rgba(139, 92, 246, 0.4) 70%, 
        transparent 100%
    );
}


.features-strip {
    position: relative;
    border-bottom: 1px solid rgba(0, 217, 255, 0.08);
    background: rgba(10, 14, 24, 0.5);
}

.features-strip .container {
    padding: 24px 20px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .features-grid {
        gap: 60px;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(123, 138, 184, 0.9);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 217, 255, 0.08);
    color: var(--primary, #00d9ff);
    border: 1px solid rgba(0, 217, 255, 0.12);
}

.feature-icon i {
    width: 18px;
    height: 18px;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
}


.footer-main {
    position: relative;
    padding: 60px 0 40px;
}

.gaming-footer .footer-main .container {
    padding: 0 20px;
}

.gaming-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .gaming-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gaming-footer .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 32px;
    }
}


.footer-brand {
    
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.5));
}

.footer-description {
    color: rgba(123, 138, 184, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}


.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.12);
    background: rgba(0, 217, 255, 0.04);
    color: rgba(200, 212, 240, 0.7);
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
    transform: translateY(-3px);
}

.social-btn.telegram:hover {
    color: #0088cc;
    border-color: rgba(0, 136, 204, 0.4);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.2);
}

.social-btn.instagram:hover {
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.4);
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.2);
}

.social-btn.discord:hover {
    color: #5865F2;
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}

.social-btn i {
    width: 18px;
    height: 18px;
}


.footer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text, #f0f4ff);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.title-accent {
    width: 4px;
    height: 22px;
    background: linear-gradient(to bottom, var(--primary, #00d9ff), var(--accent, #8b5cf6));
    border-radius: 4px;
}


.gaming-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gaming-footer .footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(123, 138, 184, 0.9);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.gaming-footer .footer-links a:hover {
    color: var(--primary, #00d9ff);
    transform: translateX(-4px);
}

.gaming-footer .link-line {
    display: inline-block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary, #00d9ff), transparent);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.gaming-footer .footer-links a:hover .link-line {
    width: 16px;
}


.gaming-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact a,
.contact-address {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(123, 138, 184, 0.9);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-contact a:hover {
    color: var(--primary, #00d9ff);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 217, 255, 0.08);
    color: var(--primary, #00d9ff);
    flex-shrink: 0;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.contact-icon i {
    width: 18px;
    height: 18px;
}


.trust-badges {
    position: relative;
    border-top: 1px solid rgba(0, 217, 255, 0.08);
}

.trust-badges .container {
    padding: 32px 20px 24px;
}

.gaming-footer .trust-seals {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.gaming-footer .trust-seals a,
.gaming-footer .trust-seals .trust-seal-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(15, 20, 35, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.08);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.gaming-footer .trust-seals a:hover {
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}

.gaming-footer .trust-seals img {
    max-height: 90px;
    width: auto;
}

.gaming-footer #zarinpal img {
    width: 65px;
}


.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(0, 217, 255, 0.08);
    background: rgba(5, 8, 16, 0.8);
}

.footer-bottom .container {
    padding: 20px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.copyright {
    color: rgba(123, 138, 184, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

@media (min-width: 768px) {
    .copyright {
        text-align: right;
    }
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal-links a {
    color: rgba(123, 138, 184, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--primary, #00d9ff);
}


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #050810;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.4), rgba(139, 92, 246, 0.3));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.6), rgba(139, 92, 246, 0.5));
}


::selection {
    background: rgba(0, 217, 255, 0.3);
    color: #f0f4ff;
}


.site-main {
    padding-top: 80px;
}

body.page-home .site-main {
    padding-top: 0;
}

body.page-home .hero {
    padding-top: 0;
}
