/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --dark-bg: #ffffff;
    --darker-bg: #f9fafb;
    --card-bg: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-dark: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    --promo-gradient: linear-gradient(120deg, #0f1f7a 0%, #1d4ed8 45%, #1e3a8a 100%);
    --hero-bottom-gradient: linear-gradient(180deg, rgba(6, 12, 42, 0) 0%, rgba(3, 6, 24, 0.85) 80%);
    --shadow-primary: 0 10px 30px rgba(37, 99, 235, 0.15);
    --shadow-secondary: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --safe-area-top: env(safe-area-inset-top, 0px);
    --header-base-offset: 56px;
    --header-offset: calc(var(--header-base-offset) + var(--safe-area-top));
    --header-total-height: calc(160px + var(--safe-area-top));
    --hero-gap: 64px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

img {
    max-width: 100%;
    height: auto;
}

@supports (content-visibility: auto) {
    [data-async-section] {
        content-visibility: auto;
        contain-intrinsic-size: 600px;
    }
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2'),
         url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff') format('woff');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2'),
         url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff') format('woff');
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    direction: rtl;
    padding-top: var(--header-total-height);
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.5rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.35rem, 2.5vw, 1.8rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h6 { font-size: 1rem; }

html {
    scroll-padding-top: var(--header-total-height);
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@supports (overflow-x: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

body.has-promo-bar {
    --header-offset: calc(64px + var(--safe-area-top));
    --header-total-height: calc(170px + var(--safe-area-top));
}

body.no-promo-bar {
    --header-offset: calc(var(--header-base-offset) + var(--safe-area-top));
    --header-total-height: calc(140px + var(--safe-area-top));
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    body.has-promo-bar {
        --header-offset: calc(88px + var(--safe-area-top));
        --header-total-height: calc(188px + var(--safe-area-top));
    }

    body.no-promo-bar {
        --header-offset: calc(60px + var(--safe-area-top));
        --header-total-height: calc(154px + var(--safe-area-top));
    }
}

/* ===== Global Utility Buttons & Badges ===== */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
}
.gs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(29, 78, 216, 0.35);
}
.gs-btn:active {
    transform: translateY(0);
}
.gs-btn--light {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}
.gs-btn--outline {
    background: transparent;
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.4);
    box-shadow: none;
}
.gs-btn--outline:hover {
    background: rgba(37, 99, 235, 0.08);
}

.gs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

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

/* ===== PROFESSIONAL BRAND LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

/* ===== GAMING HERO VISUAL ===== */
.hero-gaming-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    direction: rtl;
}

.gaming-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
}


.game-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    direction: rtl;
}

.screenshot {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.screenshot:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-fast);
}

.screenshot:hover img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-primary);
    padding: 1rem;
    transform: translateY(100%);
    transition: all var(--transition-fast);
}

.screenshot:hover .game-overlay {
    transform: translateY(0);
}

.game-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.game-overlay p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}


/* ===== GAME CARDS ===== */
.game-card {
    position: relative;
    overflow: hidden;
}

.game-image {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-fast);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-primary);
    padding: 1rem;
    transform: translateY(100%);
    transition: all var(--transition-fast);
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.players-online {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.game-card.cs2 .service-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.game-card.mu .service-icon {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.game-card.tf2 .service-icon {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.game-card.minecraft .service-icon {
    background: linear-gradient(135deg, #8bc34a, #aed581);
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
        font-size: 3rem;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .gaming-showcase {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo img {
        height: 80px;
    }
    
    .gaming-showcase {
        padding: 1.5rem;
    }
    
    .game-screenshots {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 20px;
    }
    
    .hero-logo img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .gaming-showcase {
        padding: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .game-screenshots {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="loadingGrid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%232563eb" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23loadingGrid)"/></svg>');
    animation: loadingGridMove 20s linear infinite;
    z-index: -1;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-secondary);
    border: 1px solid var(--border-color);
    max-width: 500px;
    width: 90%;
}

.loading-logo {
    margin-bottom: 3rem;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo .logo-animated {
    height: 80px;
    transition: all var(--transition-fast);
}

.loading-logo .logo-animated:hover {
    transform: scale(1.05);
}

.loading-bar {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loadingShine 2s infinite;
}

.loading-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.loading-percentage {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.loading-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease 1s forwards;
    flex-wrap: wrap;
    max-width: 400px;
}

.loading-stat {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.loading-stat .stat-number {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

@keyframes loadingGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

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

@keyframes loadingShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
    100% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

/* ===== TOP PROMO BAR ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: var(--safe-area-top);
    contain: layout paint;
}

.top-promo-bar {
    position: relative;
    width: 100%;
    background: var(--promo-gradient);
    color: #f8fafc;
    padding: 0.45rem 0;
    z-index: 1200;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.45);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    min-height: clamp(56px, 8vh, 92px);
}

.promo-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem 1.5rem;
}

.promo-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: inherit;
}

.promo-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fef9c3;
}

.promo-offer i {
    color: #facc15;
    animation: pulse 2s infinite;
}

.promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.22);
    border: 1px solid rgba(191, 219, 254, 0.4);
    font-weight: 600;
    color: #e0f2fe;
}

.promo-timer span {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
}

.promo-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.promo-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.28rem 0.35rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(15, 23, 42, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    background: rgba(13, 110, 253, 0.16);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.promo-link:hover,
.promo-link:focus-visible {
    color: #f8fafc;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.28);
    transform: translateY(-1px);
}

.promo-link i {
    font-size: 0.9rem;
    color: inherit;
}

.promo-link.promo-link-login,
.promo-link.promo-link-register,
.promo-link.promo-link-manage {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.32), rgba(37, 99, 235, 0.48));
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.32);
}

.promo-link.promo-link-login:hover,
.promo-link.promo-link-login:focus-visible,
.promo-link.promo-link-register:hover,
.promo-link.promo-link-register:focus-visible,
.promo-link.promo-link-manage:hover,
.promo-link.promo-link-manage:focus-visible {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.4), rgba(129, 140, 248, 0.65));
    color: #f8fafc;
}

.promo-link-support {
    position: relative;
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.26), rgba(37, 99, 235, 0.18));
    border-color: rgba(191, 219, 254, 0.42);
    box-shadow: 0 10px 22px rgba(56, 189, 248, 0.25);
}

.promo-link-visitors {
    background: linear-gradient(120deg, rgba(16, 185, 129, 0.24), rgba(34, 197, 94, 0.18));
    border-color: rgba(134, 239, 172, 0.45);
    box-shadow: 0 12px 26px rgba(16, 185, 129, 0.25);
}

.promo-link-visitors strong {
    font-size: 1rem;
    color: #f0fdf4;
}

.promo-link-support .promo-badge {
    margin-right: 0.35rem;
}

.promo-link-support.has-waiting,
.promo-link-support.has-waiting:hover {
    background: linear-gradient(120deg, rgba(248, 113, 113, 0.38), rgba(248, 113, 113, 0.22));
    color: #fee2e2;
    border-color: rgba(248, 113, 113, 0.5);
    box-shadow: 0 12px 26px rgba(248, 113, 113, 0.35);
}

.promo-link-support--ping {
    animation: promo-link-ping 1.2s ease-in-out 3;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #f97316;
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.promo-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.promo-account {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-weight: 600;
    color: #f8fafc;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.promo-account .promo-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.18);
    color: #f8fafc;
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: all var(--transition-fast);
}

.promo-account .promo-cart:hover,
.promo-account .promo-cart:focus-visible {
    background: rgba(14, 165, 233, 0.32);
    border-color: rgba(125, 211, 252, 0.6);
    color: #0f172a;
}

.promo-account .promo-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #22d3ee;
    color: #0f172a;
    font-size: 0.75rem;
    padding: 0 0.35rem;
    font-weight: 700;
}

.promo-account .promo-vault {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fde047, #f97316);
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(253, 224, 71, 0.35);
    border: 1px solid rgba(15, 23, 42, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    font-size: 1rem;
}

.promo-account .promo-vault i {
    color: #0f172a;
}

.promo-account .promo-vault:hover,
.promo-account .promo-vault:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(251, 191, 36, 0.45);
}

.promo-account .promo-user {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: #f8fafc;
    font-weight: 700;
}

.promo-label {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-btn:hover,
.contact-btn:focus-visible {
    background: rgba(99, 102, 241, 0.28);
    border-color: rgba(165, 180, 252, 0.4);
    transform: translateY(-1px);
}

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

/* ===== FIXED BIG LOGO CENTERED NAVIGATION ===== */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0 0.15rem;
    margin-top: -1px;
    border-top: 1px solid rgba(37, 99, 235, 0.15);
    min-height: 96px;
}

/* Mobile drawer */
.mobile-nav-shell {
    position: fixed;
    inset: 0;
    z-index: 11000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-shell__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100vh;
    background: linear-gradient(180deg, #010313 0%, #08112c 55%, #020617 100%);
    border-radius: 0;
    box-shadow: -28px 0 85px rgba(2, 6, 23, 0.8);
    border-left: 1px solid rgba(59, 130, 246, 0.28);
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--safe-area-top) + 0.5rem);
    overflow: hidden;
}

.mobile-nav-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% -10%, rgba(59, 130, 246, 0.35), transparent 45%),
        radial-gradient(circle at 80% 25%, rgba(147, 197, 253, 0.22), transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.mobile-nav-panel__inner {
    position: relative;
    z-index: 1;
    padding: clamp(1.4rem, 6vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #f8fafc;
    height: 100%;
}

.mobile-nav-shell__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.2rem, 5vw, 1.8rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1rem;
}

.mobile-nav-shell__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.mobile-nav-shell__brand p {
    margin: 0;
    font-weight: 700;
    color: #f8fafc;
}

.mobile-nav-shell__brand span {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.8);
}

.mobile-nav-shell__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    flex: 1;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 1.5rem);
    background: radial-gradient(circle at top, rgba(15, 118, 255, 0.08), transparent 55%);
    backdrop-filter: blur(6px);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.45);
    color: #f8fafc;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    transform: translateX(-6px);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 20px 35px rgba(2, 6, 23, 0.45);
}

.mobile-nav-link i {
    font-size: 1rem;
    color: rgba(96, 165, 250, 0.95);
}

.mobile-nav-section__label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(226, 232, 255, 0.7);
    margin: 0 0 0.65rem;
}

.mobile-nav-section {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-nav-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mobile-nav-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: rgba(226, 232, 240, 0.95);
    font-size: 0.85rem;
    background: rgba(15, 23, 42, 0.6);
}

.mobile-nav-actions {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.mobile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.85rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    background: rgba(15, 23, 42, 0.6);
    color: #f8fafc;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.mobile-action--primary {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.mobile-action:hover,
.mobile-action:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.mobile-nav-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(15, 23, 42, 0.65);
    color: #e2e8f0;
    gap: 0.75rem;
}

.mobile-nav-footer p {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
}

.mobile-nav-footer span {
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.75);
}

.mobile-nav-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    color: #041429;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(14, 165, 233, 0.35);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.35);
    border-radius: 18px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 0 0 0.9rem 0;
    backdrop-filter: blur(18px);
}

.mobile-menu-close {
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.45);
    color: #f8fafc;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.45);
}

.mobile-menu-close:hover {
    background: rgba(37, 99, 235, 0.45);
    color: #ffffff;
    border-color: rgba(96, 165, 250, 0.6);
}

body.mobile-menu-open .mobile-nav-panel {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

body.mobile-menu-open .mobile-nav-shell {
    pointer-events: auto;
    opacity: 1;
}

body.mobile-menu-open .mobile-nav-shell__overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-nav-shell {
        display: block;
    }

    .mobile-nav-panel {
        width: 100vw;
        border-left: none;
    }

    .mobile-nav-shell__body {
        padding-inline: 1.1rem;
    }
}

@media (min-width: 769px) {
    .mobile-nav-shell {
        display: none !important;
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.2rem 0 0.1rem;
    margin-top: -1px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    min-height: 90px;
}

.nav-logo {
    grid-column: 2;
    justify-self: center;
    position: relative;
    z-index: 10;
    min-height: 80px;
}

.nav-logo .logo {
    width: clamp(180px, 14vw, 199px);
    max-width: 199px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: all var(--transition-fast);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    animation: logoBrand 4s ease-in-out infinite;
}

@supports (aspect-ratio: 1) {
    .nav-logo .logo {
        aspect-ratio: 199 / 80;
    }
}

.nav-logo .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.4));
}

@keyframes logoBrand {
    0%, 100% { 
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 0 rgba(37, 99, 235, 0));
        transform: scale(1);
    }
    25% { 
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 15px rgba(37, 99, 235, 0.2));
        transform: scale(1.02);
    }
    50% { 
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 25px rgba(37, 99, 235, 0.4));
        transform: scale(1.03);
    }
    75% { 
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 15px rgba(37, 99, 235, 0.2));
        transform: scale(1.02);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 0.4rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-menu.left {
    grid-column: 1;
    justify-self: end;
}

.nav-menu.right {
    grid-column: 3;
    justify-self: start;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all var(--transition-fast);
    z-index: -1;
    border-radius: 25px;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1rem 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-primary);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    border-radius: 0;
}

.submenu-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding-right: 2rem;
}

.nav-actions {
    display: none;
}

/* Sub Navigation Menu */
.sub-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1rem 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-primary);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.sub-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    border-radius: 0;
}

.sub-nav-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding-right: 2rem;
}

.sub-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Quick Actions Submenu */
.quick-actions {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1rem 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-primary);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.quick-actions.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    border-radius: 0;
}

