:root {
    --bg-dark: #020617;
    --navy-dark: #0f172a;
    --navy-light: #1e293b;
    --cyan: #00f2ff;
    --pink: #ff00e5;
    --purple: #7d2ae8;
    --purple-light: #a855f7;
    --yellow: #facc15;
    --white: #f8fafc;
    --glass: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background: var(--bg-dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.logo, .brand-name {
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
}

.logo-g {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

/* LANGUAGE SWITCHER */
.lang-switcher a.active {
    color: var(--cyan) !important;
    border-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.lang-switcher-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
}

.lang-switcher-header a {
    text-decoration: none;
    color: #94a3b8 !important;
    transition: 0.3s;
}

.lang-switcher-header a.active {
    color: var(--cyan) !important;
    text-shadow: 0 0 10px var(--cyan);
}

.lang-switcher-header .sep {
    color: rgba(255, 255, 255, 0.1);
}

.lang-switcher-header a:hover:not(.active) {
    color: white !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
    box-shadow: 0 0 5px var(--cyan);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-menu {
    font-size: 2.5rem;
    color: var(--cyan);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.3s;
}

.mobile-nav a:hover {
    color: var(--cyan);
    padding-left: 10px;
}

.mobile-btn {
    margin-top: 20px;
    width: fit-content;
}

/* HERO RESTRUCTURED */
.hero {
    padding: 140px 0 80px;
    background: radial-gradient(circle at center, #0a1120 0%, var(--bg-dark) 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-sub-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
}

.hero-geo-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-geo-text strong {
    color: var(--white);
    text-decoration: underline var(--cyan);
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-logo-img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 0 30px rgba(125, 42, 232, 0.4));
    animation: floating 3s ease-in-out infinite;
}

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

.hero-right {
    background: var(--glass);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.avatar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar-img {
    width: 60px;
    height: 60px;
}

.pc-icon {
    filter: drop-shadow(0 0 10px var(--cyan));
    object-fit: contain;
}

.avatar-header h3 {
    font-size: 1rem;
    color: var(--white);
}

.hero-right p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.mini-features p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--white);
}

/* FEATURES REIMAGINED */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -40px;
}

.feature-card {
    background: #0a1120;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.feature-icon-wrapper {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon-wrapper img {
    height: 100%;
    filter: drop-shadow(0 0 10px var(--cyan));
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.highlight {
    color: var(--cyan) !important;
    font-weight: 700;
}

.process-box {
    margin-top: 10px;
}

.process-box p {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    font-style: italic;
}

/* VIDEO SECTION */
.video-preview {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, #0a1120 0%, var(--bg-dark) 100%);
}

.video-main-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 5px var(--cyan));
}

.video-sub-title {
    font-size: 1.2rem;
    color: var(--cyan);
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border: 3px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 242, 255, 0.1);
}

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

/* STEPS SECTION */
.steps-section {
    padding: 60px 0 20px; /* Reduced bottom padding */
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 30px; /* Reduced margin */
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--step-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--step-color);
    box-shadow: inset 0 0 15px var(--step-color), 0 0 20px rgba(0,0,0,0.5);
    background: rgba(15, 23, 42, 0.5);
}

.step-item p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    max-width: 180px;
    line-height: 1.3;
}

.step-item span {
    color: var(--cyan);
    text-decoration: underline;
}

.step-arrow {
    font-size: 2rem;
    color: #334155;
    font-family: serif;
}

.promo-info {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Updated Responsive for Steps */
@media (max-width: 768px) {
    .steps-section {
        display: none;
    }
}

/* PRICING */
.pricing {
    padding: 60px 0 40px;
    background: radial-gradient(circle at bottom, #0f172a 0%, var(--bg-dark) 100%);
}

.price-flag {
    width: 24px;
    height: auto;
    vertical-align: middle;
    margin-left: 5px;
    border-radius: 2px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 900;
}

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

.pricing-card {
    background: var(--navy-dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 20px; /* Reduced vertical padding */
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-color);
    box-shadow: 0 0 15px var(--card-color);
}

.pricing-card.featured {
    border: 2px solid var(--cyan);
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.05) 0%, var(--navy-dark) 100%);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--cyan);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 40px;
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--cyan);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-color);
}

