/* ==========================================================================
   Tech Bites Hub - Official Premium Gaming Design System & Stylesheet
   Ultra-Premium Visual Upgrades: Organized App Powers Grid, Organized Creator & Hero Layouts,
   Flowing Border Gradients, Spinning Neon Founder Ring, and Ambient Glow Effects
   ========================================================================== */

:root {
    --brand-primary: #F39125;
    --brand-hover: #FF9A28;
    --brand-pressed: #D97812;
    --brand-soft: #3A2513;

    --bg-dark: #080A0F;
    --bg-surface: #0D1117;
    --bg-card: rgba(21, 26, 34, 0.75);
    --bg-card-hover: rgba(32, 41, 56, 0.85);

    --border-color: rgba(42, 52, 66, 0.6);
    --border-strong: rgba(59, 70, 88, 0.8);
    --border-orange: rgba(243, 145, 37, 0.4);

    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;

    --cyan-accent: #00E5FF;
    --red-accent: #FF1744;
    --green-accent: #22C55E;
    --purple-accent: #A855F7;

    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    --glow-orange: 0 0 25px rgba(243, 145, 37, 0.35);
    --glow-cyan: 0 0 25px rgba(0, 229, 255, 0.35);
}

/* Custom Cyber Gaming Scrollbars for Page & Elements */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #080A0F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-hover));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(243, 145, 37, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-hover);
}

/* Custom Horizontal Scrollbar for Screenshot Showcase Tabs */
.showcase-tabs::-webkit-scrollbar {
    height: 6px;
}

.showcase-tabs::-webkit-scrollbar-track {
    background: rgba(13, 17, 23, 0.8);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.showcase-tabs::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-hover));
    border-radius: 4px;
    box-shadow: var(--glow-orange);
}

.showcase-tabs::-webkit-scrollbar-thumb:hover {
    background: var(--brand-hover);
}

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
}

/* Background Particle Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, #FF9A28 0%, #F39125 50%, #FF5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-cyan {
    background: linear-gradient(135deg, #00E5FF 0%, #0088FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-orange { color: var(--brand-hover); text-shadow: 0 0 12px rgba(243, 145, 37, 0.6); }
.glow-cyan { color: var(--cyan-accent); text-shadow: 0 0 12px rgba(0, 229, 255, 0.6); }
.glow-green { color: var(--green-accent); text-shadow: 0 0 12px rgba(34, 197, 94, 0.6); }

/* Navigation Bar - Fixed Clean Layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.8rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(243, 145, 37, 0.6));
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: 0.5px;
}

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

.brand-tag {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.nav-link i {
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-hover);
    background: rgba(243, 145, 37, 0.08);
}

.nav-link:hover i, .nav-link.active i {
    color: var(--brand-primary);
    text-shadow: 0 0 8px rgba(243, 145, 37, 0.5);
}

/* Nav Social Icons */
.nav-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social.github:hover {
    color: #fff;
    background: #2ea44f;
    border-color: #2ea44f;
    box-shadow: 0 0 12px rgba(46, 164, 79, 0.6);
    transform: translateY(-2px);
}

.nav-social.yt:hover {
    color: #fff;
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.nav-social.discord:hover {
    color: #fff;
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 0 12px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

/* Primary Download Button in Nav */
.nav-btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-hover)) !important;
    color: #fff !important;
    padding: 0.5rem 1.1rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    box-shadow: var(--glow-orange);
    border: none !important;
}

.nav-btn-primary i {
    color: #fff !important;
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(243, 145, 37, 0.65);
    background: linear-gradient(135deg, var(--brand-hover), var(--brand-primary)) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: 7rem;
    padding-bottom: 4rem;
    position: relative;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--brand-soft);
    border: 1px solid var(--border-orange);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-hover);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(243, 145, 37, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(243, 145, 37, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(243, 145, 37, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 145, 37, 0); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Perfectly Organized 4-Item Grid Ribbon */
.hero-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    background: rgba(13, 17, 23, 0.85);
    border: 1px solid var(--border-orange);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), var(--glow-orange);
    max-width: 600px;
}

.ribbon-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    text-align: center;
}

.ribbon-grid-item i {
    font-size: 0.9rem;
}

/* Organized CTA Action Box */
.hero-cta-box {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
    max-width: 600px;
}

.btn-full-width {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.8rem;
}

.hero-social-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.hero-social-bar .btn {
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    width: 100%;
}

/* Buttons Base */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-primary {
    position: relative;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-hover));
    color: #fff;
    padding: 0.85rem 1.6rem;
    font-size: 1.1rem;
    box-shadow: 0 0 25px rgba(243, 145, 37, 0.4);
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(243, 145, 37, 0.6);
}

