/* ==========================================================================
   GOOK - PUBG MOBILE ESPORTS & GAMING THEME
   High-Octane Tactical HUD, Glassmorphism, and Cyberpunk Military Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&family=Rajdhani:wght@500;600;700;800&family=Teko:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
    --bg-main: #090c13;
    --bg-surface: #0f1523;
    --bg-surface-elevated: #162032;
    --bg-surface-overlay: rgba(18, 26, 42, 0.78);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 240, 255, 0.28);
    
    /* PUBG Iconic Accents */
    --pubg-gold: #f59e0b;
    --pubg-gold-bright: #fbbf24;
    --pubg-gold-glow: rgba(245, 158, 11, 0.4);
    --pubg-red: #ef4444;
    --pubg-red-dark: #b91c1c;
    --pubg-red-glow: rgba(239, 68, 68, 0.45);
    --pubg-cyan: #00f0ff;
    --pubg-cyan-dark: #0284c7;
    --pubg-cyan-glow: rgba(0, 240, 255, 0.4);
    --pubg-green: #10b981;
    --pubg-green-glow: rgba(16, 185, 129, 0.4);
    --pubg-purple: #8b5cf6;
    --pubg-purple-glow: rgba(139, 92, 246, 0.4);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Fonts */
    --font-heading: 'Rajdhani', 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Teko', 'Rajdhani', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    
    --container-width: 1240px;
    --radius-hud: 12px;
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(ellipse 90% 50% at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
        radial-gradient(circle 800px at 90% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle 600px at 10% 60%, rgba(239, 68, 68, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, #090c13 0%, #0c111a 50%, #080a10 100%);
    background-attachment: fixed;
}

/* Material symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
}

/* Background HUD textures */
.hud-grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.18;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 95% 85% at 50% 35%, black 20%, transparent 85%);
}

.hud-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Tactical Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 5;
}

/* Top Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #1b0a0a 0%, #831818 35%, #b91c1c 50%, #831818 65%, #1b0a0a 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.4);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 60;
    overflow: hidden;
    text-transform: uppercase;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 60%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: sweep 4s infinite linear;
}

@keyframes sweep {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
}

.announcement-badge {
    background: #ef4444;
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

/* Header Navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 15, 25, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
    transition: background 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.25rem;
    gap: 1.5rem;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.brand-wrapper:hover {
    transform: scale(1.02);
}

.brand-logo-frame {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, var(--pubg-gold), var(--pubg-cyan));
    box-shadow: 0 0 16px var(--pubg-gold-glow);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.brand-name span.highlight {
    color: var(--pubg-gold);
    text-shadow: 0 0 12px var(--pubg-gold-glow);
}

.brand-tagline {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pubg-cyan);
    margin-top: 0.15rem;
}

/* Nav Menu Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

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

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    filter: brightness(1.1);
}

/* Tactical HUD Corner Elements (PUBG brackets) */
.hud-corner-box {
    position: relative;
}

.hud-corner-box::before,
.hud-corner-box::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    border-color: var(--pubg-gold);
    z-index: 10;
}

.hud-corner-box::before {
    top: -2px;
    left: -2px;
    border-top: 2px solid var(--pubg-gold);
    border-left: 2px solid var(--pubg-gold);
}

.hud-corner-box::after {
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid var(--pubg-gold);
    border-right: 2px solid var(--pubg-gold);
}

/* ==========================================================================
   HERO SECTION (High-Intensity PUBG Battlefield)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 4rem 0 5.5rem;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: 5%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 3.5rem;
    align-items: center;
}

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

.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pubg-gold-bright);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pubg-gold);
    box-shadow: 0 0 10px var(--pubg-gold);
    animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-title span.glow-gold {
    color: var(--pubg-gold);
    text-shadow: 0 0 24px var(--pubg-gold-glow);
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 34rem;
}

/* Call to Action Buttons Stack */
.hero-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 440px;
}

.pubg-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 1.6rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    will-change: transform, box-shadow;
    overflow: hidden;
}

.pubg-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.pubg-btn:hover::before {
    left: 140%;
}

.pubg-btn:hover {
    transform: translateY(-2.5px) scale(1.01);
    filter: brightness(1.08);
}

.pubg-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Button Variants */
.pubg-btn-cyan {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #1d4ed8 100%);
    box-shadow: 0 8px 24px var(--pubg-cyan-glow);
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.pubg-btn-cyan:hover {
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.6);
}

.pubg-btn-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 52%, #c026d3 100%);
    box-shadow: 0 8px 24px var(--pubg-purple-glow);
    border: 1px solid rgba(192, 132, 252, 0.4);
}

.pubg-btn-purple:hover {
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
}

.pubg-btn-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 60%, #15803d 100%);
    box-shadow: 0 8px 24px var(--pubg-green-glow);
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.pubg-btn-green:hover {
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
}

.pubg-btn-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 60%, #b45309 100%);
    box-shadow: 0 8px 24px var(--pubg-gold-glow);
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.pubg-btn-gold:hover {
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
}

