/* =======================================================================
   SyteSpace - Complete CSS
   A single, clean stylesheet for the entire site
   ======================================================================= */

/* ===== CSS Variables ===== */
:root {
    --brand-primary: #6C63FF;
    --brand-primary-light: #8B83FF;
    --brand-primary-dark: #5a52e0;
    --brand-accent: #EBEAFF;

    --bg-body: #1a1a2e;
    --bg-section: #16162a;
    --bg-card: #1e1e38;
    --bg-card-hover: #252550;
    --bg-input: #12122a;

    --text-white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d0;
    --text-muted: #7a7a95;

    --border-color: rgba(108, 99, 255, 0.15);
    --border-hover: rgba(108, 99, 255, 0.4);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s ease;

    --navbar-height: 70px;

    /* Aliases for inline style references */
    --border: rgba(108, 99, 255, 0.15);
    --primary: #6C63FF;
    --text: #ffffff;
    --bg-secondary: #16162a;
    --bg-tertiary: #12122a;
}

/* ===== Accessibility ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color var(--transition);
}

a:hover {
    color: var(--text-white);
}

ul, ol {
    list-style: none;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

/* =============================================
   ANIMATIONS & EFFECTS
   ============================================= */

/* Floating Particles */
@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1.1) translateX(var(--drift, 0px));
        opacity: 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 40px rgba(108, 99, 255, 0.6);
    }
}

@keyframes firewall-pulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(255, 100, 100, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(255, 100, 100, 0.5);
    }
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--brand-primary); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-fade-in-scale {
    animation: fadeInScale 0.5s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Hidden until animated */
[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    opacity: 1;
}

/* Floating Particles Container */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    bottom: -50px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-up 8s ease-in-out infinite;
    opacity: 0;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; --drift: 20px; }
.particle:nth-child(2) { left: 15%; animation-delay: 1.5s; --drift: -30px; width: 8px; height: 8px; }
.particle:nth-child(3) { left: 25%; animation-delay: 3s; --drift: 15px; width: 12px; height: 12px; }
.particle:nth-child(4) { left: 35%; animation-delay: 0.5s; --drift: -25px; }
.particle:nth-child(5) { left: 45%; animation-delay: 2s; --drift: 35px; width: 6px; height: 6px; }
.particle:nth-child(6) { left: 55%; animation-delay: 4s; --drift: -20px; }
.particle:nth-child(7) { left: 65%; animation-delay: 1s; --drift: 25px; width: 14px; height: 14px; }
.particle:nth-child(8) { left: 75%; animation-delay: 2.5s; --drift: -15px; width: 8px; height: 8px; }
.particle:nth-child(9) { left: 85%; animation-delay: 3.5s; --drift: 30px; }
.particle:nth-child(10) { left: 95%; animation-delay: 0.8s; --drift: -35px; width: 10px; height: 10px; }

/* Glow Effects */
.glow-box {
    animation: pulse-glow 3s ease-in-out infinite;
}