.btn-hero-primary .btn-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.btn-hero-primary .main-label { font-size: 1.15rem; line-height: 1.1; font-weight: 800; }
.btn-hero-primary .sub-label { font-size: 0.72rem; opacity: 0.9; font-family: var(--font-body); font-weight: 500; }

.btn-github {
    background: linear-gradient(135deg, #1f2328, #24292e);
    border: 1px solid var(--border-color);
    color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.btn-github:hover {
    transform: translateY(-2px);
    border-color: #2ea44f;
    box-shadow: 0 0 20px rgba(46, 164, 79, 0.5);
    background: linear-gradient(135deg, #24292e, #2ea44f);
}

.btn-youtube {
    background: linear-gradient(135deg, #CC0000, #FF0000);
    color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.65);
}

.btn-discord {
    background: linear-gradient(135deg, #4752C4, #5865F2);
    color: #fff !important;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.65);
}

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-item i { color: var(--green-accent); }

/* Option A: 3D Interactive Tilted Glassmorphic App Window Showcase */
.hero-showcase-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.hero-aura-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(243, 145, 37, 0.25) 0%, rgba(0, 229, 255, 0.15) 50%, rgba(8, 10, 15, 0) 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(30px);
}

.hero-app-window {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #0d1117;
    border: 1px solid var(--border-orange);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), var(--glow-orange);
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.window-titlebar {
    background: #161b22;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.window-controls {
    display: flex;
    gap: 0.4rem;
}

.w-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.w-dot.red { background: #ff5f56; }
.w-dot.yellow { background: #ffbd2e; }
.w-dot.green { background: #27c93f; }

.window-title {
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.window-body {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.window-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Floating Holographic Badges */
.holo-badge {
    position: absolute;
    z-index: 10;
    background: rgba(13, 17, 23, 0.92);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.holo-badge i { font-size: 1.4rem; }

.h-title { display: block; font-size: 0.65rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; }
.h-val { display: block; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 800; color: var(--text-primary); }

.badge-voltx {
    top: -15px;
    right: -15px;
    border-color: var(--border-orange);
    box-shadow: var(--glow-orange);
}

.badge-latency {
    bottom: 30px;
    left: -25px;
    border-color: var(--cyan-accent);
    box-shadow: var(--glow-cyan);
}

.badge-free {
    bottom: -18px;
    right: 20px;
    border-color: var(--green-accent);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
}

/* Floating Keyframe Animations */
.float-anim-1 { animation: floatBadge 3.5s infinite ease-in-out alternate; }
.float-anim-2 { animation: floatBadge 4s infinite ease-in-out alternate-reverse; }
.float-anim-3 { animation: floatBadge 3.8s infinite ease-in-out alternate; }

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* Stats Bar */
.hero-stats-bar {
    margin-top: 3rem;
    background: rgba(13, 17, 23, 0.8);
    border-y: 1px solid var(--border-color);
    padding: 1.8rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-primary);
    text-shadow: var(--glow-orange);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Creator & Lead Architect Section - Ultra Organized Edition */
.creator-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.creator-card-wrapper {
    display: flex;
    justify-content: center;
}

.creator-card {
    position: relative;
    background: linear-gradient(135deg, rgba(243, 145, 37, 0.08), rgba(13, 17, 23, 0.95));
    border: 1px solid var(--border-orange);
    border-radius: 24px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: var(--glow-orange);
    backdrop-filter: blur(16px);
    transition: all 0.4s ease;
}

.creator-card:hover {
    border-color: var(--cyan-accent);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.35);
}

.creator-photo-box {
    position: relative;
    width: 280px;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--brand-primary);
    box-shadow: 0 0 30px rgba(243, 145, 37, 0.4);
    background: #0d1117;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinning Dual Neon Ring around Founder Photo */
.creator-spinning-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 24px;
    background: conic-gradient(from 0deg, var(--brand-primary), var(--cyan-accent), var(--green-accent), var(--brand-primary));
    z-index: 0;
    animation: spinRing 6s linear infinite;
    filter: blur(4px);
    opacity: 0.85;
}

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

.creator-img {
    position: relative;
    z-index: 1;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    object-fit: cover;
    object-position: top center;
    border-radius: 18px;
    display: block;
}

.creator-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.creator-header {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.creator-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-soft);
    border: 1px solid var(--border-orange);
    color: var(--brand-hover);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    width: fit-content;
}

.creator-name {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.creator-role {
    font-size: 0.95rem;
    color: var(--brand-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.creator-quote {
    position: relative;
    background: rgba(8, 10, 15, 0.75);
    border-left: 3px solid var(--brand-primary);
    padding: 1rem 1.4rem;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.quote-icon {
    color: var(--brand-primary);
    margin-right: 0.4rem;
    font-size: 1.1rem;
}

/* Perfectly Aligned 3-Column Creator Social Grid */
.creator-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.creator-social-grid .btn {
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    width: 100%;
}

/* Perfectly Aligned 3-Column Creator Highlights Grid */
.creator-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.c-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.c-highlight-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-orange);
    transform: translateY(-2px);
}

.c-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.c-icon-box.orange { background: rgba(243, 145, 37, 0.15); color: var(--brand-primary); border: 1px solid var(--border-orange); }
.c-icon-box.cyan { background: rgba(0, 229, 255, 0.15); color: var(--cyan-accent); border: 1px solid rgba(0, 229, 255, 0.4); }
.c-icon-box.green { background: rgba(34, 197, 94, 0.15); color: var(--green-accent); border: 1px solid rgba(34, 197, 94, 0.4); }

.c-text h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--text-primary); }
.c-text p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* Section Common Styles */
.powers-section, .preview-section, .benchmark-section, .faq-section, .store-section, .download-section {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-sub {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Organized App Powers Clean Grid */
.powers-grid-organized {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.power-card-clean {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.power-card-clean:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--glow-orange);
}

.power-card-clean.feature-highlight {
    background: linear-gradient(135deg, rgba(243, 145, 37, 0.08), rgba(21, 26, 34, 0.9));
    border-color: var(--border-orange);
}

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

.p-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.p-icon-box.orange { background: rgba(243, 145, 37, 0.15); color: var(--brand-primary); border: 1px solid var(--border-orange); }
.p-icon-box.cyan { background: rgba(0, 229, 255, 0.15); color: var(--cyan-accent); border: 1px solid rgba(0, 229, 255, 0.4); }
.p-icon-box.green { background: rgba(34, 197, 94, 0.15); color: var(--green-accent); border: 1px solid rgba(34, 197, 94, 0.4); }

.p-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.p-badge.orange { background: var(--brand-soft); color: var(--brand-hover); border: 1px solid var(--border-orange); }
.p-badge.cyan { background: rgba(0, 229, 255, 0.1); color: var(--cyan-accent); border: 1px solid rgba(0, 229, 255, 0.3); }
.p-badge.green { background: rgba(34, 197, 94, 0.1); color: var(--green-accent); border: 1px solid rgba(34, 197, 94, 0.3); }

.power-card-clean h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.power-card-clean p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    flex-grow: 1;
}

.p-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-color);
}

.p-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.p-tag i { color: var(--green-accent); font-size: 0.7rem; }

/* Showcase Section & Tabs */
.showcase-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
}

.showcase-tabs {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.8rem;
}

.tab-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
    box-shadow: var(--glow-orange);
}

.showcase-screen {
    display: none;
}

.showcase-screen.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

/* Real App Screenshot Frames with Ambient Drop Glow */
.real-screenshot-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-orange);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--glow-orange);
    background: #0d1117;
}

