/* ==========================================================================
   CHOICEDECKPRESX - FLUID WHITE & VIBRANT YELLOW TACTICAL UI
   Brand: Choicedeckpresx.cfd (2026)
   Theme: Pure White, Electric Sunshine Yellow & Modern Fluid Dynamics
   ========================================================================== */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fdfdfd;
    --bg-tertiary: #f4f4f6;
    --bg-card: rgba(255, 255, 255, 0.88);
    --accent-primary: #eab308;        /* Electric Sunshine Yellow */
    --accent-primary-hover: #ca8a04;  /* Deep Gold Yellow */
    --accent-subtle: rgba(234, 179, 8, 0.12);
    --accent-glow: rgba(250, 204, 21, 0.35);
    --text-primary: #0f172a;          /* Charcoal Black */
    --text-secondary: #475569;        /* Slate Gray */
    --text-muted: #64748b;            /* Soft Muted Gray */
    --border-color: rgba(15, 23, 42, 0.08);
    --border-hover: rgba(234, 179, 8, 0.6);
    --font-heading: 'Orbitron', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --max-width: 1240px;
    --header-height: clamp(56px, 7vw, 76px);
    
    /* Fluid Radius Values */
    --radius-sm: clamp(8px, 1.2vw, 12px);
    --radius-md: clamp(16px, 2.2vw, 24px);
    --radius-lg: clamp(24px, 3.5vw, 36px);
    --radius-full: 9999px;
    
    /* Fluid Physics Transitions */
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Dynamic Shadows */
    --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 20px 40px -15px rgba(234, 179, 8, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 12px 30px -5px rgba(234, 179, 8, 0.45);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: clamp(15px, 0.95vw + 11px, 18px);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

body {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

/* Scroll Lock when Nav/Modal Open */
body.nav-open, body.modal-open {
    overflow: hidden !important;
    touch-action: none;
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid Background Patterns & Animated Yellow Glow Blobs */
.cyber-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(250, 204, 21, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(234, 179, 8, 0.09) 0%, transparent 50%),
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px), clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px);
    pointer-events: none;
    z-index: 0;
}

.fluid-ambient-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
    animation: fluidFloat 18s ease-in-out infinite alternate;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: clamp(320px, 45vw, 650px);
    height: clamp(320px, 45vw, 650px);
    background: radial-gradient(circle, rgba(250, 204, 21, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
}

.blob-2 {
    bottom: 5%;
    left: -10%;
    width: clamp(350px, 50vw, 750px);
    height: clamp(350px, 50vw, 750px);
    background: radial-gradient(circle, rgba(234, 179, 8, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    animation-delay: -9s;
}

@keyframes fluidFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(45px, 35px) scale(1.08); }
    100% { transform: translate(-35px, -25px) scale(0.94); }
}

/* Container */
.hud-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(12px, 3.5vw, 36px);
    position: relative;
    z-index: 1;
}

/* Section Spacing */
.section-padding {
    padding: clamp(48px, 8vw, 100px) 0;
}

.bg-alt {
    background: linear-gradient(180deg, rgba(250, 204, 21, 0.04) 0%, rgba(244, 244, 246, 0.7) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(32px, 5.5vw, 56px) auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-primary-hover);
    font-family: var(--font-heading);
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    background: var(--accent-subtle);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-primary);
    word-break: break-word;
}

.section-desc {
    color: var(--text-secondary);
    font-size: clamp(0.92rem, 1.4vw, 1.08rem);
}