.quick-action:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding-right: 2rem;
}

.quick-action i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .top-promo-bar {
        padding: 0.35rem 0 0.55rem;
        font-size: 0.82rem;
    }

    .promo-content {
        padding: 0.4rem 0.9rem 0.6rem;
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .promo-left {
        justify-content: center;
        text-align: center;
        gap: 0.4rem;
    }

    .promo-left .promo-offer,
    .promo-left .promo-timer {
        justify-content: center;
        width: 100%;
        max-width: 320px;
    }

    .promo-right {
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .promo-links {
        width: 100%;
        overflow-x: auto;
        gap: 0.45rem;
        padding: 0.35rem 0.4rem 0.45rem;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .promo-links::-webkit-scrollbar {
        height: 0;
    }

    .promo-link {
        flex: 0 0 auto;
        scroll-snap-align: center;
        white-space: nowrap;
    }

    .promo-account,
    .promo-contact {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        gap: 0.45rem;
    }

    .promo-account {
        padding: 0.45rem 0.55rem;
        flex-wrap: nowrap;
    }

    .promo-account > * {
        flex: 0 0 auto;
        position: relative;
    }

    .promo-account .promo-user,
    .promo-account .promo-cart,
    .contact-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .promo-account .promo-cart {
        padding: 0.4rem 0.65rem;
    }

    .promo-account .promo-cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }

    .promo-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .contact-btn {
        width: auto;
        justify-content: center;
        padding: 0.45rem 0.65rem;
        font-weight: 600;
        font-size: 0.82rem;
    }

    .navbar {
        margin-top: -1px;
        padding: 0.25rem 0 0.15rem;
    }

    .nav-container {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        position: relative;
        padding: 0.6rem 1rem 1rem;
        margin-top: 0;
    }

    .nav-logo {
        grid-column: 1;
        justify-self: center;
        order: 0;
    }

    .nav-logo .logo {
        height: auto;
        max-height: 54px;
        width: auto;
    }
    
    .nav-menu.left,
    .nav-menu.right {
        display: none;
    }

.mobile-shell-trigger {
    display: none;
    position: absolute;
    right: clamp(1rem, 5vw, 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.3);
    z-index: 11002;
}

.mobile-shell-trigger__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1.05rem;
    transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.mobile-shell-trigger:hover {
    transform: translateY(calc(-50% - 2px));
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.35);
}

.mobile-shell-trigger.active {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.25);
}

.mobile-shell-trigger.active .mobile-shell-trigger__icon {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-color);
    transform: rotate(90deg);
}
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 0.4rem;
        padding: 0;
        border-radius: 0;
    }
    
    .mobile-drawer-actions {
        margin-top: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem 0 0;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
        background: transparent;
    }
    
    .mobile-drawer-actions .contact-btn {
        width: 100%;
        justify-content: center;
        font-size: 1.05rem;
        padding: 0.9rem 1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.92), rgba(37, 99, 235, 0.92));
        color: #ffffff;
        box-shadow: 0 12px 26px rgba(59, 130, 246, 0.25);
    }
    
    .mobile-drawer-actions a.contact-btn {
        background: transparent;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        box-shadow: none;
    }
}

/* Tablet Navigation */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-logo .logo {
        height: auto;
        max-height: 70px;
        width: auto;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ===== USER PANEL MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-content {
    padding: 1.5rem;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.login-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.login-option:hover .option-icon {
    transform: scale(1.1);
}

.option-content {
    flex: 1;
}

.option-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.option-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.option-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.option-arrow {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.login-option:hover .option-arrow {
    color: var(--primary-color);
    transform: translateX(-3px);
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-text i {
    color: #10b981;
}

/* Loading Effect */
.login-option.loading {
    pointer-events: none;
    opacity: 0.7;
}

.login-option.loading .option-icon {
    animation: spin 1s linear infinite;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .login-option {
        padding: 1rem;
    }
    
    .option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .option-content h3 {
        font-size: 1rem;
    }
    
    .option-content p {
        font-size: 0.85rem;
    }
}

/* ===== COMPACT FOOTER ===== */
.compact-footer {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: var(--text-primary);
    border-top: 1px solid #e2e8f0;
    padding: 3rem 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.brand-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
}

.brand-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Services Section */
.footer-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    position: relative;
}

.service-group h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.service-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-group li {
    margin-bottom: 0.5rem;
}

.service-group a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.service-group a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Social Media Section */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.social-link.discord:hover {
    background: #5865f2;
    border-color: #5865f2;
    color: white;
}

.social-link.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: white;
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .compact-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-social {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-services {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-brand {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .brand-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .brand-stats {
        justify-content: center;
    }
    
    .footer-services {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-link {
        flex: 1;
        min-width: 120px;
    }
}

/* ===== NEW BRAND HERO SECTION ===== */
.brand-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    padding: calc(var(--hero-gap, 64px) + 20px) 0 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    direction: rtl;
}

.brand-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.brand-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="brandGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%232563eb" stroke-width="0.3" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23brandGrid)"/></svg>');
    animation: brandGridMove 30s linear infinite;
}

.brand-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.05));
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes brandGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.brand-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    direction: rtl;
}

.brand-hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brand-logo {
    margin-bottom: 2rem;
}

.brand-logo img {
    height: 120px;
    transition: all var(--transition-fast);
}

.brand-logo img:hover {
    transform: scale(1.05);
}

.brand-tagline {
    margin-bottom: 1rem;
}

.tagline-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.brand-hero-text {
    text-align: right;
}

.brand-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.brand-title-line {
    display: block;
    animation: slideInUp 1s ease forwards;
    opacity: 0;
}

.brand-title-line:nth-child(1) { animation-delay: 0.1s; }
.brand-title-line:nth-child(2) { animation-delay: 0.3s; }
.brand-title-line:nth-child(3) { animation-delay: 0.5s; }

.brand-highlight {
    color: var(--primary-color);
    position: relative;
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: highlightUnderline 2s ease-in-out infinite alternate;
}

@keyframes highlightUnderline {
    0% { width: 0%; }
    100% { width: 100%; }
}

.brand-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.brand-feature:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-primary);
}

.brand-feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
}

.brand-feature span {
    font-weight: 600;
    color: var(--text-primary);
}

.brand-hero-visual {
    position: relative;
}

.brand-showcase {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
}

.brand-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.brand-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.brand-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.brand-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.brand-game {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.brand-game:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.game-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.brand-game.cs2 .game-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.brand-game.minecraft .game-icon {
    background: linear-gradient(135deg, #8bc34a, #aed581);
}

.brand-game.mu .game-icon {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.brand-game.hosting .game-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.brand-game.vps .game-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.brand-game.dedicated .game-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.game-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.game-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.brand-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-brand-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-primary);
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-brand-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.btn-brand-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.brand-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* ===== RESPONSIVE BRAND HERO ===== */
@media (max-width: 1024px) {
    .brand-hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .brand-hero-text {
        text-align: center;
    }
    
    .brand-title {
        font-size: 3.5rem;
    }
    
    .brand-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-games {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-hero {
        padding: 100px 0 30px;
        min-height: 70vh;
    }
    
    .brand-hero-content {
        padding: 0 1rem;
    }
    
    .brand-logo img {
        height: 80px;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .brand-subtitle {
        font-size: 1rem;
    }
    
    .brand-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brand-features {
        gap: 0.5rem;
    }
    
    .brand-feature {
        padding: 0.8rem;
    }
    
    .brand-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .brand-hero {
        padding: calc(var(--hero-gap, 48px) + 16px) 0 32px;
    }
    
    .brand-logo img {
        height: 60px;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .brand-subtitle {
        font-size: 1rem;
    }
    
    .brand-showcase {
        padding: 1.5rem;
    }
    
    .brand-stat {
        padding: 1rem;
    }
    
    .brand-game {
        padding: 0.8rem;
    }
}

.game-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 1;
    padding-top: calc(var(--hero-gap, 64px));
}

.game-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gameGrid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.2"/><circle cx="12.5" cy="12.5" r="1" fill="%2300d4ff" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23gameGrid)"/></svg>');
    animation: gameGridMove 25s linear infinite;
    z-index: -1;
}

.game-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: -1;
}

@keyframes gameGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(25px, 25px); }
}

.mu-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 1;
    padding-top: calc(var(--hero-gap, 64px));
}

.mu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="muPattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 15 0 L 15 30 M 0 15 L 30 15" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.2"/><circle cx="15" cy="15" r="2" fill="%2300d4ff" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23muPattern)"/></svg>');
    animation: muPatternMove 30s linear infinite;
    z-index: -1;
}

.mu-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

@keyframes muPatternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.hosting-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 1;
    padding-top: 80px;
}

.hosting-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hostingPattern" width="35" height="35" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="35" height="35" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.2"/><circle cx="17.5" cy="17.5" r="3" fill="%2300d4ff" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hostingPattern)"/></svg>');
    animation: hostingPatternMove 35s linear infinite;
    z-index: -1;
}

.hosting-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: -1;
}

@keyframes hostingPatternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(35px, 35px); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes dotsMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes circuitMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes gamingMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    direction: rtl;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-logo img {
    height: 100px;
    transition: all var(--transition-fast);
}

.hero-logo img:hover {
    transform: scale(1.05);
}

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

.hero-text {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
}

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.4rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
    border: 1px solid transparent;
}

.hero-secondary-btn:hover {
    transform: translateY(-2px);
}

.hero-secondary-btn--solid.hero-secondary-btn--solid-dark {
    background: rgba(255, 255, 255, 0.92);
    color: #0d47a1;
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.25);
}

.hero-secondary-btn--solid.hero-secondary-btn--solid-dark:hover {
    background: #ffffff;
}

.hero-secondary-btn--solid.hero-secondary-btn--solid-light {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.hero-secondary-btn--solid.hero-secondary-btn--solid-light:hover {
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.28);
}

.hero-secondary-btn--outline {
    background: transparent;
    box-shadow: none;
}

.hero-secondary-btn--outline.hero-secondary-btn--outline-dark {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}

.hero-secondary-btn--outline.hero-secondary-btn--outline-dark:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-secondary-btn--outline.hero-secondary-btn--outline-light {
    color: #0d47a1;
    border-color: rgba(13, 71, 161, 0.7);
}

.hero-secondary-btn--outline.hero-secondary-btn--outline-light:hover {
    background: rgba(13, 71, 161, 0.08);
}

#gs-hero-title,
.gs-hero-alt h1,
.gs-hero-alt h2.hero-subtitle,
.gs-hero-alt p.hero-seo {
    color: #ffffff !important;
}

.gs-hero-alt .hero-btn.secondary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.85);
}

.support-hero .hero-title,
.support-hero .hero-subtitle,
.modern-contact-hero .hero-title,
.modern-contact-hero .hero-subtitle,
.wh-hero-title,
.wh-hero-subtitle,
.hosting-hero .hero-title,
.hosting-hero .hero-subtitle,
.dedicated-hero h1,
.dedicated-hero .hero-subtitle {
    color: #ffffff !important;
}

#hero .hero-title,
#hero .hero-subtitle {
    color: #ffffff;
}

#hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
}