.real-screenshot-img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    display: block;
}

.screenshot-caption {
    padding: 1.2rem 1.5rem;
    background: rgba(13, 17, 23, 0.95);
    border-top: 1px solid var(--border-color);
}

.screenshot-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.screenshot-caption p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Benchmark Comparison Slider */
.slider-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-orange);
    box-shadow: var(--glow-orange);
}

.image-before, .image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.image-before {
    background-image: url('assets/benchmarks/valorant_before.jpg');
    background-size: cover;
    background-position: center;
}

.image-after {
    background-image: url('assets/benchmarks/valorant_after.jpg');
    background-size: cover;
    background-position: center;
    width: 50%;
    z-index: 2;
    border-right: 2px solid var(--brand-primary);
    overflow: hidden;
}

.overlay-card {
    position: absolute;
    top: 2rem;
    background: rgba(8, 10, 15, 0.85);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.after-card { left: 2rem; border-color: var(--brand-primary); }
.before-card { right: 2rem; }

.badge-tag {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.badge-tag.green { background: rgba(34, 197, 94, 0.2); color: var(--green-accent); border: 1px solid var(--green-accent); }
.badge-tag.red { background: rgba(255, 23, 68, 0.2); color: var(--red-accent); border: 1px solid var(--red-accent); }

.metric-group {
    display: flex;
    gap: 1.5rem;
}

.metric { display: flex; flex-direction: column; }
.m-val { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--text-primary); }
.m-lbl { font-size: 0.7rem; color: var(--text-muted); }

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--brand-primary);
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 15px rgba(243, 145, 37, 0.8);
}