.gradient-text {
    background: linear-gradient(135deg, #0f172a 30%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Fluid Sleek Buttons */
.hud-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(12px, 1.6vw, 14px) clamp(20px, 2.4vw, 30px);
    font-family: var(--font-heading);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    min-height: 46px;
    transition: all var(--transition-fast);
    touch-action: manipulation;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.hud-btn-primary {
    background: var(--accent-primary);
    color: #0f172a;
    border-color: var(--accent-primary);
}

.hud-btn-primary:hover {
    background: #facc15;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px) scale(1.02);
}

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

.hud-btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.hud-btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.hud-btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    border: 1.5px solid var(--accent-primary);
}

.hud-btn-outline:hover {
    background: var(--accent-primary);
    color: #0f172a;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-large {
    padding: clamp(14px, 2vw, 18px) clamp(24px, 3vw, 36px);
    font-size: clamp(0.85rem, 1.1vw, 0.98rem);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.78rem;
    min-height: 38px;
}

.btn-header {
    padding: clamp(6px, 1.2vw, 8px) clamp(12px, 1.8vw, 18px);
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    min-height: 38px;
    letter-spacing: 0.5px;
}

.btn-text-short {
    display: none;
}

/* Badge Tag */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-subtle);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: clamp(0.68rem, 0.9vw, 0.75rem);
    color: #0f172a;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: clamp(16px, 2.2vw, 22px);
    max-width: 100%;
}

.badge-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background-color: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-primary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.25); }
    100% { opacity: 0.4; transform: scale(0.8); }
}

/* ==========================================================================
   HEADER NAVIGATION - ULTRA RESPONSIVE LAYOUT FOR ALL DEVICES
   ========================================================================== */
.hud-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--header-height);
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: clamp(8px, 2vw, 24px);
    padding-top: 4px;
    padding-bottom: 4px;
}

/* Brand Logo */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 10px);
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 1;
    min-width: 0;
}

.logo-icon {
    flex-shrink: 0;
    width: clamp(24px, 4vw, 32px);
    height: clamp(24px, 4vw, 32px);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 2vw, 1.25rem);
    font-weight: 900;
    letter-spacing: clamp(0.5px, 0.1vw, 1.2px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-highlight {
    color: var(--accent-primary-hover);
    background: var(--accent-subtle);
    padding: 1px 5px;
    border-radius: 4px;
}

/* Desktop Navigation */
.hud-nav {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.8vw, 28px);
    flex-shrink: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: clamp(0.72rem, 0.95vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.6px;
    transition: all var(--transition-fast);
    padding: 6px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: #0f172a;
    background: var(--accent-subtle);
}

/* Header Action Controls */
.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 12px);
    flex-shrink: 0;
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
    display: none;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 6px;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    touch-action: manipulation;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.mobile-toggle:hover, .mobile-toggle:focus-visible {
    background: var(--accent-subtle);
    border-color: var(--accent-primary);
}

.hamburger-bar {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    border-radius: 2px;
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + clamp(24px, 4vw, 56px));
    padding-bottom: clamp(44px, 7vw, 90px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 4.5vw, 60px);
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.2vw + 0.5rem, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: clamp(16px, 2.5vw, 24px);
    word-break: break-word;
}

.hero-description {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: clamp(24px, 3.5vw, 36px);
    max-width: 600px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    gap: clamp(12px, 2vw, 18px);
    margin-bottom: clamp(32px, 4.5vw, 48px);
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 28px);
    padding-top: clamp(20px, 3vw, 28px);
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.metric-item {
    flex: 1 1 auto;
    min-width: 90px;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
}