.pubg-btn-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 60%, #991b1b 100%);
    box-shadow: 0 8px 24px var(--pubg-red-glow);
    border: 1px solid rgba(248, 113, 113, 0.4);
}

.pubg-btn-red:hover {
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.6);
}

/* ==========================================================================
   HERO CAROUSEL (Tactical HUD Screen Display)
   ========================================================================== */
.hero-visual-wrapper {
    position: relative;
}

.hero-visual-backdrop {
    position: absolute;
    inset: -12px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(0, 240, 255, 0.15));
    filter: blur(24px);
    opacity: 0.6;
    pointer-events: none;
}

.tactical-frame {
    position: relative;
    background: #0d131f;
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 240, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.tactical-frame-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #070a10;
}

/* Tactical HUD Top Bar on Carousel */
.frame-hud-header {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 25;
    pointer-events: none;
}

.hud-tag {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: var(--pubg-gold-bright);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hud-crosshair-badge {
    color: var(--pubg-cyan);
    font-family: monospace;
    font-size: 0.6875rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 320px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.03);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 5;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide Caption Overlay */
.slide-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 1.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 10, 16, 0.85) 45%, #070a10 100%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.slide-caption-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
}

.slide-caption-sub {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Nav Arrows */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(13, 19, 31, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

.carousel-nav-btn:hover {
    background: var(--pubg-gold);
    color: #000;
    border-color: var(--pubg-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px var(--pubg-gold-glow);
}

.carousel-nav-btn.prev {
    left: 12px;
}

.carousel-nav-btn.next {
    right: 12px;
}

/* Carousel Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.carousel-dot {
    width: 12px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 32px;
    background: var(--pubg-gold);
    box-shadow: 0 0 10px var(--pubg-gold-glow);
}

/* ==========================================================================
   SERVICES & ADVANTAGES SECTION
   ========================================================================== */
.section-services {
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pubg-cyan);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-hud);
    padding: 1.85rem 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pubg-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--pubg-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(4deg);
    background: var(--pubg-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--pubg-cyan-glow);
}

.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--pubg-gold-bright);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.service-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   SHOWCASE / ACCOUNTS SECTION
   ========================================================================== */
.section-showcase {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.7) 0%, rgba(16, 22, 36, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.showcase-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-hud);
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--pubg-gold-glow);
}

.showcase-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #080c14;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img {
    transform: scale(1.06);
}

.showcase-rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.showcase-category-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 21, 35, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pubg-cyan);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    backdrop-filter: blur(6px);
}

.showcase-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.showcase-features-list {
    list-style: none;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.showcase-feature-item {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-feature-item .material-symbols-outlined {
    font-size: 1rem;
    color: var(--pubg-gold);
}

.showcase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.showcase-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pubg-gold-bright);
}

.btn-showcase-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-showcase-inquiry:hover {
    background: #10b981;
    transform: scale(1.03);
    box-shadow: 0 0 15px var(--pubg-green-glow);
}

/* ==========================================================================
   FAQ SECTION (Tactical Accordion)
   ========================================================================== */
.section-faq {
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-hud);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.open {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.faq-question-btn {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question-btn:hover {
    color: var(--pubg-gold-bright);
}

.faq-icon-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--pubg-gold);
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon-toggle {
    transform: rotate(180deg);
    background: var(--pubg-gold);
    color: #000;
}

.faq-answer {
    padding: 0 1.5rem 1.35rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.25rem;
    padding-top: 1rem;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FOOTER (Esports Clean Layout)
   ========================================================================== */
.site-footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #090d16 0%, #05070c 100%);
    padding: 3.5rem 0 2.5rem;
    overflow: hidden;
}

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

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

.footer-logo {
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copy-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--pubg-gold);
}

/* ==========================================================================
   FLOATING QUICK CONTACT STACK
   ========================================================================== */
.quick-contact-stack {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.5rem;
    border-radius: 1.25rem;
    background: rgba(10, 15, 26, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.quick-contact-btn {
    position: relative;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.quick-contact-btn.whatsapp {
    background: linear-gradient(135deg, #2ee777 0%, #16a34a 100%);
    border: 1px solid rgba(74, 222, 128, 0.5);
}

.quick-contact-btn.telegram {
    background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%);
    border: 1px solid rgba(56, 189, 248, 0.5);
}

.quick-contact-btn::after {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 0.85rem);
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: rgba(9, 13, 23, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.quick-contact-btn:hover {
    transform: translateY(-3px) scale(1.08);
    filter: brightness(1.15);
}

.quick-contact-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile First Adjustments)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-eyebrow-pill {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-stack {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .announcement-bar {
        font-size: 0.75rem;
    }
    
    .carousel-container {
        min-height: 240px;
    }
    
    .quick-contact-stack {
        bottom: 1rem;
        left: 1rem;
    }
    
    .quick-contact-btn {
        width: 2.85rem;
        height: 2.85rem;
    }
}