.glow-text {
    text-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

/* ===== Game Carousel/Selector ===== */
.game-carousel {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.game-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.game-slide {
    min-width: 100%;
    padding: 0 20px;
}

.game-selector {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.game-selector-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
}

.game-selector-btn:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.game-selector-btn.active {
    border-color: var(--brand-primary);
    background: rgba(108, 99, 255, 0.1);
    box-shadow: var(--shadow-glow);
}

.game-selector-btn i {
    font-size: 2.5rem;
    color: var(--brand-primary);
}

.game-selector-btn span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.game-selector-btn.active span {
    color: var(--text-white);
}

/* Game Hero Cards */
.game-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.game-hero-content h2 {
    margin-bottom: 16px;
}

.game-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.game-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.game-hero-features .tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.game-hero-features .tag i {
    color: var(--brand-primary);
}

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

.game-hero-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot.active {
    background: var(--brand-primary);
    transform: scale(1.2);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 16px;
    pointer-events: none;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    background: var(--brand-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: all;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--brand-primary-dark);
    transform: scale(1.1);
}

/* ===== Console/Terminal UI ===== */
.console-window {
    background: #0d0d1a;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.console-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #151528;
    border-bottom: 1px solid var(--border-color);
}

.console-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.console-dot.red { background: #ff5f56; }
.console-dot.yellow { background: #ffbd2e; }
.console-dot.green { background: #27ca40; }

.console-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.console-body {
    padding: 20px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    max-height: 300px;
    overflow-y: auto;
}

.console-line {
    margin-bottom: 4px;
}

.console-line .timestamp {
    color: var(--text-muted);
}

.console-line .prefix {
    color: var(--brand-primary);
    font-weight: 600;
}

.console-line .success {
    color: #27ca40;
}

.console-line .warning {
    color: #ffbd2e;
}

.console-line .error {
    color: #ff5f56;
}

.console-line .info {
    color: #5bc0de;
}

.console-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--brand-primary);
    animation: blink-caret 1s step-end infinite;
    vertical-align: text-bottom;
}

/* ===== DDoS Protection Visualization ===== */
.ddos-visual {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.ddos-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ddos-attacks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.attack-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.2);
    border-radius: var(--radius-md);
    animation: firewall-pulse 2s ease-in-out infinite;
}

.attack-item:nth-child(2) { animation-delay: 0.3s; }
.attack-item:nth-child(3) { animation-delay: 0.6s; }
.attack-item:nth-child(4) { animation-delay: 0.9s; }
.attack-item:nth-child(5) { animation-delay: 1.2s; }

.attack-icon {
    font-size: 1.25rem;
}

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

.ddos-shield {
    width: 120px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shield-icon {
    font-size: 5rem;
    color: var(--brand-primary);
    animation: shield-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.5));
}

.shield-badge {
    position: absolute;
    bottom: 0;
    background: var(--brand-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ddos-server {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.traffic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(39, 202, 64, 0.1);
    border: 1px solid rgba(39, 202, 64, 0.2);
    border-radius: var(--radius-md);
}

.traffic-item i {
    color: #27ca40;
}

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

/* ===== Hardware Specs Display ===== */
.hardware-specs {
    display: flex;
    gap: 24px;
    padding: 20px;
    background: rgba(108, 99, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.spec-item strong {
    color: var(--text-white);
}

/* ===== Partner Logos ===== */
.partners-section {
    padding: 60px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.5;
    transition: opacity var(--transition);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {
    height: 40px;
    width: auto;
}

/* ===== Interactive Hover Effects ===== */
.hover-lift {
    transition: transform var(--transition), box-shadow var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hover-glow {
    transition: box-shadow var(--transition);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

.hover-scale {
    transition: transform var(--transition);
}

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

/* Animated gradient border */
.gradient-border {
    position: relative;
    background: var(--bg-card);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-primary-light), #ff6b6b, var(--brand-primary));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: gradient-shift 4s ease infinite;
    opacity: 0;
    transition: opacity var(--transition);
}

.gradient-border:hover::before {
    opacity: 1;
}

/* Mouse tracking glow effect container */
.mouse-glow {
    position: relative;
    overflow: hidden;
}

.mouse-glow::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.mouse-glow:hover::after {
    opacity: 1;
}

/* ===== Live Status Indicator ===== */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(39, 202, 64, 0.1);
    border: 1px solid rgba(39, 202, 64, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ca40;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.status-indicator span {
    color: #27ca40;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Status States */
.status-dot.status-operational {
    background: #27ca40;
}

.status-dot.status-degraded {
    background: #f39c12;
    animation: pulse-warning 2s ease-in-out infinite;
}

.status-dot.status-partial {
    background: #e67e22;
    animation: pulse-warning 1.5s ease-in-out infinite;
}

.status-dot.status-major {
    background: #e74c3c;
    animation: pulse-danger 1s ease-in-out infinite;
}

.status-dot.status-maintenance {
    background: #3498db;
    animation: pulse-info 2s ease-in-out infinite;
}

/* Status indicator background colors */
.status-indicator:has(.status-degraded) {
    background: rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.3);
}

.status-indicator:has(.status-degraded) span {
    color: #f39c12;
}

.status-indicator:has(.status-partial) {
    background: rgba(230, 126, 34, 0.1);
    border-color: rgba(230, 126, 34, 0.3);
}

.status-indicator:has(.status-partial) span {
    color: #e67e22;
}

.status-indicator:has(.status-major) {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
}

.status-indicator:has(.status-major) span {
    color: #e74c3c;
}

.status-indicator:has(.status-maintenance) {
    background: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

.status-indicator:has(.status-maintenance) span {
    color: #3498db;
}

@keyframes pulse-warning {
    0%, 100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(243, 156, 18, 0); }
}

@keyframes pulse-danger {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}

@keyframes pulse-info {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(52, 152, 219, 0); }
}

.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--brand-primary) !important; }
.text-center { text-align: center; }

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col, [class*="col-"] {
    padding: 0 12px;
    width: 100%;
}

.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-9 { width: 75%; }

@media (min-width: 576px) {
    .col-sm-6 { width: 50%; }
    .col-sm-4 { width: 33.333%; }
    .col-sm-3 { width: 25%; }
    .col-sm-12 { width: 100%; }
}

@media (min-width: 768px) {
    .col-md-2 { width: 16.666%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-5 { width: 41.666%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.333%; }
    .col-md-8 { width: 66.666%; }
    .col-md-10 { width: 83.333%; }
    .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-2 { width: 16.666%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
    .col-lg-12 { width: 100%; }
}

/* ===== Flexbox & Display Utilities ===== */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-flex { display: inline-flex !important; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

@media (min-width: 768px) {
    .d-md-block { display: block !important; }
    .d-md-none { display: none !important; }
}

@media (min-width: 992px) {
    .d-lg-block { display: block !important; }
    .d-lg-none { display: none !important; }
}

/* ===== Spacing ===== */
.m-0 { margin: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }

.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-150 { padding-bottom: 150px !important; }

/* ===== Sections ===== */
section, .section {
    padding: 100px 0 80px;
}

/* First section after page header needs less top padding */
.page-header + section,
header + section {
    padding-top: 60px;
}

.sec-normal {
    padding: 100px 0 80px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-heading {
    color: var(--text-white);
    margin-bottom: 1rem;
}

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

/* =============================================
   NAVIGATION - Simple Structure (features.html)
   ============================================= */
nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all var(--transition);
}

nav.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 46, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white) !important;
}

.logo-icon {
    color: var(--brand-primary-light);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--text-white);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.nav-dropdown-toggle:hover {
    color: var(--text-white);
    border-color: var(--border-hover);
    background: rgba(108, 99, 255, 0.1);
}

.nav-dropdown-toggle i:first-child {
    font-size: 1.1em;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-dropdown.active .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
    background: rgba(108, 99, 255, 0.15);
    color: var(--text-white);
}

.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--brand-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all var(--transition);
    display: block;
}

/* =============================================
   NAVIGATION - Complex Structure (index.html, etc)
   ============================================= */
.box-container {
    background: var(--bg-body);
}

.limit-width {
    max-width: 100%;
}

/* News Bar */
.infonews {
    background: var(--bg-card);
    padding: 10px 0;
    font-size: 0.9rem;
}

.infonews .news {
    display: flex;
    align-items: center;
    gap: 8px;
}

.infonews .news span {
    color: var(--text-white);
}

.infonews .link {
    text-align: right;
}

.infonews-nav {
    display: flex;
    gap: 16px;
}

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

.infonews-nav .iconews:hover {
    color: var(--brand-primary);
}

/* Menu Wrap - NOT fixed, flows normally */
.menu-wrap {
    background: rgba(26, 26, 46, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-wrap .nav-menu {
    position: relative;
    background: transparent;
    padding: 0;
    border: none;
}

.syte-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white) !important;
}

.syte-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
    display: inline-block;
}

.menu-item > a:hover {
    color: var(--text-white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .icon {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    display: block;
}

/* Dropdown Menu */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 1001;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.sub-menu .menu-item a {
    color: var(--text-secondary);
}

.sub-menu .menu-item:hover {
    background: rgba(108, 99, 255, 0.1);
}

.sub-menu .menu-item:hover a {
    color: var(--text-white);
}

.sub-menu .menu.badge {
    font-size: 0.65rem;
    padding: 2px 8px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    gap: 8px;
    text-decoration: none;
}

.btn-primary, .btn-default-yellow-fill, .btn-default-pink-fill {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    color: white !important;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover, .btn-default-yellow-fill:hover, .btn-default-pink-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(108, 99, 255, 0.4);
}

.btn-outline, .btn-default-grad-purple-fill {
    background: transparent;
    color: var(--text-white) !important;
    border: 1px solid var(--border-color);
}

.btn-outline:hover, .btn-default-grad-purple-fill:hover {
    border-color: var(--brand-primary);
    background: rgba(108, 99, 255, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ===== Badges ===== */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-purple, .bg-pink {
    background: var(--brand-primary) !important;
    color: white !important;
}

.bg-grey, .bg-dark {
    background: var(--bg-section) !important;
    color: var(--text-muted) !important;
}

/* ===== Page Header (features.html style) ===== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-body);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    position: relative;
    margin-bottom: 16px;
}

.page-header p {
    position: relative;
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Hero Section (index.html style) ===== */
.hero, .top-header {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    background: var(--bg-body);
}

.top-header {
    text-align: left;
}

.top-header .wrapper {
    background: transparent;
    border: none;
    padding: 0;
}

.heading {
    color: var(--text-white) !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.subheading {
    color: var(--text-secondary) !important;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 48px 0;
    margin: 40px 0;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stats-bar-item h3 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.stats-bar-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ===== Feature Details (features.html) ===== */
.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-detail:last-child {
    border-bottom: none;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-detail-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.feature-detail-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.feature-detail-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Cards ===== */
.card, .service-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.card:hover, .service-section:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card:hover p,
.service-section:hover p {
    color: var(--text-secondary);
}

.noshadow {
    box-shadow: none;
}

/* ===== Pricing Cards ===== */
.pricing .wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.pricing .wrapper:hover {
    border-color: var(--border-hover);
}

.pricing .top-content {
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.1), transparent);
    padding: 32px 24px;
}

.pricing .title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pricing .fromer {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pricing .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.pricing .price sup {
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.pricing .price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing .plans.badge {
    position: absolute;
    top: -1px;
    right: 20px;
}

.topradius {
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

/* List Info (Pricing Features) */
.list-info {
    list-style: none;
    padding: 24px;
    margin: 0;
    background: var(--bg-section);
}

.list-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.list-info li:last-child {
    border-bottom: none;
}

.list-info li i {
    color: var(--brand-primary);
    width: 24px;
    font-size: 1rem;
}

.list-info li div {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.85rem;
}

.list-info li div span {
    display: block;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.8rem;
}

/* ===== Tables ===== */
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.table th, .table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.table th {
    color: var(--text-white);
    font-weight: 600;
    background: var(--bg-section);
}

.title-table {
    color: var(--text-white) !important;
    font-weight: 600;
}

/* ===== Forms ===== */
.form-control, .form-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 500;
}

/* ===== Accordion/FAQ ===== */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.accordion-button:not(.collapsed)::after {
    content: '-';
}

.accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
}

/* ===== Help/Contact Boxes ===== */
.help-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition);
    height: 100%;
}

.help-container:hover {
    border-color: var(--border-hover);
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.help-item .img {
    flex-shrink: 0;
}

.help-item .img i {
    font-size: 2rem;
    color: var(--brand-primary);
}

.help-item .info .title {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.help-item .info .description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-section) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.getready {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.9), rgba(30, 30, 56, 0.95));
    padding: 60px 0;
    text-align: center;
}

.getready h2 {
    color: white;
}

.getready p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Promo Banner ===== */
.promo-banner {
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
    color: white;
    padding: 12px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
}

/* Push navbar down when banner is present */
body.has-promo-banner nav.navbar {
    top: 44px !important;
}

/* Add padding to body to account for banner + navbar */
body.has-promo-banner {
    padding-top: 44px;
}

.promo-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.promo-banner .promo-text {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-banner .promo-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.promo-banner .promo-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.promo-banner .promo-close:hover {
    opacity: 1;
}

.promo-banner .promo-link {
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
    margin-left: 8px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.promo-banner .promo-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .promo-banner .promo-text {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== Footer ===== */
footer, .footer {
    background: var(--bg-section);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-heading {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--text-white);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--text-white);
}

/* ===== Utilities ===== */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded-circle {
    border-radius: 50%;
}

.br-12 {
    border-radius: 12px;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.float-end {
    float: right;
}

.small {
    font-size: 0.875rem;
}

.fw-normal {
    font-weight: 400;
}

.f-18 {
    font-size: 18px;
}

/* Progress Bars */
.progress {
    height: 6px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--brand-primary);
    border-radius: 3px;
}

/* Back to Top */
.cd-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
}

.cd-top.visible {
    opacity: 1;
    visibility: visible;
}

.cd-top:hover {
    background: var(--brand-primary-light);
    transform: translateY(-3px);
}

/* ===== Icons (FontAwesome) ===== */
.fa-2x { font-size: 2rem; }
.fa-3x { font-size: 3rem; }
.fa-lg { font-size: 1.25rem; }

/* ===== Animation Utilities ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===== Legacy Color Classes ===== */
.mergecolor {
    color: var(--text-white) !important;
}

.seccolor {
    color: var(--text-secondary) !important;
}

.sec-bg2, .sec-bg3, .sec-bg6, .bg-colorstyle {
    background: var(--bg-body);
}

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

/* ===== Gradient Text ===== */
.gradient-text, .c-pink, .c-purple {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Timeline ===== */
.timeline-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
    border-left: 2px solid var(--border-color);
}

.timeline-item:last-child {
    border-left: 2px solid transparent;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--brand-primary);
    border-radius: 50%;
}

.timeline-year {
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

/* ===== Stats/Counters ===== */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
}

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

/* ===== Team/Avatar ===== */
.team-avatar, .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== Pricing Grid ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: all var(--transition);
}

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

.pricing-card:hover p,
.pricing-card:hover li {
    color: var(--text-secondary);
}

.pricing-card.featured {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-badge.secondary {
    background: var(--bg-section);
    color: var(--text-muted);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header i {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.pricing-header h3 {
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
}

.pricing-header .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--brand-primary);
    width: 20px;
    font-size: 0.85rem;
}

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

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

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

.feature-card:hover p {
    color: var(--text-secondary);
}

.feature-card i {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    transition: color var(--transition);
}

/* ===== FAQ Grid ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.faq-item h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== Payment Methods ===== */
.payment-methods {
    text-align: center;
}

.payment-methods p {
    color: var(--text-secondary);
}

.payment-methods .small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
}

.payment-icons i {
    font-size: 2.5rem;
    color: var(--text-secondary);
}

/* ===== Games Grid ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

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

.game-card:hover p {
    color: var(--text-secondary);
}

.game-card.coming-soon {
    opacity: 0.7;
}

.game-card i {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.game-card h4 {
    margin-bottom: 8px;
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: color var(--transition);
}

.game-card .badge {
    display: inline-block;
}

/* ===== Server Types Grid ===== */
.server-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.server-type-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.server-type-card:hover {
    border-color: var(--border-hover);
}

.server-type-card:hover p {
    color: var(--text-secondary);
}

.server-type-card h4 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-type-card .badge {
    font-size: 0.65rem;
}

.server-type-card .subtitle {
    color: var(--brand-primary);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.server-type-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.server-type-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.server-type-card .tag {
    background: rgba(108, 99, 255, 0.1);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* ===== Modpack Grid ===== */
.modpack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.modpack-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
}

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

.modpack-card:hover p {
    color: var(--text-secondary);
}

.modpack-card img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-bottom: 16px;
}

.modpack-card h5 {
    margin-bottom: 8px;
}

.modpack-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.modpack-specs {
    background: var(--bg-section);
    border-radius: var(--radius-md);
    padding: 12px;
}

.modpack-specs .spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 4px 0;
}

.modpack-specs .spec span:first-child {
    color: var(--text-muted);
}

.modpack-specs .spec span:last-child {
    color: var(--text-white);
    font-weight: 500;
}

/* ===== Team Grid ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.team-card:hover {
    border-color: var(--border-hover);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--brand-primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-card .social-links a {
    color: var(--text-muted);
    font-size: 1rem;
}

.team-card .social-links a:hover {
    color: var(--text-white);
}

/* ===== Value Cards ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
}

.value-card i {
    font-size: 2rem;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== Data Center Cards ===== */
.datacenter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.datacenter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.datacenter-card .header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.datacenter-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.datacenter-card .icon i {
    font-size: 1.5rem;
    color: white;
}

.datacenter-card h4 {
    margin-bottom: 4px;
}

.datacenter-card .location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.datacenter-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.datacenter-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.datacenter-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.datacenter-card li i {
    color: var(--brand-primary);
}

.datacenter-card li strong {
    color: var(--text-white);
}

/* ===== Contact Grid ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--border-hover);
}

.contact-card:hover p {
    color: var(--text-secondary);
}

.contact-card i {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.contact-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-info h3 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.contact-info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-info-card h4 i {
    color: var(--brand-primary);
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-form h3 {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Response Times ===== */
.response-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.response-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.response-card h3 {
    color: var(--brand-primary);
    font-size: 2rem;
    margin-bottom: 8px;
}

.response-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Comparison Table ===== */
.response-times-comparison {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.comparison-table {
    width: 100%;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.comparison-row span {
    color: var(--text-secondary);
}

.comparison-row span:first-child {
    color: var(--text-white);
}

/* ===== Helper Classes ===== */

strong {
    color: var(--text-white);
    font-weight: 600;
}

a.contact-card {
    text-decoration: none;
    display: block;
}

a.contact-card:hover {
    border-color: var(--brand-primary);
}

/* =============================================
   RESPONSIVE - TABLET (1024px and below)
   ============================================= */
@media (max-width: 1024px) {
    .feature-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-detail.reverse {
        direction: ltr;
    }

    .feature-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 16px;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .server-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .modpack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .faq-grid {
        gap: 16px;
    }

    .values-grid {
        gap: 16px;
    }

    .datacenter-grid {
        gap: 16px;
    }

    section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .pricing-grid,
    .features-grid,
    .games-grid,
    .faq-grid,
    .modpack-grid {
        margin-bottom: 48px;
    }
}

/* =============================================
   TABLE WRAPPER - For horizontal scroll on mobile
   ============================================= */
.table-wrapper,
.addons-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 12px;
}

.table-wrapper table,
.table-wrapper .addons-table,
.addons-table-wrapper table,
.addons-table-wrapper .addons-table {
    min-width: 600px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .addons-table-wrapper {
        margin: 0 -16px;
        padding: 0 16px;
        width: calc(100% + 32px);
        border-radius: 0;
    }

    .addons-table td,
    .addons-table th {
        padding: 12px 16px !important;
        font-size: 0.85rem;
    }

    .addons-table td:first-child {
        white-space: normal;
        min-width: 150px;
    }
}

/* =============================================
   RESPONSIVE - SMALL TABLET (768px and below)
   ============================================= */
@media (max-width: 768px) {
    /* Navigation - Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--bg-section);
        flex-direction: column;
        padding: 70px 20px 20px;
        gap: 8px;
        transition: right var(--transition);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
    }

    .nav-links .btn {
        width: 100%;
        margin-top: 8px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Nav Dropdown - Mobile */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    /* Complex navbar mobile */
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--bg-section);
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 20px 20px;
        gap: 4px;
        transition: right var(--transition);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-menu.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        min-width: auto;
    }

    /* Page Header - Compact */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    /* Stats Bar - 2x2 Grid */
    .stats-bar {
        padding: 24px 0;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stats-bar-item h3 {
        font-size: 1.5rem;
    }

    .stats-bar-item p {
        font-size: 0.75rem;
    }

    /* Section Spacing - Reduced */
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Grids - Tablet Optimized */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .server-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .modpack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 40px;
    }

    .datacenter-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .response-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Cards - Compact Padding */
    .pricing-card {
        padding: 20px 16px;
    }

    .pricing-header {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .pricing-header i {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .pricing-header .price {
        font-size: 2.25rem;
    }

    .pricing-features {
        margin-bottom: 16px;
    }

    .pricing-features li {
        padding: 6px 0;
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-card i {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    .game-card {
        padding: 20px 16px;
    }

    .game-card i {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .server-type-card {
        padding: 16px;
    }

    .server-type-card h4 {
        font-size: 1rem;
    }

    .server-type-card p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .modpack-card {
        padding: 16px;
    }

    .modpack-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .team-card {
        padding: 20px 16px;
    }

    .team-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .team-card p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    .value-card {
        padding: 20px;
        gap: 16px;
    }

    .value-card i {
        font-size: 1.5rem;
    }

    .datacenter-card {
        padding: 20px;
    }

    .contact-card {
        padding: 16px;
    }

    .contact-card i {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    /* Feature Detail - Compact */
    .feature-detail {
        gap: 24px;
        margin-bottom: 40px;
    }

    .feature-detail-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .feature-detail-content p {
        font-size: 0.9rem;
    }

    .feature-detail-list {
        gap: 8px;
        margin: 16px 0;
    }

    .feature-detail-list li {
        font-size: 0.9rem;
    }

    .feature-visual svg {
        width: 150px;
        height: 100px;
    }

    /* Contact Form */
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-info-card {
        padding: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* CTA Section */
    .cta {
        padding: 40px 0;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    /* Footer - Compact */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 20px;
    }

    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1rem; }
}

/* =============================================
   RESPONSIVE - MOBILE (480px and below)
   ============================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Navigation */
    nav.navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    /* Page Header - Very Compact */
    .page-header {
        padding: 90px 0 32px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* Stats Bar - 2x2 Compact */
    .stats-bar {
        padding: 20px 0;
    }

    .stats-bar-item {
        padding: 12px;
    }

    .stats-bar-item h3 {
        font-size: 1.25rem;
    }

    .stats-bar-item p {
        font-size: 0.7rem;
    }

    /* Sections - Very Compact */
    section {
        padding: 32px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    /* Grids - Smart Mobile Layout */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }

    /* Keep 2 columns for small cards */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 32px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 32px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 32px;
    }

    .response-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Single column for content-heavy cards */
    .server-types-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 32px;
    }

    .modpack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 32px;
    }

    .faq-grid {
        gap: 10px;
        margin-bottom: 32px;
    }

    .values-grid {
        gap: 10px;
        margin-bottom: 32px;
    }

    .datacenter-grid {
        gap: 12px;
        margin-bottom: 32px;
    }

    /* Cards - Very Compact */
    .pricing-card {
        padding: 16px 14px;
    }

    .pricing-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        top: -10px;
    }

    .pricing-header {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .pricing-header i {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .pricing-header h3 {
        font-size: 1.1rem;
    }

    .pricing-header p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .pricing-header .price {
        font-size: 2rem;
    }

    .pricing-features {
        margin-bottom: 12px;
    }

    .pricing-features li {
        padding: 5px 0;
        font-size: 0.75rem;
        gap: 8px;
    }

    .pricing-features li i {
        font-size: 0.7rem;
        width: 16px;
    }

    .feature-card {
        padding: 16px 12px;
    }

    .feature-card i {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .feature-card h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .feature-card p {
        font-size: 0.75rem;
    }

    .game-card {
        padding: 16px 12px;
    }

    .game-card i {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .game-card h4 {
        font-size: 0.95rem;
    }

    .game-card p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .server-type-card {
        padding: 14px;
    }

    .server-type-card .tags {
        gap: 6px;
    }

    .server-type-card .tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .modpack-card {
        padding: 12px;
    }

    .modpack-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .modpack-card h5 {
        font-size: 0.9rem;
    }

    .modpack-card p {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .modpack-specs {
        padding: 8px;
    }

    .modpack-specs .spec {
        font-size: 0.7rem;
        padding: 2px 0;
    }

    .team-card {
        padding: 16px 12px;
    }

    .team-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }

    .team-card h4 {
        font-size: 0.95rem;
    }

    .team-card .role {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .team-card p {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .team-card .social-links {
        gap: 8px;
    }

    .team-card .social-links a {
        font-size: 0.85rem;
    }

    .faq-item {
        padding: 14px;
    }

    .faq-item h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .faq-item p {
        font-size: 0.8rem;
    }

    .value-card {
        padding: 16px;
        gap: 12px;
    }

    .value-card i {
        font-size: 1.25rem;
    }

    .value-card h4 {
        font-size: 0.95rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    .datacenter-card {
        padding: 16px;
    }

    .datacenter-card .header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .datacenter-card .icon {
        width: 45px;
        height: 45px;
    }

    .datacenter-card .icon i {
        font-size: 1.1rem;
    }

    .datacenter-card h4 {
        font-size: 1rem;
    }

    .datacenter-card p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .datacenter-card li {
        font-size: 0.8rem;
        padding: 4px 0;
    }

    .contact-card {
        padding: 14px 10px;
    }

    .contact-card i {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .contact-card h4 {
        font-size: 0.85rem;
    }

    .contact-card p {
        font-size: 0.7rem;
    }

    .response-card {
        padding: 16px;
    }

    .response-card h3 {
        font-size: 1.5rem;
    }

    .response-card p {
        font-size: 0.75rem;
    }

    /* Feature Detail */
    .feature-detail {
        gap: 20px;
        margin-bottom: 32px;
    }

    .feature-detail-content h3 {
        font-size: 1.1rem;
    }

    .feature-detail-content p {
        font-size: 0.85rem;
    }

    .feature-detail-list li {
        font-size: 0.85rem;
    }

    .feature-visual {
        display: none;
    }

    /* Contact Form */
    .contact-form {
        padding: 16px;
    }

    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

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

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info > p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .contact-info-card {
        padding: 14px;
        margin-bottom: 12px;
    }

    .contact-info-card h4 {
        font-size: 0.9rem;
    }

    .contact-info-card p {
        font-size: 0.8rem;
    }

    /* Comparison Table */
    .response-times-comparison {
        padding: 16px;
    }

    .comparison-row {
        gap: 8px;
        padding: 8px 0;
        font-size: 0.8rem;
    }

    .comparison-row.header {
        font-size: 0.7rem;
    }

    /* CTA */
    .cta {
        padding: 32px 0;
    }

    .cta h2 {
        font-size: 1.25rem;
    }

    .cta p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .cta .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 32px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-links h4 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .footer-legal a {
        font-size: 0.75rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Badge */
    .badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    /* Typography */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 0.95rem; }

    /* Hero - Reduced Height */
    .hero, .top-header {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .heading {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .subheading {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Hero Buttons - Stack on Mobile */
    .hero .btn,
    .top-header .btn {
        width: 100%;
        margin-bottom: 10px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Console Window */
    .console-window {
        font-size: 0.7rem;
    }

    .console-body {
        padding: 12px;
    }

    .console-line {
        padding: 2px 0;
    }

    /* Tables - Horizontal Scroll */
    .addons-table,
    .table,
    .comparison-table,
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .addons-table td,
    .table td {
        padding: 12px 10px;
        font-size: 0.8rem;
    }

    .addons-table th,
    .table th {
        padding: 12px 10px;
        font-size: 0.75rem;
    }

    /* Status Indicator - Compact */
    .status-indicator {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }

    /* Promo Banner */
    .promo-banner {
        padding: 10px 0;
    }

    .promo-banner .promo-text {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 6px;
        padding-right: 30px;
    }

    .promo-banner .promo-code {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    .promo-banner .promo-close {
        right: 10px;
    }

    body.has-promo-banner nav.navbar {
        top: 52px !important;
    }

    body.has-promo-banner {
        padding-top: 52px;
    }

    /* Footer - Single Column on Very Small */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 0;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .footer-links li {
        display: inline;
    }

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

    .footer-legal {
        justify-content: center;
    }
}

/* =============================================
   RESPONSIVE - EXTRA SMALL (360px and below)
   ============================================= */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.15rem;
    }

    .heading {
        font-size: 1.5rem;
    }

    .pricing-grid,
    .features-grid,
    .games-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        width: 100%;
    }

    .pricing-header .price {
        font-size: 1.75rem;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stats-bar-item {
        padding: 16px;
    }
}

/* =============================================
   TOUCH DEVICE IMPROVEMENTS
   ============================================= */
@media (hover: none) and (pointer: coarse) {
    /* Ensure minimum touch target size */
    .btn,
    .nav-links a,
    .footer-links a,
    button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover states that don't work on touch */
    .pricing-card:hover,
    .feature-card:hover,
    .game-card:hover {
        transform: none;
    }

    /* Add active states instead */
    .pricing-card:active,
    .feature-card:active,
    .game-card:active {
        transform: scale(0.98);
    }

    /* Improve tap feedback */
    .btn:active {
        transform: scale(0.95);
    }
}

/* =============================================
   LANDSCAPE PHONE
   ============================================= */
@media (max-width: 768px) and (orientation: landscape) {
    .hero, .top-header {
        min-height: auto;
        padding: 80px 0 30px;
    }

    .page-header {
        padding: 80px 0 30px;
    }

    .nav-links {
        max-height: 100vh;
        overflow-y: auto;
    }
}

/* =============================================
   TABLET PORTRAIT SPECIFIC
   ============================================= */
@media (min-width: 481px) and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =============================================
   HIGH DPI / RETINA DISPLAYS
   ============================================= */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .console-window {
        border-width: 0.5px;
    }
}

/* =============================================
   PRICING CALCULATOR
   ============================================= */
.pricing-calculator {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 48px;
}

.calculator-header {
    text-align: center;
    margin-bottom: 32px;
}

.calculator-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.calculator-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calculator-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calculator-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calculator-group label i {
    color: var(--brand-primary);
    width: 16px;
}

/* Game Selector */
.game-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.game-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: var(--bg-section);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

.game-option i {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.game-option:hover {
    border-color: var(--border-hover);
    background: rgba(124, 58, 237, 0.05);
}

.game-option.selected {
    border-color: var(--brand-primary);
    background: rgba(124, 58, 237, 0.1);
    color: var(--text-white);
}

.game-option.selected i {
    color: var(--brand-primary);
}

/* RAM Slider */
.ram-slider-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ram-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ram-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
    font-family: var(--font-mono);
}

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

.ram-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--brand-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
    transition: transform 0.15s ease;
}

.ram-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.ram-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--brand-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.ram-marks {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.ram-mark {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* Player Count Indicator */
.player-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-md);
}

.player-indicator i {
    color: #22c55e;
    font-size: 1.1rem;
}

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

.player-indicator strong {
    color: var(--text-white);
}

/* Addons Checkboxes */
.addon-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.addon-checkbox:hover {
    border-color: var(--border-hover);
}

.addon-checkbox.selected {
    border-color: var(--brand-primary);
    background: rgba(124, 58, 237, 0.05);
}

.addon-checkbox input {
    display: none;
}

.addon-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.addon-checkbox.selected .addon-checkmark {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.addon-checkmark i {
    color: white;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.addon-checkbox.selected .addon-checkmark i {
    opacity: 1;
}

.addon-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.addon-checkbox.selected .addon-name {
    color: var(--text-white);
}

.addon-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* Calculator Summary */
.calculator-summary {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.summary-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.summary-header h4 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.summary-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: var(--font-mono);
    line-height: 1;
}

.summary-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.summary-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.summary-item-label {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item-label i {
    color: var(--brand-primary);
    width: 16px;
    font-size: 0.85rem;
}

.summary-item-value {
    color: var(--text-white);
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}

.summary-total-label {
    color: var(--text-white);
}

.summary-total-value {
    color: var(--brand-primary);
    font-family: var(--font-mono);
    font-size: 1.25rem;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.summary-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.summary-note i {
    color: #22c55e;
    margin-right: 4px;
}

/* Coming Soon Overlay */
.calculator-coming-soon {
    position: relative;
}

.calculator-coming-soon::after {
    content: 'Pricing Coming Soon';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    z-index: 10;
}

/* Calculator Responsive */
@media (max-width: 1024px) {
    .calculator-grid {
        gap: 24px;
    }

    .game-selector {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-calculator {
        padding: 24px 20px;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .game-selector {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .game-option {
        padding: 10px 6px;
        font-size: 0.7rem;
    }

    .game-option i {
        font-size: 1.1rem;
    }

    .calculator-summary {
        order: -1;
        padding: 20px;
    }

    .summary-price {
        font-size: 2.5rem;
    }

    .addon-checkbox {
        padding: 10px 12px;
    }

    .addon-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pricing-calculator {
        padding: 20px 16px;
    }

    .game-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .summary-price {
        font-size: 2rem;
    }

    .calculator-header h3 {
        font-size: 1.25rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    body {
        background: white;
        color: black;
    }

    nav.navbar, .menu-wrap, footer, .cd-top, .infonews {
        display: none;
    }
}