.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    text-align: right;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    animation: slideInUp 1s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: right;
    line-height: 1.6;
    max-width: 500px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    to { box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.hero-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.server-visualization {
    position: relative;
    width: 200px;
    height: 200px;
}

.server-rack {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 10px;
    padding: 20px;
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.server-blade {
    width: 100%;
    height: 20px;
    background: var(--gradient-primary);
    margin-bottom: 10px;
    border-radius: 3px;
    animation: serverPulse 2s ease-in-out infinite;
    opacity: 0.7;
}

.server-blade[data-delay="0"] { animation-delay: 0s; }
.server-blade[data-delay="1"] { animation-delay: 0.5s; }
.server-blade[data-delay="2"] { animation-delay: 1s; }
.server-blade[data-delay="3"] { animation-delay: 1.5s; }

@keyframes serverPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-packet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dataFlow 3s linear infinite;
}

.data-packet:nth-child(1) { animation-delay: 0s; }
.data-packet:nth-child(2) { animation-delay: 1s; }
.data-packet:nth-child(3) { animation-delay: 2s; }

@keyframes dataFlow {
    0% { top: 100%; left: 20%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 0%; left: 80%; opacity: 0; }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: var(--gradient-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2300d4ff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: dotsMove 30s linear infinite;
}

@keyframes dotsMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-main {
    display: block;
    color: var(--text-primary);
}

.title-accent {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    from { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    to { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-service {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.btn-service:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2300d4ff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: dotsMove 30s linear infinite;
    z-index: -1;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.features-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.tech-stack {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.tech-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.8rem;
    text-align: center;
    animation: techFloat 4s ease-in-out infinite;
}

.tech-item[data-tech="server"] {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.tech-item[data-tech="network"] {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.tech-item[data-tech="security"] {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.tech-item[data-tech="support"] {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.tech-item i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

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

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 6rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 0 20 L 20 20 L 20 0 M 20 20 L 40 20 M 20 0 L 20 40" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    animation: circuitMove 40s linear infinite;
    z-index: -1;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.discount-badge {
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: var(--text-primary);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
    transform: translateX(30px);
    background: var(--primary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.card-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-features li i {
    color: var(--success-color);
}

.btn-pricing {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gaming" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%2300d4ff" opacity="0.1"/><rect x="10" y="10" width="10" height="10" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gaming)"/></svg>');
    animation: gamingMove 25s linear infinite;
    z-index: -1;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: -1;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-character {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
    position: relative;
    animation: characterFloat 3s ease-in-out infinite;
}

.testimonial-character.cs2 {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.testimonial-character.mu {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.testimonial-character.tf2 {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

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

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    margin-top: 0.5rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 6rem 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: transform var(--transition-fast);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo .logo {
    height: 34px;
    transition: all var(--transition-fast);
}

.footer-logo .logo:hover {
    transform: rotate(5deg);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== GAME SERVERS PAGE STYLES ===== */
.game-selector {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.game-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
    min-width: 120px;
}

.game-tab:hover,
.game-tab.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.tab-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.filters-section {
    padding: 3rem 0;
    background: var(--gradient-dark);
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.range-slider {
    position: relative;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.filter-select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.btn-clear-filters {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-clear-filters:hover {
    border-color: var(--error-color);
    color: var(--error-color);
}

.servers-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.server-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.server-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.server-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.game-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.game-badge {
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.spec-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.card-players {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.card-players i {
    color: var(--primary-color);
}

.btn-order {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}

.no-results-icon {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.table-container {
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.packages-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
}

.packages-table th,
.packages-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.packages-table th {
    background: var(--gradient-dark);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.packages-table td {
    color: var(--text-secondary);
}

.package-basic { background: rgba(0, 212, 255, 0.05); }
.package-advanced { background: rgba(0, 212, 255, 0.1); }
.package-professional { background: rgba(0, 212, 255, 0.15); }
.package-ultra { background: rgba(0, 212, 255, 0.2); }

.price-row {
    background: var(--gradient-dark);
    font-weight: 700;
    color: var(--text-primary);
}

.action-row {
    background: var(--card-bg);
}

.action-row button {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.action-row button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ===== CUSTOM BUILDER ===== */
.custom-builder {
    padding: 4rem 0;
    background: var(--gradient-dark);
}

.builder-container {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.builder-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
}

.form-control {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--darker-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.slider-value {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.addon-item:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

.addon-item input[type="checkbox"] {
    margin: 0;
}

.addon-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.addon-content i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.addon-price {
    color: var(--primary-color);
    font-weight: 600;
}

.builder-summary {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.builder-summary h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.summary-note i {
    color: var(--primary-color);
}

/* ===== GAMING FEATURES ===== */
.gaming-features {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.faq-header:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.faq-header i {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-fast);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-content p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
.mobile-shell-trigger {
    display: inline-flex;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border: none;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

.mobile-shell-trigger__icon {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.mobile-shell-trigger:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.35);
}

.mobile-shell-trigger.active {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    color: var(--primary-color);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}

.mobile-shell-trigger.active .mobile-shell-trigger__icon {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-color);
}

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .builder-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .filters-container {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
    
    .packages-table th,
    .packages-table td {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes scaleOut {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0); opacity: 0; }
}

/* ===== VPS & DEDICATED PAGES STYLES ===== */
.vps-packages, .dedicated-packages {
    padding: 100px 0;
    background: var(--bg-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.package-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.package-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.package-price .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.package-specs {
    margin-bottom: 2rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec:last-child {
    border-bottom: none;
}

.spec i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.spec span {
    font-weight: 500;
    color: var(--text-primary);
}

.package-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature i {
    color: var(--success-color);
    font-size: 1rem;
}

.feature span {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.btn-package {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Calculator Styles */
.vps-calculator, .dedicated-calculator {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.calculator-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.slider-container {
    position: relative;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-primary);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-primary);
}

.slider-value {
    position: absolute;
    top: -30px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.calculator-result {
    position: sticky;
    top: 2rem;
}

.result-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    text-align: center;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.result-price {
    margin-bottom: 2rem;
}

.result-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.result-price .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.result-specs {
    margin-bottom: 2rem;
}

.result-specs .spec {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.result-specs .spec:last-child {
    border-bottom: none;
}

.result-specs .spec i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.result-specs .spec span {
    font-weight: 500;
    color: var(--text-primary);
}

.btn-calculate {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Features Section */
.vps-features, .dedicated-features {
    padding: 100px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design for VPS/Dedicated */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.blog-stat {
    text-align: center;
}

.blog-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
}

.blog-stat .stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.featured-articles {
    padding: 100px 0;
    background: var(--dark-bg);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.featured-article.main {
    grid-row: span 2;
}

.featured-article {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 2rem;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-meta i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.article-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.article-link:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.blog-categories {
    padding: 100px 0;
    background: var(--darker-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.category-count {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.latest-articles {
    padding: 100px 0;
    background: var(--dark-bg);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.article-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.newsletter {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===== KNOWLEDGE BASE PAGE STYLES ===== */
.kb-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
}

.kb-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.kb-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-btn:hover {
    background: var(--secondary-color);
}

.kb-categories {
    padding: 100px 0;
    background: var(--bg-primary);
}

.kb-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.kb-category-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
}

.kb-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.category-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.article-count {
    color: var(--primary-color);
    font-weight: 600;
}

.difficulty {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.popular-articles {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.articles-list {
    margin-top: 4rem;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
}

.article-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.article-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.article-content {
    flex: 1;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.article-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-meta i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.article-rating {
    color: var(--accent-color);
}

.article-action {
    margin-left: auto;
}

.article-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.article-link:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

.kb-faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.faq-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-header:hover {
    background: var(--bg-secondary);
}

.faq-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

.kb-support {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
}

.support-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.support-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.support-actions {
    display: flex;
    gap: 1rem;
}

.support-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.support-btn.primary {
    background: var(--accent-color);
    color: white;
    border: none;
}

.support-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ===== DEMO SERVERS PAGE STYLES ===== */
.demo-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    text-align: center;
}

.demo-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.demo-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.demo-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.demo-stat {
    text-align: center;
}

.demo-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.demo-stat .stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.game-demo, .vps-demo, .hosting-demo {
    padding: 100px 0;
    background: var(--bg-primary);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.demo-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.demo-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.demo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.demo-card:hover .demo-image img {
    transform: scale(1.05);
}

.demo-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-status.online {
    background: var(--success-color);
    color: white;
}

.demo-content {
    padding: 2rem;
}

.demo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.demo-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.demo-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--primary-color);
    width: 20px;
}

.demo-actions {
    display: flex;
    gap: 1rem;
}

.demo-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.demo-btn.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.demo-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.demo-features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Responsive Design for Blog/Knowledge Base */
@media (max-width: 768px) {
    .blog-hero-title, .kb-hero-title, .demo-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-stats, .demo-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content, .support-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .article-item {
        flex-direction: column;
        text-align: center;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-actions {
        flex-direction: column;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--card-bg);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-method {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    transition: all var(--transition-fast);
    text-align: center;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.method-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.method-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.method-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.method-link:hover {
    color: var(--secondary-color);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.map-container {
    margin-top: 4rem;
}

.map-placeholder {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-map {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.faq-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-header:hover {
    background: var(--bg-secondary);
}

.faq-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
}

/* ===== ULTRA REALISTIC GAMING LOADING SCREEN ===== */
.battle-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
    overflow: hidden;
    z-index: 1;
    animation: battleAmbient 8s infinite;
}

.warriors-container {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 200px;
    z-index: 3;
    animation: warriorsFloat 6s infinite ease-in-out;
}

/* MU Online Dark Knight - Ultra Realistic */
.warrior.dark-knight {
    position: relative;
    width: 140px;
    height: 180px;
    animation: knightCharge 1.2s infinite;
    filter: drop-shadow(0 0 20px rgba(139, 69, 19, 0.3));
}

/* Dark Knight Head Section */
.head-section {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.helmet {
    position: relative;
    width: 45px;
    height: 45px;
}

.helmet-main {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    border-radius: 8px;
    border: 2px solid #111827;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.visor {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 6px;
    border: 1px solid #991b1b;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
}

.visor-glow {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 8px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 4px;
    animation: visorGlow 2s infinite;
}

.visor-reflection {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 26px;
    height: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 5px;
}

.horns {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 20px;
}

.horn {
    position: absolute;
    width: 15px;
    height: 18px;
    background: linear-gradient(135deg, #7c2d12 0%, #451a03 100%);
    border-radius: 0 0 8px 8px;
    border: 1px solid #451a03;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.horn-left {
    left: 2px;
    transform: rotate(-15deg);
    animation: hornGlow 3s infinite;
}

.horn-right {
    right: 2px;
    transform: rotate(15deg);
    animation: hornGlow 3s infinite 1.5s;
}

.helmet-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.helmet-rivets {
    position: absolute;
    top: 15px;
    left: 8px;
    width: 3px;
    height: 3px;
    background: #6b7280;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(107, 114, 128, 0.5);
}

.helmet-rivets::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 3px;
    height: 3px;
    background: #6b7280;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(107, 114, 128, 0.5);
}

.helmet-scratches {
    position: absolute;
    top: 20px;
    left: 5px;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4b5563 50%, transparent 100%);
    transform: rotate(-15deg);
}

/* Dark Knight Torso Section */
.torso-section {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
}

.armor {
    position: relative;
    width: 55px;
    height: 65px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    border-radius: 8px;
    border: 2px solid #111827;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.chest-plate {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 30px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 6px;
    border: 1px solid #111827;
}

.chest-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chest-rivets {
    position: absolute;
    top: 8px;
    left: 5px;
    width: 2px;
    height: 2px;
    background: #6b7280;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(107, 114, 128, 0.5);
}

.chest-rivets::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 2px;
    height: 2px;
    background: #6b7280;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(107, 114, 128, 0.5);
}

.chest-rivets::after {
    content: '';
    position: absolute;
    top: 0;
    right: -16px;
    width: 2px;
    height: 2px;
    background: #6b7280;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(107, 114, 128, 0.5);
}

.chest-scratches {
    position: absolute;
    top: 15px;
    left: 3px;
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4b5563 50%, transparent 100%);
    transform: rotate(-10deg);
}

.chest-symbol {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(220, 38, 38, 0.6);
    animation: symbolPulse 2s infinite;
}

.shoulder-pads {
    position: absolute;
    top: 5px;
    left: -12px;
    width: 80px;
    height: 25px;
}

.shoulder-pad {
    position: absolute;
    width: 18px;
    height: 22px;
    background: linear-gradient(135deg, #7c2d12 0%, #451a03 100%);
    border-radius: 8px;
    border: 1px solid #451a03;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.shoulder-pad.left {
    left: 0;
    animation: shoulderGlow 2.5s infinite;
}

.shoulder-pad.right {
    right: 0;
    animation: shoulderGlow 2.5s infinite 1.2s;
}

.shoulder-spikes {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(220, 38, 38, 0.5);
}

.shoulder-details {
    position: absolute;
    top: 8px;
    left: 3px;
    width: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4b5563 50%, transparent 100%);
    transform: rotate(-15deg);
}

.armor-straps {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 15px;
}

.strap {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7c2d12 0%, #451a03 100%);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.strap-1 {
    top: 0;
}

.strap-2 {
    top: 8px;
}

.warrior-body {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Dark Knight Helmet */
.helmet {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 8px;
    border: 2px solid #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.visor {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 4px;
}

.horns {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #7c2d12 0%, #451a03 100%);
    border-radius: 0 0 15px 15px;
}

/* Dark Knight Armor */
.armor {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 60px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 8px;
    border: 2px solid #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.chest-plate {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 4px;
}

.shoulder-pads {
    position: absolute;
    top: 5px;
    left: -8px;
    width: 15px;
    height: 20px;
    background: linear-gradient(135deg, #7c2d12 0%, #451a03 100%);
    border-radius: 8px;
    border: 1px solid #451a03;
}

.shoulder-pads::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 20px;
    background: linear-gradient(135deg, #7c2d12 0%, #451a03 100%);
    border-radius: 8px;
    border: 1px solid #451a03;
}

/* Dark Knight Sword */
.weapon.sword {
    position: absolute;
    top: 40px;
    right: -20px;
    width: 8px;
    height: 80px;
    background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
    border-radius: 4px;
    animation: swordSwing 1.2s infinite;
    transform-origin: bottom center;
}

.blade {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.hilt {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 20px;
    background: linear-gradient(135deg, #7c2d12 0%, #451a03 100%);
    border-radius: 6px;
}

.shield {
    position: absolute;
    top: 45px;
    left: -15px;
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 12px;
    border: 2px solid #111827;
    animation: shieldBlock 1.8s infinite;
}

/* CS2 Counter-Terrorist */
.warrior.counter-terrorist {
    position: relative;
    width: 120px;
    height: 160px;
    animation: ctStance 1.3s infinite;
}

/* CT Helmet */
.helmet {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 8px;
    border: 2px solid #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.visor {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 4px;
}

.headset {
    position: absolute;
    top: 15px;
    left: -5px;
    width: 50px;
    height: 8px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 4px;
}

/* CT Tactical Vest */
.tactical-vest {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 60px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 8px;
    border: 2px solid #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.chest-rig {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 4px;
}

.shoulder-straps {
    position: absolute;
    top: 5px;
    left: -8px;
    width: 15px;
    height: 20px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 8px;
    border: 1px solid #4b5563;
}

.shoulder-straps::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 20px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 8px;
    border: 1px solid #4b5563;
}

/* CT Rifle */
.weapon.rifle {
    position: absolute;
    top: 40px;
    right: -25px;
    width: 12px;
    height: 70px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 6px;
    animation: rifleFire 0.8s infinite;
    transform-origin: bottom center;
}

.barrel {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 50px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 4px;
}

.stock {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 20px;
    background: linear-gradient(135deg, #7c2d12 0%, #451a03 100%);
    border-radius: 5px;
}

.scope {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 3px;
}

.tactical-gear {
    position: absolute;
    top: 50px;
    left: -10px;
    width: 70px;
    height: 15px;
}

.radio {
    position: absolute;
    left: 0;
    width: 20px;
    height: 8px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 4px;
}

.flashlight {
    position: absolute;
    right: 0;
    width: 15px;
    height: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 4px;
    animation: flashlightBlink 2s infinite;
}

/* Battle Effects */
.warrior-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Dark Knight Magic Effects */
.magic-aura {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: magicAura 2s infinite;
}

.energy-blasts {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 40px;
    height: 40px;
}

.blast {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #fbbf24 0%, #f59e0b 70%, transparent 100%);
    border-radius: 50%;
    animation: energyBlast 1.5s infinite;
}

.blast-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.blast-2 {
    bottom: 0;
    right: 0;
    animation-delay: 0.7s;
}

/* CT Gun Effects */
.muzzle-flash {
    position: absolute;
    top: 20px;
    right: -35px;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #fbbf24 0%, #f59e0b 70%, transparent 100%);
    border-radius: 50%;
    animation: muzzleFlash 0.8s infinite;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.bullet-trails {
    position: absolute;
    top: 25px;
    right: -50px;
    width: 60px;
    height: 4px;
}

.trail {
    position: absolute;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24 0%, transparent 100%);
    animation: bulletTrail 0.8s infinite;
}

.trail-1 {
    top: 0;
    animation-delay: 0s;
}

.trail-2 {
    top: 2px;
    animation-delay: 0.4s;
}

/* Battle Environment */
.battle-environment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ground-platform {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #374151 0%, #4b5563 100%);
    border-top: 4px solid #6b7280;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.4);
}

.background-structures {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 1;
}

.structure {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, #1f2937 0%, #374151 100%);
    border: 2px solid #4b5563;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.structure-1 {
    left: 5%;
    width: 100px;
    height: 50%;
    animation: structureGlow 3s infinite;
}

.structure-2 {
    left: 30%;
    width: 120px;
    height: 70%;
    animation: structureGlow 3s infinite 1s;
}

.structure-3 {
    right: 5%;
    width: 110px;
    height: 60%;
    animation: structureGlow 3s infinite 2s;
}

.battle-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.explosion {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ef4444 0%, #dc2626 70%, transparent 100%);
    border-radius: 50%;
    animation: explosion 2s infinite;
}

.explosion-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.explosion-2 {
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

.smoke-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.smoke {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #9ca3af 0%, #6b7280 100%);
    border-radius: 50%;
    animation: smokeFloat 4s infinite linear;
}

.smoke-1 {
    left: 15%;
    animation-delay: 0s;
}

.smoke-2 {
    left: 50%;
    animation-delay: 1.3s;
}

.smoke-3 {
    right: 20%;
    animation-delay: 2.6s;
}

/* Fast Animations */
@keyframes knightCharge {
    0%, 100% { transform: translateX(0) scale(1); }
    25% { transform: translateX(-10px) scale(1.05); }
    50% { transform: translateX(-5px) scale(1.02); }
    75% { transform: translateX(-15px) scale(1.08); }
}

@keyframes ctStance {
    0%, 100% { transform: translateX(0) scale(1); }
    25% { transform: translateX(10px) scale(1.03); }
    50% { transform: translateX(5px) scale(1.01); }
    75% { transform: translateX(15px) scale(1.06); }
}

@keyframes swordSwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-30deg); }
    50% { transform: rotate(-60deg); }
    75% { transform: rotate(-30deg); }
}

@keyframes shieldBlock {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(-5px) rotate(-10deg); }
}

@keyframes rifleFire {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(-5deg); }
}

@keyframes flashlightBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

@keyframes magicAura {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(-50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes energyBlast {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes muzzleFlash {
    0%, 100% { opacity: 0; transform: scale(0); }
    25% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
    75% { opacity: 0.6; transform: scale(0.8); }
}

@keyframes bulletTrail {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(30px); opacity: 0; }
}

@keyframes structureGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(59, 130, 246, 0); }
    50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
}

@keyframes explosion {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes smokeFloat {
    0% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== PROFESSIONAL COUNTDOWN SYSTEM ===== */
.loading-timer {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.timer-system {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Main Timer Circle */
.timer-circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: timerFloat 3s infinite ease-in-out;
}

.timer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    border: 3px solid #3b82f6;
    box-shadow: 
        0 0 40px rgba(59, 130, 246, 0.4),
        inset 0 0 30px rgba(59, 130, 246, 0.1);
}

.timer-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    animation: ringRotate 4s linear infinite;
}

.timer-inner-glow {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    animation: innerGlow 2s infinite;
}

.timer-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#3b82f6 0deg, transparent 0deg);
    animation: timerCountdown 5s linear forwards;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#3b82f6 0deg, transparent 0deg);
    animation: timerCountdown 5s linear forwards;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(rgba(59, 130, 246, 0.4) 0deg, transparent 0deg);
    animation: timerCountdown 5s linear forwards;
    filter: blur(3px);
}

.timer-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    animation: numberGlow 1.5s infinite;
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 4px;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.timer-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.timer-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

.timer-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.energy-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    animation: energyFloat 4s infinite;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.energy-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.energy-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.3s;
}

.energy-3 {
    bottom: 15%;
    left: 50%;
    animation-delay: 2.6s;
}

/* System Status Panel */
.system-status {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.status-icon {
    position: relative;
    width: 12px;
    height: 12px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #10b981 0%, #059669 100%);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.status-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: statusPulseRing 2s infinite;
}

.status-title {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.status-label {
    color: #9ca3af;
    font-weight: 500;
}

.status-value {
    color: white;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(59, 130, 246, 0.5);
}

/* Loading Progress Bar */
.loading-progress {
    width: 100%;
    max-width: 250px;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
}

.progress-fill-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 4px;
    animation: progressFill 5s linear forwards;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.progress-glow-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, transparent 100%);
    border-radius: 4px;
    animation: progressFill 5s linear forwards;
    filter: blur(2px);
}

.progress-text {
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 8px;
    animation: textBlink 2s infinite;
}

/* Professional Logo Display */
.loading-logo-display {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
    animation: logoFloat 4s infinite ease-in-out;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s infinite;
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.logo-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    animation: logoParticleFloat 6s infinite;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.logo-particles .particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.logo-particles .particle-2 {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.logo-particles .particle-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: white;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: subtitleGlow 2s infinite;
}

.interaction-hint {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: hintPulse 2s infinite;
}

.hint-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.hint-icon {
    font-size: 1.2rem;
    animation: mouseMove 1.5s infinite;
}

/* Interactive Mouse Effects */
.battle-scene:hover .warrior.dark-knight {
    animation: knightCharge 0.8s infinite;
    transform: scale(1.1);
}

.battle-scene:hover .warrior.counter-terrorist {
    animation: ctStance 0.6s infinite;
    transform: scale(1.1);
}

.battle-scene:hover .weapon.sword {
    animation: swordSwing 0.5s infinite;
}

.battle-scene:hover .weapon.rifle {
    animation: rifleFire 0.4s infinite;
}

.battle-scene:hover .magic-aura {
    animation: magicAura 1s infinite;
}

.battle-scene:hover .muzzle-flash {
    animation: muzzleFlash 0.3s infinite;
}

.battle-scene:hover .explosion {
    animation: explosion 1s infinite;
}

/* Mouse Follow Effects */
.battle-scene {
    cursor: none;
}

.battle-scene::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(59, 130, 246, 0.1) 0%, 
        transparent 50%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .warriors-container {
        gap: 80px;
        bottom: 15%;
    }
    
    .warrior {
        width: 80px !important;
        height: 120px !important;
    }
    
    .helmet {
        width: 30px !important;
        height: 30px !important;
    }
    
    .armor, .tactical-vest {
        width: 40px !important;
        height: 50px !important;
    }
    
    .weapon.sword {
        width: 6px !important;
        height: 60px !important;
    }
    
    .weapon.rifle {
        width: 10px !important;
        height: 55px !important;
    }
    
    .timer-circle {
        width: 60px;
        height: 60px;
    }
    
    .timer-progress {
        width: 66px;
        height: 66px;
    }
    
    .timer-number {
        font-size: 1.2rem;
    }
    
    .timer-label {
        font-size: 0.6rem;
    }
    
    .interaction-hint {
        top: 20px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .hint-text {
        font-size: 0.8rem;
    }
    
    .hint-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .warriors-container {
        gap: 60px;
        bottom: 20%;
    }
    
    .warrior {
        width: 60px !important;
        height: 100px !important;
    }
    
    .helmet {
        width: 25px !important;
        height: 25px !important;
    }
    
    .armor, .tactical-vest {
        width: 35px !important;
        height: 45px !important;
    }
    
    .weapon.sword {
        width: 5px !important;
        height: 50px !important;
    }
    
    .weapon.rifle {
        width: 8px !important;
        height: 45px !important;
    }
    
    .timer-circle {
        width: 50px;
        height: 50px;
    }
    
    .timer-progress {
        width: 56px;
        height: 56px;
    }
    
    .timer-number {
        font-size: 1rem;
    }
    
    .timer-label {
        font-size: 0.5rem;
    }
    
    .interaction-hint {
        top: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .hint-text {
        font-size: 0.7rem;
    }
    
    .hint-icon {
        font-size: 0.9rem;
    }
}

/* Animation Keyframes */
@keyframes timerCountdown {
    0% { background: conic-gradient(#3b82f6 0deg, transparent 0deg); }
    100% { background: conic-gradient(#3b82f6 360deg, transparent 0deg); }
}

@keyframes hintPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 0.8; }
}

@keyframes mouseMove {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

/* ===== EPIC REALISTIC ANIMATIONS ===== */
@keyframes battleAmbient {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
            linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
    }
    50% { 
        background: 
            radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
            linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 75%, #475569 100%);
    }
}

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

@keyframes knightCharge {
    0%, 100% { 
        transform: translateX(0) scale(1) rotate(0deg); 
        filter: drop-shadow(0 0 20px rgba(139, 69, 19, 0.3));
    }
    25% { 
        transform: translateX(-15px) scale(1.05) rotate(-2deg); 
        filter: drop-shadow(0 0 25px rgba(139, 69, 19, 0.5));
    }
    50% { 
        transform: translateX(-8px) scale(1.02) rotate(-1deg); 
        filter: drop-shadow(0 0 22px rgba(139, 69, 19, 0.4));
    }
    75% { 
        transform: translateX(-20px) scale(1.08) rotate(-3deg); 
        filter: drop-shadow(0 0 30px rgba(139, 69, 19, 0.6));
    }
}

@keyframes visorGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes hornGlow {
    0%, 100% { 
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 8px rgba(220, 38, 38, 0.4);
        filter: brightness(1.2);
    }
}

@keyframes symbolPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 6px rgba(220, 38, 38, 0.6);
    }
    50% { 
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 0 12px rgba(220, 38, 38, 0.8);
    }
}

@keyframes shoulderGlow {
    0%, 100% { 
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 10px rgba(220, 38, 38, 0.5);
        filter: brightness(1.3);
    }
}

/* Timer Animations */
@keyframes timerPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(59, 130, 246, 0.6),
            inset 0 0 20px rgba(59, 130, 246, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 
            0 0 40px rgba(59, 130, 246, 0.8),
            inset 0 0 25px rgba(59, 130, 246, 0.3);
    }
}

@keyframes numberPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(59, 130, 246, 1);
    }
}

@keyframes subtitleBlink {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes pulseRing {
    0% { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes sparkFloat {
    0% { 
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% { 
        transform: translate(10px, -10px) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translate(20px, -20px) scale(0);
        opacity: 0;
    }
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
    }
}

/* ===== PROFESSIONAL ANIMATIONS ===== */
@keyframes timerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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

@keyframes innerGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

@keyframes numberGlow {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(59, 130, 246, 1);
    }
}

@keyframes energyFloat {
    0% { 
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% { 
        transform: translate(10px, -10px) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translate(20px, -20px) scale(0);
        opacity: 0;
    }
}

@keyframes statusPulseRing {
    0% { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes textBlink {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes logoParticleFloat {
    0% { 
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% { 
        transform: translate(15px, -15px) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translate(30px, -30px) scale(0);
        opacity: 0;
    }
}

@keyframes subtitleGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    50% { 
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    }
}

/* ===== PREMIUM CLEAN FOOTER ===== */
.premium-footer {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

/* Clean Footer Design */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Premium Header Section */
.footer-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.footer-brand-premium {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.brand-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-premium {
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-content {
    flex: 1;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.premium-footer .brand-title {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.premium-footer .brand-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
    opacity: 0.5;
}

.brand-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.brand-stats {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.premium-footer .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
}

.premium-footer .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Premium Contact Info */
.footer-contact-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    font-size: 1.2rem;
    color: white !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-icon i {
    color: white !important;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Premium Navigation Grid */
.footer-navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-links--games .nav-link-premium {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), #ffffff);
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.nav-link-premium--game .link-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.12);
    font-size: 1rem;
}

.nav-link-premium--game .link-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.92rem;
}

.nav-link-premium--game .link-text strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.nav-link-premium--game .link-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.nav-link-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.nav-link-premium:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.link-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.link-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.link-arrow {
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.nav-link-premium:hover .link-arrow {
    color: var(--primary-color);
    transform: translateX(-3px);
}

/* Premium CTA Section */
.footer-cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* CTA Content */
.cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary {
    background: white;
    color: #3b82f6;
    border: 2px solid white;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.social-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
}

.social-links-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link-premium:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    color: white;
}

.social-link-premium.discord .social-icon {
    background: #5865f2;
}

.social-link-premium.telegram .social-icon {
    background: #0088cc;
}

.social-link-premium.whatsapp .social-icon {
    background: #25d366;
}

.social-link-premium.youtube .social-icon {
    background: #ff0000;
}

.social-link-premium.tiktok .social-icon {
    background: linear-gradient(135deg, #25f4ee, #fe2c55 60%, #000);
}

.social-link-premium.instagram .social-icon {
    background: linear-gradient(135deg, #f58529 15%, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.social-info {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.social-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive CTA Section */
@media (max-width: 1200px) {
    .footer-cta-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Premium Bottom Bar */
.footer-bottom-premium {
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright-section p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.tech-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: 1px solid #3b82f6;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.badge i {
    color: white;
    font-size: 0.9rem;
}

.footer-credit-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-inline-start: 0.75rem;
    vertical-align: middle;
}

.footer-credit-pill__brand {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.footer-credit-pill__brand:hover {
    color: var(--primary-color);
}

.footer-credit-pill__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: rgba(59, 130, 246, 0.4);
    border-bottom-color: rgba(59, 130, 246, 0.2);
    animation: footer-credit-spin 4s linear infinite;
    box-shadow: 0 0 4px rgba(59, 130, 246, 0.35);
}

@keyframes footer-credit-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Clean Professional Footer */

/* Responsive Design - Tablet */
@media (max-width: 992px) and (min-width: 768px) {
    .hero-container {
        gap: 2rem;
    }
    
    .popular-games-widget {
        max-width: 440px;
        padding: 1.25rem;
    }
    
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .showcase-card {
        padding: 0.75rem;
        min-height: 130px;
    }
    
    .card-image {
        width: 40px;
        height: 40px;
    }
    
    .game-title {
        font-size: 0.85rem;
    }
    
    .price-value {
        font-size: 0.9rem;
    }
    
    .card-cta {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Responsive Design - Desktop */
@media (max-width: 1200px) {
    .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand-premium {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links-premium {
        grid-template-columns: 1fr;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .brand-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* New Homepage Styles */

/* Unique Brand Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
}

/* Hero Background Effects */
.hero-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.animated-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.1), transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(96, 165, 250, 0.1), transparent 50%);
    animation: gradientShift 15s ease infinite;
}

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

.floating-servers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.server-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    animation: floatCube 20s infinite ease-in-out;
}

.cube-1 { top: 20%; left: 10%; animation-delay: 0s; }
.cube-2 { top: 60%; right: 15%; animation-delay: 7s; }
.cube-3 { bottom: 20%; left: 50%; animation-delay: 14s; }

@keyframes floatCube {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Left Content */
.hero-left {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6; /* Solid blue background */
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-regular {
    display: block;
    color: #64748b;
    font-weight: 400;
    font-size: 2.5rem;
}

.title-bold {
    display: block;
    color: #1e293b;
    font-weight: 900;
    font-size: 4rem;
}

.title-gradient {
    display: block;
    background: linear-gradient(90deg, #3b82f6, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 3.5rem;
    animation: gradientMove 3s ease infinite;
}

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

.hero-desc {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.cta-main {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cta-secondary {
    color: #3b82f6;
    padding: 1rem 2rem;
    border: 2px solid #3b82f6;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
}

.cta-secondary:hover {
    background: #f0f9ff;
    border-color: #2563eb;
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.trust-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Hero Right - Game Showcase */
.hero-right {
    position: relative;
}

/* Popular Games Widget - Perfect UX/UI Design */
.popular-games-widget {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-title i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.widget-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.showcase-card {
    position: relative;
    background: #f9fafb;
    border-radius: 10px;
    padding: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 140px;
}

.showcase-card:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.card-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    z-index: 2;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 0 10px 0 10px;
    font-size: 0.6rem;
    font-weight: 600;
    display: inline-block;
}

.card-image {
    width: 45px;
    height: 45px;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    padding: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.card-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.game-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    min-height: 1.2rem;
}

.game-price {
    margin-bottom: 0.4rem;
}

.price-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: #3b82f6;
    color: white;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.7rem;
    text-decoration: none;
    transition: all 0.15s ease;
    width: 100%;
    margin-top: auto;
}

.card-cta:hover {
    background: #2563eb;
}

.card-cta i {
    font-size: 0.6rem;
}

.widget-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    transition: all 0.15s ease;
    background: transparent;
}

.view-all-btn:hover {
    color: #3b82f6;
    background: #eff6ff;
}

.view-all-btn i {
    font-size: 0.7rem;
}

/* Old game-showcase - keeping for backward compatibility */
.game-showcase {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.showcase-main {
    position: relative;
}

.server-status {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.showcase-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-tile {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-tile.active {
    border-color: #ffd9330px rgba(0, 0, 0, 0.2);
    animation: float3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.controller {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.headphones {
    background: linear-gradient(135deg, #00d4aa 0%, #00b4d8 100%);
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.cloud {
    background: linear-gradient(135deg, #ffd93d 0%, #ff6b35 100%);
    top: 30%;
    left: 10%;
    animation-delay: 2s;
}

.server {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8a3 100%);
    top: 70%;
    left: 20%;
    animation-delay: 3s;
}

.rocket {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

.star {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 10%;
    left: 15%;
    animation-delay: 5s;
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-20px) rotateX(10deg) rotateY(5deg); 
    }
    50% { 
        transform: translateY(-10px) rotateX(0deg) rotateY(10deg); 
    }
    75% { 
        transform: translateY(-15px) rotateX(-5deg) rotateY(-5deg); 
    }
}

.gamer-character {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 5;
    animation: characterBounce 3s ease-in-out infinite;
}

.character-body {
    position: relative;
    width: 120px;
    height: 150px;
}

.character-head {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd93d 0%, #ff6b35 100%);
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.character-eyes {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.eye {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 4s ease-in-out infinite;
}

.character-smile {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.character-torso {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b4d8 100%);
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.character-arms {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}

.arm {
    width: 15px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    border-radius: 8px;
    animation: armWave 2s ease-in-out infinite;
}

.arm.right {
    animation-delay: 1s;
}

.server-block {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.server-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    opacity: 0.3;
    animation: serverGlow 2s ease-in-out infinite;
}

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

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

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

@keyframes serverGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Duplicate hero-badge removed - using the one defined earlier */

.hero-text {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    color: white;
    animation: titleSlideIn 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #ff6b9d 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out 0.2s both;
}

.title-sub {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8em;
    animation: titleSlideIn 1s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes titleSlideIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}


.hero-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.hero-text {
    color: var(--text-primary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-color);
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-games {
    position: relative;
    height: 400px;
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.game-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.game-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin: 0 auto 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.game-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.game-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

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


/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.about-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 300px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-card .stat-content {
    flex: 1;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Services Gallery */
.services-gallery {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-games, .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.game-tag, .feature-tag {
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid #e2e8f0;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Deals Section */
.deals-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: var(--text-primary);
}

.deals-section .section-title,
.deals-section .section-subtitle {
    color: var(--text-primary);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.deal-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-primary);
}

.deal-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.deal-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.deal-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.deal-content {
    text-align: center;
}

.deal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.deal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.deal-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.deal-price {
    margin-bottom: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.deal-features {
    margin-bottom: 2rem;
}

.deal-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.deal-features .feature-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.deal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.deal-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 8rem 0; /* increased breathing room */
    margin: 5rem 0;  /* stronger separation from adjacent sections */
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: var(--text-primary);
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* --- Brand sections (testimonials, stats, why, contact) --- */
.testimonials-block {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.testimonials-block__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-block__header {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.testimonials-block__header h2 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.testimonials-block__header p {
    max-width: 700px;
    margin: 16px auto 0;
    color: #475569;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.testimonials-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.2rem);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: clamp(1.8rem, 4vw, 2.4rem);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    inset-inline-start: -14px;
    font-size: clamp(5rem, 12vw, 6.5rem);
    color: rgba(59, 130, 246, 0.12);
}

.testimonial-card__quote {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #1e293b;
    line-height: 1.9;
    margin: 0;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
}

.testimonial-card__name {
    font-weight: 700;
    color: #0f172a;
}

.testimonial-card__role {
    color: #64748b;
    font-size: 0.95rem;
}

.testimonial-card__rating {
    color: #facc15;
    font-size: 1.05rem;
    margin-top: 4px;
}

.brand-stats {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1e88e5 100%);
    color: #fff;
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.brand-stats__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-stats__header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.brand-stats__header h2 {
    font-size: clamp(2.3rem, 4.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.brand-stats__header p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.brand-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.brand-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.25);
    backdrop-filter: blur(6px);
}

.brand-stat-card__value {
    font-size: clamp(2.6rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 10px;
}

.brand-stat-card__label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.brand-stat-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.why-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #ffffff;
}

.why-section__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-section__header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.why-section__header h2 {
    font-size: clamp(2.3rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
}

.why-section__header p {
    max-width: 620px;
    margin: 14px auto 0;
    color: #475569;
}

.why-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.2rem);
}

.why-card {
    background: #f8faff;
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 20px;
    padding: clamp(1.8rem, 4vw, 2.2rem);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.why-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.why-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    background: linear-gradient(135deg, #f9fbff 0%, #eef2ff 100%);
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.contact-section__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: grid;
    gap: 2rem;
    padding: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-section__header {
    text-align: center;
}

.contact-section__header h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.contact-section__header p {
    color: #475569;
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form__field {
    display: grid;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #0f172a;
}

.contact-form__field span {
    font-weight: 600;
}

.contact-form__field > div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 14px;
    padding: 0.8rem 1rem;
    background: #f8fafc;
}

.contact-form__field i {
    color: #3b82f6;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 1rem;
    color: #0f172a;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
}

.contact-form__field--full {
    grid-column: span 2;
}

.contact-form__submit {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 0.9rem 2.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
}

.contact-form__submit:hover {
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .testimonials-block__grid,
    .brand-stats__grid,
    .why-section__grid {
        grid-template-columns: 1fr;
    }
    .contact-form__row {
        grid-template-columns: 1fr;
    }
    .contact-form__field--full {
        grid-column: span 1;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.contact-form-container {
    position: sticky;
    top: 2rem;
}

.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.form-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.form-title p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    z-index: 2;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    padding-right: 3rem;
    width: 100%;
}

.game-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Why Choose Section */
.why-choose-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 4rem 3rem; /* extra vertical breathing room */
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    height: 100%;
    margin: 4rem 0; /* more top/bottom spacing */
}

.why-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.why-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    background: linear-gradient(90deg, #ffffff 0%, #e6f0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-header h3::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
    box-shadow: 0 2px 10px rgba(255,255,255,0.25);
}

.why-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.25rem;
}

.why-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.why-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.why-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.why-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.why-stat {
    text-align: center;
}

.why-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.25rem;
}

.why-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.quick-contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Responsive Design for New Homepage */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .gaming-showcase {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .game-card {
        padding: 1rem;
    }
    
    .game-logo {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .server-racks {
        height: 150px;
    }
    
    .server-unit {
        width: 40px;
        height: 25px;
    }
    
    .game-icons {
        top: 15%;
        right: 5%;
        gap: 15px;
    }
    
    .game-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-features .feature-item {
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Hero Mobile Responsive */
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-card {
        min-width: auto;
        padding: 1rem;
    }
    
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Contact Mobile Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form-container {
        position: static;
    }
    
    .info-card,
    .form-card {
        padding: 1.5rem;
    }
    
    .contact-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .form-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Hero Mobile Responsive */
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .feature-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
        padding: 1rem;
    }
    
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .game-card {
        padding: 1rem;
    }
    
    .game-image {
        width: 60px;
        height: 60px;
    }
    
    /* Contact Mobile Responsive */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Hero Mobile Responsive */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Contact Mobile Responsive */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Unique Hero Mobile Responsive */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-regular {
        font-size: 1.8rem;
    }
    
    .title-bold {
        font-size: 2.8rem;
    }
    
    .title-gradient {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-main, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .popular-games-widget {
        margin-top: 2rem;
        padding: 1rem;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .widget-header {
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .widget-title {
        font-size: 1rem;
    }
    
    .widget-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .games-showcase {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .showcase-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0.75rem;
        gap: 0.75rem;
        min-height: auto;
    }
    
    .card-badge {
        display: none;
    }
    
    .card-image {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    
    .card-content {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .game-title {
        font-size: 0.85rem;
        margin-bottom: 0;
        text-align: right;
    }
    
    .game-price {
        margin-bottom: 0;
        text-align: center;
    }
    
    .price-value {
        font-size: 0.85rem;
    }
    
    .card-cta {
        width: auto;
        padding: 0.3rem 0.6rem;
        margin-top: 0;
        font-size: 0.65rem;
    }
    
    .widget-footer {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .view-all-btn {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
    }
    
    .floating-stats {
        display: none;
    }
    
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .game-tile {
        padding: 0.5rem;
    }
    
    .game-tile img {
        height: 60px;
    }
    
    /* Why Choose Mobile */
    .why-bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    
    .gamer-character {
        position: static;
        transform: none;
        margin: 2rem auto;
        order: -1;
    }
    
    .character-body {
        width: 100px;
        height: 120px;
    }
    
    .character-head {
        width: 50px;
        height: 50px;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .controller { top: 15%; right: 10%; }
    .headphones { top: 50%; right: 5%; }
    .cloud { top: 25%; left: 5%; }
    .server { top: 60%; left: 15%; }
    .rocket { top: 35%; left: 2%; }
    .star { top: 8%; left: 10%; }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>') repeat;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.contact-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: #10b981;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-symbol {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-animation {
    position: relative;
    width: 400px;
    height: 400px;
}

.chat-bubbles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    max-width: 200px;
}

.bubble-1 {
    top: -60px;
    left: -100px;
    animation-delay: 0s;
}

.bubble-2 {
    top: 20px;
    right: -120px;
    animation-delay: 2s;
}

.bubble-3 {
    bottom: -40px;
    left: -80px;
    animation-delay: 4s;
}

.bubble i {
    color: var(--primary-color);
}

.support-team {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.team-member {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-member.active {
    border-color: #10b981;
    transform: scale(1.1);
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
    animation: pulse 2s infinite;
}

/* Quick Contact Methods */
.quick-contact {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.quick-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.method-card:hover::before {
    transform: scaleX(1);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-color);
}

.method-card.urgent {
    border-color: #10b981;
}

.method-card.urgent::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.method-card.urgent .method-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.method-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.method-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.response-time {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.method-card.urgent .response-time {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.method-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.method-card.urgent .method-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.method-card.urgent .method-btn:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-animation {
        width: 300px;
        height: 300px;
    }
    
    .bubble {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
        max-width: 150px;
    }
    
    .bubble-1 {
        top: -40px;
        left: -80px;
    }
    
    .bubble-2 {
        top: 10px;
        right: -90px;
    }
    
    .bubble-3 {
        bottom: -30px;
        left: -60px;
    }
    
    .team-member {
        width: 60px;
        height: 60px;
    }
    
    .quick-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}


/* ===== Homepage Hero Switcher (Zen) ===== */
.zen-hero {
    --zen-accent: #facc15;
    background: var(--promo-gradient);
    border: none;
    border-radius: 0;
    padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(4.5rem, 11vw, 8rem);
    margin: clamp(3rem, 8vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
    width: 100%;
    color: #f8fafc;
    box-shadow: inset 0 -60px 140px rgba(5, 9, 32, 0.6);
    position: relative;
    overflow: hidden;
    font-family: 'Heebo', 'Inter', sans-serif;
    isolation: isolate;
    backdrop-filter: blur(14px);
    min-height: clamp(580px, 85vh, 920px);
}

.zen-hero__container {
    max-width: min(1400px, 100%);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 6vw, 5rem);
    position: relative;
    z-index: 1;
    width: 100%;
}

.zen-hero__mesh {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background-image:
        linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.zen-hero__orb {
    position: absolute;
    width: clamp(80px, 18vw, 160px);
    height: clamp(80px, 18vw, 160px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45), rgba(59, 130, 246, 0));
    filter: blur(6px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: zenOrbFloat 18s ease-in-out infinite alternate;
}

.zen-hero__orb--one {
    top: 10%;
    inset-inline-start: 8%;
}

.zen-hero__orb--two {
    bottom: 8%;
    inset-inline-end: 5%;
    animation-duration: 22s;
}

.zen-hero[data-service="web"] {
    --zen-accent: #0d9488;
}

.zen-hero[data-service="vps"] {
    --zen-accent: #a855f7;
}

.zen-hero__shape {
    display: none;
}

.zen-hero__shape--one {
    top: -90px;
    inset-inline-end: -60px;
    filter: blur(2px);
}

.zen-hero__shape--two {
    bottom: -110px;
    inset-inline-start: -80px;
}

.zen-hero__wrapper {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: flex-start;
    position: relative;
    z-index: 1;
    width: 100%;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.zen-hero__main {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    max-width: none;
    width: 100%;
}

.zen-hero__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(226, 232, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
}

.zen-hero__title {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.12;
    color: #ffffff;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-wrap: balance;
    text-shadow: 0 18px 48px rgba(3, 6, 24, 0.55);
}

.zen-hero__title-highlight {
    font-size: clamp(1.35rem, 3.3vw, 2.15rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(120deg, #fef9c3, #fde047, #facc15);
    background-size: 200% auto;
    -webkit-background-clip: text;
    animation: zenTitleSheen 6s ease-in-out infinite;
}

.zen-hero__lead {
    margin: 0;
    font-size: clamp(1.05rem, 2.3vw, 1.35rem);
    color: rgba(226, 232, 255, 0.92);
    max-width: 620px;
    line-height: 1.75;
    font-weight: 500;
}

.zen-hero__mobile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin: 0.4rem 0 1.2rem;
}

.zen-hero__mobile-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.35);
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.zen-hero__mobile-card-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
}

.zen-hero__mobile-card-label {
    font-size: 0.9rem;
    color: rgba(226, 232, 255, 0.75);
}

.zen-hero__seo-list {
    list-style: none;
    margin: 0 0 0.35rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    color: rgba(226, 232, 255, 0.86);
    font-size: 1rem;
}

.zen-hero__seo-list li {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    position: relative;
    padding-inline-start: 1.2rem;
    line-height: 1.35;
    color: inherit;
}

.zen-hero__seo-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fde047;
    position: absolute;
    inset-inline-start: 0;
    top: 0.65rem;
}

.zen-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.zen-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.zen-hero__cta--primary {
    background: var(--zen-accent);
    color: #0f172a;
    box-shadow: 0 18px 38px rgba(7, 11, 36, 0.35);
}

.zen-hero__cta--ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    color: #e2e8ff;
}

.zen-hero__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 46px rgba(4, 5, 20, 0.35);
}

.zen-hero__note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(226, 232, 255, 0.85);
    margin-top: 0.3rem;
    font-weight: 600;
}

.zen-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.zen-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    color: #e0f2fe;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.zen-hero__tag i {
    font-size: 0.85rem;
}

.zen-hero__panel {
    background: rgba(4, 7, 29, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: clamp(1rem, 2vw, 1.8rem);
    box-shadow: 0 30px 80px rgba(2, 8, 28, 0.55);
    display: grid;
    gap: clamp(0.9rem, 2vw, 1.2rem);
    max-width: 460px;
    width: 100%;
    justify-self: center;
    align-self: stretch;
    height: fit-content;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.zen-hero__panel::before,
.zen-hero__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.zen-hero__panel::before {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 70%);
    opacity: 0.75;
    z-index: 0;
}

.zen-hero__panel::after {
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.35));
    opacity: 0.4;
    z-index: 0;
}

.zen-hero__panel > * {
    position: relative;
    z-index: 1;
}

.zen-hero__panel-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.zen-hero__panel-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.zen-hero__panel-header p {
    margin: 0;
    color: rgba(226, 232, 255, 0.8);
    font-size: 0.95rem;
}

.zen-hero__panel-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.zen-hero__panel-chip {
    padding: 0.45rem 0.65rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.zen-hero__panel-chip span {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.8rem;
}

.zen-hero__panel-chip small {
    color: rgba(226, 232, 255, 0.7);
    font-size: 0.65rem;
}

.zen-hero [data-animate] {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zen-hero [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.zen-hero__selectors {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.zen-hero__selector {
    flex: 1;
    min-width: 140px;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.4);
    color: #e2e8ff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.zen-hero__selector.is-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(2, 7, 20, 0.35);
}

.zen-hero__service {
    display: none;
    flex-direction: column;
    gap: 1rem;
    animation: heroPanelFade 0.3s ease;
}

.zen-hero__service.is-active {
    display: flex;
}

.zen-hero__service header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.zen-hero__service-tag {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #bfdbfe;
}

.zen-hero__service h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #ffffff;
}

.zen-hero__feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: rgba(226, 232, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
}

.zen-hero__panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(226, 232, 255, 0.75);
}

.zen-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--zen-accent);
    text-decoration: none;
    font-weight: 600;
}

.zen-hero__trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(226, 232, 255, 0.85);
}

.zen-hero__trust-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.zen-hero__trust-list span {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.35);
    font-weight: 600;
    color: #e2e8ff;
}

.zen-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: clamp(110px, 20vw, 220px);
    background:
        radial-gradient(circle at 50% -10%, rgba(99, 102, 241, 0.45), transparent 60%),
        var(--hero-bottom-gradient);
    clip-path: polygon(0 55%, 12% 65%, 28% 38%, 47% 68%, 64% 32%, 82% 58%, 100% 40%, 100% 100%, 0 100%);
    filter: drop-shadow(0 -20px 50px rgba(2, 8, 28, 0.45));
    pointer-events: none;
    z-index: 0;
}

@keyframes heroPanelFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes zenShapeFloat {
    0% { transform: rotate(18deg) translateY(0); }
    100% { transform: rotate(18deg) translateY(-20px); }
}

@keyframes zenOrbFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0.45; }
    50% { transform: translate(12px, -10px) scale(1.08); opacity: 0.7; }
    100% { transform: translate(-8px, 6px) scale(0.95); opacity: 0.4; }
}

@media (max-width: 768px) {
    .zen-hero {
        padding: clamp(3rem, 16vw, 5rem) 0 clamp(3rem, 18vw, 5.5rem);
        margin: clamp(3rem, 14vw, 4.5rem) 0 clamp(3rem, 16vw, 4.8rem);
        width: 100%;
        border-radius: 0;
        min-height: auto;
    }

    .zen-hero__container {
        padding: 0 clamp(1rem, 7vw, 2.8rem);
    }

    .zen-hero__wrapper {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 6vw, 2.5rem);
    }

    .zen-hero__main {
        order: 1;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .zen-hero__title {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .zen-hero__title-highlight {
        font-size: clamp(1rem, 4vw, 1.4rem);
        letter-spacing: 0.28em;
    }

    .zen-hero__selectors {
        flex-direction: column;
        width: 100%;
    }

    .zen-hero__panel {
        max-width: none;
        justify-self: stretch;
        align-self: auto;
        order: 2;
        margin-top: 1.2rem;
    }

    .zen-hero__meta,
    .zen-hero__panel-meta,
    .zen-hero__tags {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .zen-hero__actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .zen-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .zen-hero__panel-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .zen-hero__seo-list {
        text-align: start;
    }

    .zen-hero__note,
    .zen-hero__tags {
        flex-direction: column;
        gap: 0.45rem;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .zen-hero::before,
    .zen-hero__shape,
    .zen-hero__orb {
        display: none;
    }

    .zen-hero__container {
        padding: 0 1.1rem 0.8rem;
    }

    .zen-hero__seo-list {
        font-size: 1rem;
        gap: 0.8rem;
    }

    .zen-hero__note,
    .zen-hero__tags {
        flex-direction: column;
        gap: 0.35rem;
    }

    .zen-hero__tags {
        margin-top: 0.6rem;
    }

    .zen-hero__panel {
        padding: 1.35rem;
    }

    .zen-hero__mobile-cards {
        grid-template-columns: 1fr;
    }

    .zen-hero__lead,
    .zen-hero__seo-list {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zen-hero__service {
        animation: none;
    }
}

.page-wrapper,
section,
.features-section,
.premium-deals-section,
.cta-section {
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}
/* ===== MODERN STATS SECTION ===== */
.modern-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.modern-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23cbd5e1" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23cbd5e1" opacity="0.1"/><circle cx="90" cy="30" r="0.5" fill="%23cbd5e1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.modern-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.modern-stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.modern-stats-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.modern-stats-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.modern-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.modern-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 50%, #3b82f6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
}

.modern-stat-card:hover::before {
    transform: scaleX(1);
}

.modern-stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.modern-stat-icon i {
    font-size: 2rem;
    color: #2563eb;
    transition: all 0.4s ease;
}

.modern-stat-card:hover .modern-stat-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: scale(1.1);
}

.modern-stat-card:hover .modern-stat-icon i {
    color: white;
    transform: scale(1.1);
}

.modern-stat-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.modern-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e40af;
    line-height: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.modern-stat-plus,
.modern-stat-percent,
.modern-stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-right: 4px;
}

.modern-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 12px;
}

/* Animation for counting numbers */
.modern-stat-card.animate .modern-stat-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-stats-section {
        padding: 60px 0;
    }
    
    .modern-stats-title {
        font-size: 2.5rem;
    }
    
    .modern-stats-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .modern-stat-card {
        padding: 30px 20px;
    }
    
    .modern-stat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .modern-stat-icon i {
        font-size: 1.8rem;
    }
    
    .modern-stat-number {
        font-size: 3rem;
    }
    
    .modern-stat-plus,
    .modern-stat-percent,
    .modern-stat-suffix {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .modern-stats-container {
        padding: 0 15px;
    }
    
    .modern-stats-title {
        font-size: 2rem;
    }
    
    .modern-stats-grid {
        max-width: 100%;
    }
    
    .modern-stat-card {
        padding: 25px 15px;
    }
    
    .modern-stat-number {
        font-size: 2.5rem;
    }
    
    .modern-stat-plus,
    .modern-stat-percent,
    .modern-stat-suffix {
        font-size: 1.5rem;
    }
}

/* ===== FEATURES SECTION STYLING ===== */
.features-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

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

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Responsive Design for Features */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-header {
        margin-bottom: 60px;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .features-title {
        font-size: 2rem;
    }
}

/* ===== AMAZING SINGLE TESTIMONIAL CAROUSEL ===== */
.amazing-testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.amazing-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="70" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="90" r="0.8" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>');
    animation: twinkle 20s infinite linear;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.amazing-testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.amazing-testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.amazing-testimonials-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amazing-testimonials-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-carousel-wrapper {
    position: relative;
}

.testimonial-main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-main-card.testimonial-animate-in .amazing-testimonial-content {
    animation: testimonialSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes testimonialSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.amazing-testimonial-content {
    text-align: center;
    width: 100%;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.quote-mark {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.quote-mark i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-rating .stars {
    font-size: 1.8rem;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.amazing-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 40px 0;
    font-style: italic;
    font-weight: 500;
    position: relative;
    padding: 0 20px;
}

.amazing-quote::before,
.amazing-quote::after {
    content: '"';
    font-size: 4rem;
    color: #e5e7eb;
    position: absolute;
    font-family: serif;
    line-height: 1;
}

.amazing-quote::before {
    top: -20px;
    right: -10px;
}

.amazing-quote::after {
    bottom: -40px;
    left: -10px;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid #2563eb;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2rem;
}

.author-details {
    text-align: right;
}

.author-name-large {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e40af;
    margin: 0 0 8px 0;
}

.author-role-large {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.author-company {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
}

.testimonial-decoration {
    margin-top: 30px;
}

.decoration-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.decoration-dots span {
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    animation: decorationPulse 2s infinite;
}

.decoration-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.decoration-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes decorationPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-nav-btn:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.testimonial-indicators {
    display: flex;
    gap: 12px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background: #2563eb;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.auto-play-control {
    position: absolute;
    top: 20px;
    left: 20px;
}

.play-pause-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.play-pause-btn:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.testimonial-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #64748b;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .amazing-testimonials-section {
        padding: 80px 0;
    }
    
    .amazing-testimonials-title {
        font-size: 2.5rem;
    }
    
    .amazing-testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-main-card {
        padding: 40px 30px;
        margin: 0 10px;
    }
    
    .amazing-quote {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .testimonial-author-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .author-details {
        text-align: center;
    }
    
    .author-avatar-large {
        width: 80px;
        height: 80px;
    }
    
    .avatar-fallback-large {
        font-size: 1.5rem;
    }
    
    .testimonial-nav-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .amazing-testimonials-container {
        padding: 0 15px;
    }
    
    .amazing-testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-main-card {
        padding: 30px 20px;
    }
    
    .amazing-quote {
        font-size: 1.1rem;
    }
    
    .testimonial-navigation {
        gap: 20px;
        margin-top: 30px;
    }
}

/* ===== MODERN DISCOUNT STYLING ===== */
.discount-badge-modern {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 15px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    animation: pulse-green 2s infinite;
    position: relative;
    overflow: hidden;
}

.discount-badge-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes pulse-green {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.modern-deal-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #10b981;
    position: relative;
    overflow: hidden;
}

.modern-deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.deal-header {
    margin-bottom: 25px;
}

.deal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 10px 0;
}

.deal-badge {
    background: #fbbf24;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.deal-pricing {
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.2rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 15px;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.deal-features {
    margin-bottom: 30px;
    text-align: right;
}

.feature-item {
    padding: 8px 0;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
}

.feature-item:last-child {
    border-bottom: none;
}

.deal-cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    width: 100%;
}

.deal-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-testimonials-section {
        padding: 80px 0;
    }
    
    .modern-testimonials-title {
        font-size: 2.5rem;
    }
    
    .modern-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modern-testimonial-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .modern-testimonials-container {
        padding: 0 15px;
    }
    
    .modern-testimonials-title {
        font-size: 2rem;
    }
    
    .modern-testimonials-grid {
        grid-template-columns: 1fr;
    }
}


.mobile-shell-trigger,
.mobile-shell-trigger__label {
    white-space: nowrap;
}

@media (min-width: 769px) {
    .mobile-shell-trigger {
        display: none !important;
    }
}

/*********************************
 * Live Chat Widget
 *********************************/
.gs-chat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 999px;
    padding: 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    box-shadow: 0 20px 40px rgba(76, 29, 149, 0.28);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Heebo', sans-serif;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}
.gs-chat-launcher:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(76, 29, 149, 0.35);
    background: linear-gradient(135deg, #1d4ed8, #9333ea);
}
.gs-chat-launcher-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
}
.gs-chat-launcher-icon i {
    line-height: 1;
}
.gs-chat-launcher-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.gs-chat-hidden {
    opacity: 0;
    pointer-events: none;
}

.gs-chat-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1498;
}
.gs-chat-backdrop-visible {
    opacity: 1;
    pointer-events: auto;
}

.gs-chat-panel {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: min(520px, calc(100vw - 32px));
    max-height: min(calc(100vh - var(--header-total-height, 160px) - 32px), 720px);
    min-height: 360px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.34);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(120%) scale(0.94);
    opacity: 0;
    transition: transform 0.32s ease, opacity 0.32s ease;
    z-index: 1499;
}
.gs-chat-panel.gs-chat-open {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gs-chat-panel--compact {
    max-height: min(calc(100vh - var(--header-total-height, 160px) - 56px), 600px);
}
.gs-chat-panel--compact .gs-chat-main {
    padding-bottom: 1.4rem;
}

.gs-chat-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 120% at 110% 110%, rgba(124, 58, 237, 0.12), transparent 55%);
}

.gs-chat-header {
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    position: relative;
}
.gs-chat-identity {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}
.gs-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.22);
    color: #1e3a8a;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}
.gs-chat-identity__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}
.gs-chat-identity__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.gs-chat-identity__subtitle {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.85;
}
.gs-chat-header__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-inline-start: auto;
}
.gs-chat-call {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.15rem 0.3rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.18);
}
.gs-chat-call.is-active {
    background: rgba(34, 197, 94, 0.25);
}
.gs-chat-call-button {
    border: none;
    background: rgba(37, 99, 235, 0.92);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.gs-chat-call-button i {
    font-size: 0.9rem;
}
.gs-chat-call-button:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateY(-1px);
}
.gs-chat-call-button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.gs-chat-call-button--end {
    background: rgba(220, 38, 38, 0.95);
}
.gs-chat-call-button--end:hover {
    background: rgba(185, 28, 28, 1);
}
.gs-chat-call-status {
    font-size: 0.72rem;
    color: #ffffff;
    opacity: 0.85;
}
.gs-chat-call-timer {
    font-size: 0.74rem;
    font-weight: 600;
    color: #ffffff;
}
.gs-chat-call audio {
    display: none;
}
.gs-chat-compact-toggle {
    border: none;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s ease;
}
.gs-chat-compact-toggle:hover {
    background: rgba(255, 255, 255, 0.32);
}
.gs-chat-presence {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.18rem 0.65rem;
    font-size: 0.74rem;
    color: #ffffff;
}
.gs-chat-presence__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24);
}
.gs-chat-presence.is-active .gs-chat-presence__dot {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}
.gs-chat-presence.is-typing .gs-chat-presence__dot {
    background: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
}
.gs-chat-presence.is-typing::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    animation: gs-chat-pulse 1.1s ease-in-out infinite;
}
.gs-chat-close {
    border: none;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 12px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.gs-chat-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.gs-chat-main {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-height: 0;
    background: linear-gradient(180deg, rgba(241, 245, 255, 0.85), rgba(255, 255, 255, 0.98));
    backdrop-filter: saturate(120%);
    overflow: hidden;
}
.gs-chat-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
}
.gs-chat-view-conversation {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.gs-chat-view-start {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.25rem;
    min-height: 0;
}
.gs-chat-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 16px 28px rgba(23, 37, 84, 0.12);
    padding: 1rem;
    display: grid;
    gap: 0.9rem;
}
.gs-chat-card__intro {
    display: grid;
    gap: 0.45rem;
    color: #1f2937;
}
.gs-chat-card__intro strong {
    font-size: 1.02rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #1e40af;
}
.gs-chat-card__intro strong span {
    font-size: 1.15rem;
}
.gs-chat-card__intro p {
    margin: 0;
    font-size: 0.85rem;
    color: #475569;
}
.gs-chat-alert {
    background: rgba(248, 113, 113, 0.12);
    color: #b91c1c;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
    margin: 0 0 0.6rem;
}
.gs-chat-alert.gs-chat-alert--info {
    background: rgba(37, 99, 235, 0.14);
    color: #1d4ed8;
}
.gs-chat-meta {
    padding: 0;
    margin-bottom: 0.6rem;
}

.gs-chat-meta-inline-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: #1e293b;
    margin: 0;
}
.gs-chat-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.24rem 0.55rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.12);
}
.gs-chat-meta-item i {
    color: #2563eb;
    font-size: 0.78rem;
}
.gs-chat-meta-item strong {
    color: #1d4ed8;
    font-weight: 700;
    font-size: 0.72rem;
}
.gs-chat-meta-value {
    font-weight: 600;
    color: #0f172a;
}

.gs-chat-meta-compact {
    display: grid;
    gap: 0.3rem;
    margin: 0;
    padding: 0.2rem 0;
    font-size: 0.78rem;
    color: #334155;
}
.gs-chat-meta-compact div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}
.gs-chat-meta-compact dt {
    font-weight: 700;
    color: #1d4ed8;
    margin: 0;
}
.gs-chat-meta-compact dd {
    margin: 0;
    font-weight: 600;
    color: #1e293b;
}

.gs-chat-meta-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.6rem;
}

.gs-chat-meta-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 0.65rem 0.85rem;
    display: grid;
    gap: 0.25rem;
    font-size: 0.78rem;
    color: #334155;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.gs-chat-meta-card strong {
    font-size: 0.78rem;
    color: #1d4ed8;
}

.gs-chat-start-form {
    display: grid;
    gap: 0.85rem;
}
.gs-chat-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(37, 99, 235, 0.06);
    padding: 0.25rem;
    border-radius: 999px;
}
.gs-chat-step {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s ease;
}
.gs-chat-step span {
    display: inline-flex;
    align-items: center;
}
.gs-chat-step.is-active {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(59, 130, 246, 0.28);
}
.gs-chat-step.is-complete {
    background: rgba(37, 99, 235, 0.18);
    color: #1d4ed8;
}
.gs-chat-user-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 14px;
    padding: 0.6rem 0.8rem;
    font-size: 0.86rem;
    color: #1f2937;
}
.gs-chat-user-summary.is-editing {
    background: rgba(248, 250, 252, 0.95);
}
.gs-chat-user-summary__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.gs-chat-user-label {
    font-size: 0.78rem;
    color: #2563eb;
    font-weight: 600;
}
.gs-chat-user-summary strong {
    font-size: 0.94rem;
}
.gs-chat-user-email {
    font-size: 0.78rem;
    color: #475569;
}
.gs-chat-edit-details {
    border: none;
    background: transparent;
    color: #2563eb;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
    padding: 0.25rem 0.35rem;
}
.gs-chat-start-body {
    display: grid;
    gap: 0.75rem;
}
.gs-chat-message-block {
    display: grid;
    gap: 0.4rem;
}
.gs-chat-quick-actions {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 16px;
    padding: 0.35rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.gs-chat-quick-actions.is-collapsed .gs-chat-quick-list {
    display: none;
}
.gs-chat-quick-actions--start {
    background: rgba(37, 99, 235, 0.06);
    border-style: dashed;
}
.gs-chat-quick-toggle {
    border: none;
    background: none;
    color: #1d4ed8;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.82rem;
}
.gs-chat-quick-toggle i {
    font-size: 0.78rem;
    transition: transform 0.2s ease;
}
.gs-chat-quick-toggle.is-open i {
    transform: rotate(180deg);
}
.gs-chat-quick-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.gs-chat-quick-button {
    border: none;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1e3a8a;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(30, 64, 175, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gs-chat-quick-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(30, 64, 175, 0.16);
}
.gs-chat-quick-button.is-inline {
    background: rgba(37, 99, 235, 0.16);
    color: #1d4ed8;
    box-shadow: none;
}
.gs-chat-contact-card {
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 14px;
    padding: 0.6rem 0.7rem;
    transition: opacity 0.2s ease;
}
.gs-chat-contact-card.is-collapsed {
    display: none;
}
.gs-chat-contact-grid {
    display: grid;
    gap: 0.65rem;
}
@media (min-width: 520px) {
    .gs-chat-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
}
.gs-chat-toggle-extra {
    border: none;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-weight: 600;
    font-size: 0.82rem;
    border-radius: 12px;
    padding: 0.45rem 0.65rem;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
}
.gs-chat-toggle-extra::before {
    content: '+';
    font-weight: 700;
}
.gs-chat-toggle-extra.is-open {
    background: rgba(37, 99, 235, 0.18);
}
.gs-chat-toggle-extra.is-open::before {
    content: '-';
}
.gs-chat-extra-fields {
    display: grid;
    gap: 0.55rem;
    background: rgba(248, 250, 252, 0.95);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 0.6rem 0.7rem;
}
.gs-chat-extra-fields.is-collapsed {
    display: none;
}
.gs-chat-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.gs-chat-field span {
    font-size: 0.84rem;
    font-weight: 600;
    color: #1f2937;
}
.gs-chat-field.is-required span::after {
    content: '*';
    color: #ef4444;
    margin-right: 0.2rem;
    font-size: 0.78rem;
}
.gs-chat-field input,
.gs-chat-field textarea {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    padding: 0.7rem 0.75rem;
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    background: rgba(248, 250, 252, 0.88);
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.gs-chat-field input:focus,
.gs-chat-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
    outline: none;
    background: #ffffff;
}
.gs-chat-field input.has-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
    background: #fff1f2;
}
.gs-chat-field textarea {
    min-height: 120px;
    resize: vertical;
}
.gs-chat-hint {
    margin: 0;
    font-size: 0.78rem;
    color: #64748b;
}
.gs-chat-start-actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.2rem;
}
.gs-chat-submit {
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    color: #ffffff;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 18px 30px rgba(79, 70, 229, 0.28);
}
.gs-chat-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 36px rgba(79, 70, 229, 0.32);
}
.gs-chat-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.gs-chat-submit.is-loading {
    position: relative;
}
.gs-chat-submit.is-loading::after {
    content: '';
    position: absolute;
    left: 1.15rem;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #ffffff;
    animation: gs-chat-spin 0.75s linear infinite;
}
.gs-chat-submit-text {
    font-size: 1rem;
}
.gs-chat-submit-subtext {
    font-size: 0.74rem;
    font-weight: 500;
    opacity: 0.9;
}
.gs-chat-privacy {
    margin: 0;
    font-size: 0.74rem;
    color: #94a3b8;
    text-align: center;
}
.gs-chat-start-form.gs-chat-form-loading {
    opacity: 0.7;
    pointer-events: none;
}
@keyframes gs-chat-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gs-chat-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.55;
    }
}

@media (max-width: 520px) {
    .gs-chat-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }
    .gs-chat-header__actions {
        justify-content: space-between;
    }
    .gs-chat-identity {
        width: 100%;
    }
}
@media (max-width: 640px) {
    .gs-chat-panel {
        width: calc(100vw - 18px);
        right: 9px;
        bottom: 16px;
        height: min(96vh, 760px);
        border-radius: 28px;
    }
    .gs-chat-panel--compact {
        height: min(88vh, 620px);
    }
    .gs-chat-messages {
        padding-inline: 0.35rem 0.1rem;
    }
}
@media (max-width: 440px) {
    .gs-chat-card {
        padding: 0.85rem;
    }
    .gs-chat-stepper {
        width: 100%;
        justify-content: center;
    }
    .gs-chat-message {
        font-size: 0.94rem;
        max-width: 92%;
    }
    .gs-chat-panel {
        right: 8px;
        bottom: 12px;
        width: calc(100vw - 16px);
    }
}

.gs-chat-conversation {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    min-height: 0;
}
.gs-chat-messages {
    list-style: none;
    padding: 0.6rem 0.4rem 0.7rem 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.gs-chat-message {
    border-radius: 16px;
    padding: 0.75rem 0.95rem;
    max-width: 82%;
    font-size: 0.95rem;
    line-height: 1.35;
    display: grid;
    gap: 0.3rem;
    position: relative;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}
.gs-chat-message-author {
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.7;
}
.gs-chat-message-body {
    word-break: break-word;
}
.gs-chat-message-body span {
    color: inherit;
}
.gs-chat-message-user {
    margin-left: auto;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
    border-bottom-left-radius: 8px;
    box-shadow: 0 18px 34px rgba(79, 70, 229, 0.28);
}
.gs-chat-message-agent {
    margin-right: auto;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), #ffffff);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #0f172a;
    border-bottom-right-radius: 8px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
}
.gs-chat-message-system {
    margin: 0 auto;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    text-align: center;
    border-radius: 12px;
}
.gs-chat-message-body a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}
.gs-chat-message-agent .gs-chat-message-body a {
    color: #2563eb;
}
.gs-chat-message-meta {
    font-size: 0.72rem;
    opacity: 0.6;
    text-align: left;
}
.gs-chat-message-empty {
    margin: auto;
    text-align: center;
    color: #6b7280;
}

.gs-chat-typing {
    font-size: 0.82rem;
    color: #2563eb;
}

.gs-chat-closed {
    margin: 0.75rem 0;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(148, 163, 184, 0.18);
    color: #1f2937;
    text-align: center;
    display: grid;
    gap: 0.55rem;
    font-size: 0.88rem;
}
.gs-chat-closed p {
    margin: 0;
}
.gs-chat-new-session {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 18px rgba(37, 99, 235, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gs-chat-new-session:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 24px rgba(37, 99, 235, 0.24);
}

.gs-chat-history-open,
.gs-chat-history-back {
    border: 1px solid rgba(37, 99, 235, 0.28);
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
}
.gs-chat-history-open:hover,
.gs-chat-history-back:hover {
    background: rgba(37, 99, 235, 0.16);
}

.gs-chat-message-form {
    display: flex;
    align-items: flex-end;
    gap: 0.65rem;
}
.gs-chat-message-form textarea {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 16px;
    padding: 0.75rem 0.9rem;
    font-family: 'Heebo', sans-serif;
    font-size: 0.94rem;
    background: #f8fafc;
    resize: none;
    min-height: 68px;
    flex: 1;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}
.gs-chat-message-form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
    background: #ffffff;
}
.gs-chat-message-form button {
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
    padding: 0.72rem 1.15rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gs-chat-message-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.28);
}

.gs-chat-footer {
    padding: 0.85rem 1.25rem 1.25rem;
    display: flex;
    justify-content: flex-end;
}
.gs-chat-end {
    border: none;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    font-weight: 600;
    cursor: pointer;
}

.gs-chat-toast {
    position: fixed;
    bottom: 110px;
    right: 24px;
    background: #ffffff;
    color: #0f172a;
    border-radius: 18px;
    padding: 0.85rem 1rem 0.85rem 1.2rem;
    display: grid;
    gap: 0.25rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(148, 163, 184, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 1097;
    cursor: pointer;
}
.gs-chat-toast.gs-chat-toast--visible {
    opacity: 1;
    transform: translateY(0);
}
.gs-chat-toast strong {
    font-size: 0.92rem;
    color: #1e3a8a;
}
.gs-chat-toast span {
    font-size: 0.85rem;
    color: #475569;
}
.gs-chat-toast button {
    position: absolute;
    top: 8px;
    left: 8px;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #475569;
    cursor: pointer;
}

.gs-chat-tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 999px;
    padding: 0.3rem;
    width: fit-content;
}
.gs-chat-tabs button {
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-weight: 600;
    font-size: 0.82rem;
    color: #1d4ed8;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.gs-chat-tabs button.is-active {
    background: #ffffff;
    color: #1e40af;
    box-shadow: 0 12px 18px rgba(37, 99, 235, 0.16);
}
.gs-chat-tab-panels {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.gs-chat-tab-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 0;
}
.gs-chat-tab-panel[hidden] {
    display: none !important;
}
.gs-chat-history {
    display: grid;
    gap: 0.6rem;
    overflow-y: auto;
    max-height: 100%;
    padding-inline-end: 0.2rem;
}
.gs-chat-history-empty {
    font-size: 0.86rem;
    color: #64748b;
}
.gs-chat-history-item {
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.4rem 0.55rem;
}
.gs-chat-history-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.45rem;
    color: #1f2937;
}
.gs-chat-history-item summary::-webkit-details-marker {
    display: none;
}
.gs-chat-history-item summary strong {
    font-size: 0.9rem;
}
.gs-chat-history-item summary span {
    font-size: 0.78rem;
    color: #475569;
}
.gs-chat-history-body {
    margin-top: 0.5rem;
    display: grid;
    gap: 0.45rem;
}
.gs-chat-history-message {
    border-radius: 12px;
    padding: 0.55rem 0.65rem;
    background: rgba(37, 99, 235, 0.06);
    font-size: 0.82rem;
    color: #1f2937;
    display: grid;
    gap: 0.35rem;
}
.gs-chat-history-message.is-agent {
    background: rgba(37, 99, 235, 0.12);
}
.gs-chat-history-message.is-customer {
    background: rgba(16, 185, 129, 0.12);
}
.gs-chat-history-message.is-system {
    font-style: italic;
}
.gs-chat-history-message-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #475569;
}
.gs-chat-history-message-body {
    word-break: break-word;
}
.gs-chat-history-message.is-empty {
    text-align: center;
    color: #94a3b8;
}

/* --------------------------------
   Auth Experience 2.0
-------------------------------- */
.auth-shell {
    position: relative;
    min-height: calc(100vh - var(--header-total-height, 0px));
    padding: calc(var(--header-total-height, 0px) + clamp(2.5rem, 5vw, 4.2rem)) clamp(1.2rem, 4vw, 3.8rem) clamp(2.5rem, 6vw, 4rem);
    background:
        radial-gradient(circle at 12% 12%, rgba(59, 130, 246, 0.18), transparent 55%),
        radial-gradient(circle at 88% 10%, rgba(124, 58, 237, 0.16), transparent 55%),
        linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Heebo', sans-serif;
    color: #0f172a;
}
.auth-shell__inner {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    gap: clamp(1.6rem, 3vw, 2.8rem);
}
.auth-shell__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    gap: 0.55rem;
}
.auth-shell__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: inherit;
    text-decoration: none;
}
.auth-shell__logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.auth-shell__subtitle {
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
    max-width: 460px;
}

.auth-panel {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 36px 74px rgba(15, 23, 42, 0.16);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
    overflow: hidden;
}
.auth-panel__main {
    padding: clamp(2.2rem, 4.6vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.auth-panel__title {
    display: grid;
    gap: 0.75rem;
}
.auth-panel__title h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
}
.auth-panel__title p {
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
}
.auth-panel__footer {
    margin-top: auto;
    font-size: 0.92rem;
    color: #475569;
}
.auth-panel__footer a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.auth-panel__footer a:hover {
    text-decoration: underline;
}

.auth-panel__aside {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(124, 58, 237, 0.92));
    color: #f8fafc;
    padding: clamp(2rem, 4.2vw, 2.8rem);
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.auth-panel__aside h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 700;
}
.auth-panel__aside p {
    margin: 0;
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.94rem;
    line-height: 1.6;
}
.auth-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.05rem;
}
.auth-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.94rem;
    line-height: 1.55;
}
.auth-feature-list i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bfdbfe;
    font-size: 0.95rem;
}
.auth-panel__aside-footer {
    margin-top: auto;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.8);
}

.auth-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.auth-form {
    display: grid;
    gap: 1.05rem;
}
.auth-grid {
    display: grid;
    gap: 1rem;
}
.auth-grid--two {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.auth-field {
    display: grid;
    gap: 0.45rem;
}
.auth-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}
.auth-input,
.auth-select,
.auth-textarea {
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 14px;
    background: #f8fafc;
    padding: 0.85rem 1rem;
    font-size: 0.96rem;
    font-family: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.auth-input:focus,
.auth-select:focus,
.auth-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
    background: #ffffff;
    outline: none;
}
.auth-textarea {
    min-height: 120px;
    resize: vertical;
}

.auth-form__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
}
.auth-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}
.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}
.auth-form__options a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
.auth-form__options a:hover {
    text-decoration: underline;
}

.auth-form__captcha {
    display: flex;
    justify-content: center;
}

.auth-button {
    border: none;
    border-radius: 14px;
    padding: 0.95rem 1.1rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.auth-button i {
    margin-left: 0.5rem;
}
.auth-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}
.auth-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.auth-message {
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.auth-message--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.24);
    color: #b91c1c;
}
.auth-message--success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.24);
    color: #047857;
}

@media (max-width: 768px) {
    .top-promo-bar {
        padding: 0.35rem 0;
        font-size: 0.82rem;
    }
    .promo-content {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        text-align: center;
        padding: 0 1.1rem;
    }
    .promo-left {
        justify-content: center;
        text-align: center;
        gap: 0.35rem;
    }
    .promo-left .promo-offer,
    .promo-left .promo-timer {
        justify-content: center;
        width: 100%;
        max-width: 320px;
    }
    .promo-right {
        width: 100%;
        justify-content: flex-start;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    .promo-links {
        width: 100%;
        overflow-x: auto;
        gap: 0.35rem;
        padding: 0.3rem 0.3rem 0.35rem;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .promo-links::-webkit-scrollbar {
        height: 0;
    }
    .promo-link {
        flex: 0 0 auto;
        scroll-snap-align: center;
        white-space: nowrap;
        padding: 0.3rem 0.6rem;
    }
    .promo-account,
    .promo-contact {
        width: 100%;
        justify-content: center;
        gap: 0.35rem;
        flex-wrap: wrap;
    }
    .promo-account {
        padding: 0.35rem 0.45rem;
    }
    .promo-account .promo-cart {
        padding: 0.35rem 0.55rem;
    }
}

@media (max-width: 480px) {
    .promo-content {
        padding: 0 0.85rem;
        gap: 0.5rem;
    }
    .promo-links {
        gap: 0.3rem;
    }
}

.hp-field {
    position: absolute;
    inset-inline-start: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .auth-panel {
        grid-template-columns: 1fr;
    }
    .auth-panel__aside {
        order: -1;
        border-radius: 0;
    }
    .auth-shell__header {
        align-items: center;
        text-align: center;
    }
    .auth-shell__subtitle {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .auth-shell {
        padding: calc(var(--header-total-height, 0px) + 2rem) 1.2rem 2rem;
    }
    .auth-panel__main {
        padding: 1.8rem 1.5rem 2rem;
    }
    .auth-panel__aside {
        padding: 1.6rem 1.4rem;
    }
}

@media (max-width: 640px) {
    .gs-chat-panel {
        right: 50%;
        bottom: 8px;
        width: calc(100vw - 16px);
        height: calc(100vh - var(--header-total-height, 140px) - 16px);
        max-height: calc(100vh - var(--header-total-height, 140px) - 16px);
        transform: translate(50%, 110%) scale(0.95);
        border-radius: 24px;
    }
    .gs-chat-panel.gs-chat-open {
        transform: translate(50%, 0) scale(1);
    }
    .gs-chat-main {
        padding: 1.2rem 1.2rem 1.3rem;
    }
    .gs-chat-launcher {
        right: 12px;
        bottom: 12px;
        width: 56px;
        height: 56px;
    }
}

@keyframes promo-link-ping {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-1px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}