.metric-label {
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.metric-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* Hero Visual Frame with Fluid Styling */
.hero-visual {
    position: relative;
    width: 100%;
}

.holo-card-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: clamp(8px, 1.2vw, 12px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    width: 100%;
    transition: transform var(--transition-normal);
}

.holo-card-frame:hover {
    transform: translateY(-4px) scale(1.01);
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 460px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.hud-overlay-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: clamp(0.6rem, 0.9vw, 0.7rem);
    font-weight: 700;
    color: #0f172a;
    z-index: 3;
    white-space: nowrap;
    box-shadow: var(--shadow-subtle);
}

.hud-overlay-tag.top-right {
    top: 18px;
    right: 18px;
}

.hud-overlay-tag.bottom-left {
    bottom: 18px;
    left: 18px;
}

.card-floating-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid var(--accent-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 700;
    z-index: 4;
    max-width: calc(100% - 32px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.25);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-floating-badge .badge-icon {
    color: var(--accent-primary);
}

/* Fluid Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.hud-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hud-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.card-banner {
    position: relative;
    height: clamp(160px, 20vw, 200px);
    overflow: hidden;
    width: 100%;
}

.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0f172a;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
}

.card-body {
    padding: clamp(18px, 2.5vw, 24px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.08rem, 1.6vw, 1.25rem);
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card-text {
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.stat-pill {
    background: var(--accent-subtle);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    font-size: 0.72rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

.card-action-btn {
    width: 100%;
}

/* Feature Boxes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(20px, 3vw, 28px);
}

.feature-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: clamp(22px, 3vw, 32px) clamp(18px, 2.2vw, 26px);
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-normal);
}

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

.feature-icon {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    margin-bottom: 12px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-text {
    color: var(--text-secondary);
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
}

/* Reviews & Community Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    gap: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(36px, 6vw, 54px);
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: clamp(20px, 3vw, 28px);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    object-fit: cover;
    flex-shrink: 0;
}

.review-author {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.3vw, 0.98rem);
    color: var(--text-primary);
}

.review-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
}

.star-rating {
    color: var(--accent-primary-hover);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.review-quote {
    color: var(--text-secondary);
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    font-style: italic;
    line-height: 1.55;
}

.discord-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 38px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 32px);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.25);
}

.discord-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    margin-bottom: 8px;
    line-height: 1.25;
    color: #ffffff;
}

.discord-content p {
    color: #94a3b8;
    font-size: clamp(0.88rem, 1.2vw, 0.98rem);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.faq-trigger {
    width: 100%;
    padding: clamp(14px, 2.2vw, 18px) clamp(16px, 2.8vw, 24px);
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(0.88rem, 1.3vw, 1.02rem);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: background 0.2s;
    min-height: 52px;
    touch-action: manipulation;
}

.faq-trigger:hover {
    background: var(--accent-subtle);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--accent-primary-hover);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    line-height: 1;
}

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

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    background: rgba(250, 204, 21, 0.03);
}

.faq-item.active .faq-panel {
    max-height: 380px;
    padding: 0 clamp(16px, 2.8vw, 24px) clamp(14px, 2.2vw, 18px) clamp(16px, 2.8vw, 24px);
}

.faq-panel p {
    color: var(--text-secondary);
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    line-height: 1.65;
}

/* Footer */
.hud-footer {
    background: #0f172a;
    color: #ffffff;
    border-top: 2px solid var(--accent-primary);
    padding-top: clamp(48px, 7vw, 72px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: clamp(28px, 4vw, 40px);
    padding-bottom: clamp(36px, 5.5vw, 54px);
}

.footer-col.brand-col {
    grid-column: span 1;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1.1fr 1.1fr;
    }
}

.footer-text {
    color: #94a3b8;
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    margin-top: 14px;
    max-width: 340px;
    line-height: 1.55;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    color: #ffffff;
    margin-bottom: clamp(12px, 2vw, 18px);
    letter-spacing: 0.8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    transition: color 0.2s;
    display: inline-block;
    padding: 2px 0;
}

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

.footer-address {
    font-style: normal;
    color: #94a3b8;
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    line-height: 1.65;
}

.contact-email {
    color: var(--accent-primary);
    display: inline-block;
    margin-top: 6px;
    word-break: break-all;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(16px, 2.2vw, 22px) 0;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 0.9vw, 0.78rem);
    color: var(--accent-primary);
    white-space: nowrap;
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-primary);
    flex-shrink: 0;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 3vw, 24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    background: #ffffff;
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    max-height: min(88vh, 88dvh);
    padding: clamp(20px, 4vw, 34px);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-window {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    touch-action: manipulation;
}

.modal-close:hover {
    background: var(--accent-primary);
    color: #0f172a;
}

.modal-header {
    margin-bottom: 14px;
    flex-shrink: 0;
    padding-right: 32px;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    color: var(--text-primary);
    line-height: 1.25;
}

.modal-body {
    color: var(--text-secondary);
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    margin-bottom: 18px;
    overflow-y: auto;
    padding-right: 6px;
    flex: 1 1 auto;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 10px;
}

.modal-body h4 {
    color: #0f172a;
    font-family: var(--font-heading);
    font-size: clamp(0.88rem, 1.2vw, 0.98rem);
    margin: 14px 0 6px 0;
}

.modal-footer {
    flex-shrink: 0;
}

.modal-form-group {
    margin-bottom: 14px;
}

.modal-form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-input, .modal-textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
}