.game-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.game-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.game-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-hover);
}

.bar-lbl { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.3rem; }
.bar-bg { height: 8px; background: #21262d; border-radius: 4px; overflow: hidden; margin-bottom: 0.8rem; }
.bar-fill { height: 100%; background: var(--brand-primary); }
.bar-fill.red { background: var(--red-accent); }
.bar-fill.green { background: var(--green-accent); }

/* Gaming FAQ Accordion Section */
.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.faq-item.active {
    border-color: var(--border-orange);
    box-shadow: var(--glow-orange);
}

.faq-question {
    padding: 1.2rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--brand-primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background: rgba(13, 17, 23, 0.8);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.2rem 1.6rem;
    border-top-color: var(--border-color);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Store Section */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.store-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.store-card.hot-deal {
    border-color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(243, 145, 37, 0.25);
}

.flame-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    z-index: 5;
    box-shadow: var(--glow-orange);
}

.card-img-holder {
    height: 180px;
    background: #161b22;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img-holder img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.store-card-body { padding: 1.4rem; }
.item-cat { font-size: 0.7rem; font-weight: 700; color: var(--brand-primary); letter-spacing: 1px; }

.store-card-body h4 { font-size: 1.15rem; margin: 0.3rem 0 0.6rem; }
.store-card-body p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1rem; }

.price-row { display: flex; align-items: center; gap: 0.8rem; }
.price-new { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--green-accent); }

/* Download Section */
.download-box {
    position: relative;
    background: linear-gradient(135deg, rgba(243, 145, 37, 0.1), rgba(8, 10, 15, 0.95));
    border: 1px solid var(--border-orange);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--glow-orange);
    overflow: hidden;
}

.app-icon-large img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(243, 145, 37, 0.6));
}

.download-box h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.download-box p { max-width: 600px; margin: 0 auto 2rem; color: var(--text-secondary); }

.download-actions { margin-bottom: 2rem; }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1.25rem; }

.install-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0 auto 1rem;
}

/* Footer */
.footer {
    background: #05070a;
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-logo { width: 36px; height: 36px; }
.footer-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-left: 0.5rem; }

.footer-brand p { margin-top: 0.8rem; color: var(--text-muted); font-size: 0.88rem; max-width: 300px; }

.footer-links-group h4 { font-size: 1rem; margin-bottom: 1.2rem; color: var(--brand-primary); }
.footer-links-group a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-links-group a:hover { color: var(--brand-hover); }

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.github:hover {
    background: #2ea44f;
    border-color: #2ea44f;
    color: #fff;
    box-shadow: 0 0 15px rgba(46, 164, 79, 0.6);
}

.social-icon.yt:hover { background: #FF0000; border-color: #FF0000; color: #fff; box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); }
.social-icon.discord:hover { background: #5865F2; border-color: #5865F2; color: #fff; box-shadow: 0 0 15px rgba(88, 101, 242, 0.6); }

.cloudflare-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(243, 145, 37, 0.1);
    border: 1px solid var(--border-orange);
    color: var(--brand-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.copyright { font-size: 0.78rem; color: var(--text-muted); }

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .nav-links { gap: 0.7rem; }
    .nav-link { font-size: 0.82rem; padding: 0.3rem 0.4rem; }
    .powers-grid-organized { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-ribbon-grid { margin-left: auto; margin-right: auto; }
    .hero-cta-box { margin-left: auto; margin-right: auto; }
    .hero-trust-badges { justify-content: center; }
    .hero-showcase-wrapper { margin-top: 2rem; }
    .badge-voltx { right: 0; }
    .badge-latency { left: 0; }
    .creator-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .creator-badge { margin: 0 auto 0.8rem; }
    .creator-role { justify-content: center; }
    .creator-social-grid { width: 100%; }
    .creator-highlights-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .powers-grid-organized { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
    .hero-ribbon-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .hero-social-bar { grid-template-columns: 1fr; }
    .creator-social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .mobile-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 10, 15, 0.96);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 0.8rem;
        display: none;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    }
    .nav-links.active { display: flex; }
    .nav-link { width: 100%; padding: 0.6rem 0.8rem; font-size: 0.95rem; }
    .nav-social { display: inline-flex; }
    .hero-title { font-size: 2.5rem; }
    .holo-badge { display: none; }
    .footer-container { grid-template-columns: 1fr; }
}