.card-icon {
    font-size: 2rem; /* Reduced icon size */
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.4rem; /* Increased */
    margin-bottom: 10px;
}

.card-price {
    font-size: 1.6rem; /* Increased */
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.card-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
    flex-grow: 1;
}

.card-features li {
    padding: 6px 0; /* Adjusted spacing */
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem; /* Increased readability */
    line-height: 1.4;
}

.card-features li::before {
    content: none; /* Removed redundant checkmark */
}

.btn-buy {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--card-color);
    color: var(--bg-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-buy:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 20px var(--card-color);
}

/* WORLD AVAILABILITY */
.world-availability {
    padding: 60px 0 40px;
    background: radial-gradient(circle at center, #0a1120 0%, var(--bg-dark) 100%);
    position: relative;
}

.world-availability::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 1;
}

.world-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    background: rgba(15, 23, 42, 0.4);
    padding: 40px 60px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.map-wrapper {
    position: relative;
    width: 100%;
}

.base-map {
    width: 100%;
    filter: invert(1) brightness(0.8) sepia(1) hue-rotate(185deg) saturate(1.5);
    opacity: 0.6; /* Increased visibility */
}

/* Pulsing Pin Animation */
.pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--pink);
    z-index: 10;
}

.pin::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 0, 229, 0.5); /* Stronger pulse */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite ease-out;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

.world-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.world-text p {
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.6;
    text-align: left;
    column-count: 2;
    column-gap: 20px;
}

.warning-note-map {
    margin-top: 20px;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--pink);
    font-weight: 700;
    text-align: center;
    width: 100%;
}

@media (max-width: 1024px) {
    .world-layout {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
}

/* FOOTER */
.footer {
    padding: 60px 0; /* Reduced top padding */
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Softer line */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px; /* Reduced */
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.legal-column {
    align-items: flex-end;
}

.footer-title {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 15px; /* Significantly reduced as marked in red */
    letter-spacing: 1.5px;
}

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

.social-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.footer-list li {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.footer-list li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.footer-list li a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
    padding-left: 5px;
}

.foot-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px var(--cyan));
}

.italic-text {
    font-style: italic;
    font-weight: 700;
    color: var(--white) !important;
}

.legal-text {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.6;
}

.coupon-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 5px;
}

.coupon-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--white);
}

.coupon-code {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
}

.coupon-code span {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.coupon-note {
    font-size: 0.85rem;
    font-style: italic;
    color: #475569;
}

/* BG GLOW EFFECTS */
.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(125, 42, 232, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.line-decor {
    position: relative;
}

.line-decor::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

/* GAMER THEME UTILS */
.gamer-theme {
    cursor: default;
}

.highlight-text {
    color: var(--cyan);
    font-weight: 800;
}

/* FIX FOR PRICING RESPONSIVE */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #475569;
    font-size: 0.9rem;
}

/* RESPONSIVE REFINEMENTS */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-left { order: 1; }
    .hero-center { order: 2; }
    .hero-right { order: 3; }
    
    .main-logo-img {
        max-width: 320px;
    }
    
    .navbar .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex; /* Show hamburger on mobile/tablet */
    }
    
    .btn-login {
        display: none; /* Hide top login to avoid clutter, keep it in mobile-menu */
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-sub-title {
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02);
    }
    
    .video-main-title {
        font-size: 1.4rem;
        padding: 0 10px;
    }
    
    .video-sub-title {
        font-size: 1rem;
        padding: 0 10px;
    }

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

    .social-list-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 15px;
    }

    .world-availability {
        display: none; /* Hide map and countries list on mobile */
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        padding: 0 10px;
    }
    
    .btn-login {
        padding: 5px 15px;
        font-size: 0.8rem;
    }
}