.modal-textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-input:focus, .modal-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: clamp(12px, 3vw, 24px);
    left: clamp(12px, 3vw, 24px);
    right: clamp(12px, 3vw, 24px);
    max-width: var(--max-width);
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-md);
    padding: clamp(14px, 2.2vw, 18px) clamp(16px, 2.8vw, 28px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    z-index: 900;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.cookie-banner.hidden {
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(14px, 2.8vw, 24px);
    padding: 0;
}

.cookie-text strong {
    font-family: var(--font-heading);
    font-size: clamp(0.78rem, 1.1vw, 0.85rem);
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

.cookie-text p {
    font-size: clamp(0.78rem, 1.1vw, 0.85rem);
    color: var(--text-secondary);
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS - RESPONSIVE HEADER & CONTENT ADAPTABILITY
   ========================================================================== */

/* Tablets & Desktop Breakpoint (<= 920px: Transition to Mobile Navigation Overlay) */
@media (max-width: 920px) {
    .mobile-toggle {
        display: flex;
    }

    .hud-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100vw;
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 32px);
        gap: 12px;
        border-bottom: 1px solid var(--border-color);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 99;
    }

    .hud-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link {
        font-size: clamp(1rem, 3.5vw, 1.15rem);
        padding: 12px 18px;
        width: 100%;
        text-align: left;
        border-radius: var(--radius-sm);
        border-left: 3px solid transparent;
        background: rgba(15, 23, 42, 0.02);
    }

    .nav-link:hover, .nav-link.active {
        background: var(--accent-subtle);
        border-left-color: var(--accent-primary);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 660px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-visual {
        max-width: 580px;
        margin: 0 auto;
    }

    .discord-banner {
        flex-direction: column;
        text-align: center;
    }

    .discord-content {
        max-width: 600px;
    }
}

/* Mobile Devices (<= 576px) */
@media (max-width: 576px) {
    .header-inner {
        gap: 8px;
    }

    .btn-header {
        padding: 6px 12px;
        min-height: 36px;
    }

    .hero-metrics {
        width: 100%;
        gap: 12px;
    }

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

    .metric-divider {
        display: block;
        height: 28px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-actions button {
        flex: 1;
    }
}

/* Compact Mobile Devices (<= 480px) */
@media (max-width: 480px) {
    .btn-text {
        display: none;
    }

    .btn-text-short {
        display: inline-block;
    }

    .btn-header {
        padding: 5px 10px;
        min-height: 34px;
        font-size: 0.72rem;
    }

    .logo-highlight {
        padding: 1px 3px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .hud-btn {
        width: 100%;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .metric-divider {
        display: none;
    }

    .metric-value {
        font-size: 1.25rem;
    }

    .metric-label {
        font-size: 0.65rem;
    }

    .card-floating-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 10px auto 0 auto;
        width: calc(100% - 20px);
        justify-content: center;
    }

    .cards-grid, .features-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .modal-window {
        padding: 18px;
    }
}

/* Ultra Small Devices (<= 340px) */
@media (max-width: 340px) {
    .hud-container {
        padding: 0 10px;
    }

    .logo-text {
        font-size: 0.76rem;
        letter-spacing: 0;
    }

    .logo-icon {
        width: 22px;
        height: 22px;
    }

    .btn-header {
        padding: 4px 8px;
        font-size: 0.68rem;
        min-height: 32px;
    }

    .mobile-toggle {
        width: 34px;
        height: 34px;
        padding: 4px;
    }

    .hamburger-bar {
        width: 18px;
    }

    .hero-title {
        font-size: 1.45rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .card-banner {
        height: 140px;
    }
}