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

:root {
    --solana-purple: #9945FF;
    --solana-green: #14F195;
    --solana-blue: #00D4AA;
    --dark-bg: #0E0E14;
    --darker-bg: #0A0A0F;
    --card-bg: #16161F;
    --card-bg-light: #1C1C28;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A3BD;
    --border-color: rgba(153, 69, 255, 0.25);
    --glow-purple: rgba(153, 69, 255, 0.5);
    --glow-green: rgba(20, 241, 149, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0E0E14;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== GLOBAL SCROLLBAR STYLES ==================== */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(153, 69, 255, 0.5) rgba(255, 255, 255, 0.05);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: rgba(153, 69, 255, 0.4);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(153, 69, 255, 0.6);
    box-shadow: 0 0 12px rgba(153, 69, 255, 0.4);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background - Optimized for Performance */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(153, 69, 255, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(20, 241, 149, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(0, 212, 170, 0.1), transparent);
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.35), rgba(153, 69, 255, 0.1), transparent 70%);
    top: -20%;
    left: -15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(20, 241, 149, 0.3), rgba(20, 241, 149, 0.08), transparent 70%);
    top: 30%;
    right: -20%;
    animation-delay: 6s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.28), rgba(0, 212, 170, 0.08), transparent 70%);
    bottom: 0%;
    left: 20%;
    animation-delay: 12s;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.25), rgba(20, 241, 149, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 18s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(60px, 80px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translate(-40px, -60px) scale(0.95);
        opacity: 0.9;
    }
    75% {
        transform: translate(80px, -40px) scale(1.05);
        opacity: 1;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--solana-purple) 0%, var(--solana-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(14, 14, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(153, 69, 255, 0.15);
}

.navbar {
    padding: 14px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-rocket {
    animation: rocketFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

.logo:hover .logo-rocket {
    animation: rocketLaunch 0.6s ease-out forwards;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-12px) rotate(-5deg) scale(1.1);
    }
    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0A3BD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    padding: 10px 16px;
    border-radius: 10px;
}

.nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(153, 69, 255, 0.12);
}

.nav-link:hover svg {
    transform: translateY(-2px);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: rgba(153, 69, 255, 0.15);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Mobile Overlay Menu */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 100px 30px 40px;
    gap: 20px;
}

.mobile-nav-item {
    width: 100%;
    max-width: 320px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 18px;
    padding: 18px 24px;
    background: rgba(153, 69, 255, 0.08);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(153, 69, 255, 0.2);
    border-color: var(--solana-purple);
    transform: translateX(8px);
}

.mobile-nav-link svg {
    width: 22px;
    height: 22px;
    color: var(--solana-purple);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 320px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(153, 69, 255, 0.2);
}

.mobile-btn-signin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid rgba(153, 69, 255, 0.4);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.mobile-btn-signin:hover {
    background: rgba(153, 69, 255, 0.15);
    border-color: var(--solana-purple);
}

.mobile-btn-start {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--solana-purple) 0%, var(--solana-green) 100%);
    border: none;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.4);
}

.mobile-btn-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(153, 69, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--solana-purple) 0%, var(--solana-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(153, 69, 255, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--solana-green) 0%, var(--solana-purple) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.5);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(153, 69, 255, 0.12);
    color: var(--text-primary);
    border: 1px solid rgba(153, 69, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(153, 69, 255, 0.2);
    border-color: var(--solana-purple);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

/* ========== NEW PREMIUM HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 70% at 50% 0%, rgba(153, 69, 255, 0.2), transparent 60%),
        radial-gradient(ellipse 80% 50% at 100% 30%, rgba(20, 241, 149, 0.15), transparent 50%);
    z-index: -1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-top-section {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.15), rgba(20, 241, 149, 0.08));
    border: 1px solid rgba(153, 69, 255, 0.35);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(153, 69, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(153, 69, 255, 0.5), 0 0 60px rgba(20, 241, 149, 0.2);
    }
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title .gradient-text {
    display: block;
    font-size: 72px;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Platform Pills */
.hero-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(22, 22, 31, 0.8);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.platform-pill:hover {
    background: rgba(153, 69, 255, 0.15);
    border-color: var(--solana-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.25);
}

.platform-pill-icon {
    font-size: 18px;
}

.platform-pill-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
}

.hero-stat-card {
    background: rgba(22, 22, 31, 0.7);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--solana-purple), var(--solana-green));
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-stat-card:hover {
    border-color: var(--solana-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(153, 69, 255, 0.2);
}

.hero-stat-card:hover::before {
    opacity: 1;
}

.hero-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--solana-purple) 0%, var(--solana-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Live Server Status */
.server-status-bar {
    width: 100%;
    max-width: 800px;
    background: rgba(22, 22, 31, 0.8);
    border: 1px solid rgba(20, 241, 149, 0.3);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.status-live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-live-dot {
    width: 10px;
    height: 10px;
    background: var(--solana-green);
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(20, 241, 149, 0);
    }
}

.status-live-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--solana-green);
}

.status-metrics {
    display: flex;
    gap: 30px;
}

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

/* ============================================
   DOCUMENTATION & API PAGES
   ============================================ */

/* Quick Links */
.docs-quick-links {
    padding: 0 0 40px;
    margin-top: -20px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(145deg, rgba(20, 18, 30, 0.95), rgba(15, 12, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    border-color: rgba(153, 69, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(153, 69, 255, 0.15);
}

.quick-link-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.2));
    border-radius: 14px;
    margin-bottom: 16px;
    color: #14F195;
}

.quick-link-card h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.quick-link-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* Documentation Steps */
.docs-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.docs-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.docs-step:hover {
    border-color: rgba(153, 69, 255, 0.3);
}

.docs-step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.docs-step-content h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
}

.docs-step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Code Blocks */
.docs-code-block {
    background: #0d0d14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 16px 0;
}

.docs-code-block.small {
    font-size: 12px;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-header span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.copy-btn {
    background: rgba(153, 69, 255, 0.2);
    border: 1px solid rgba(153, 69, 255, 0.3);
    color: #9945FF;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(153, 69, 255, 0.3);
}

.docs-code-block pre {
    margin: 0;
    padding: 16px;
    overflow-x: auto;
}

.docs-code-block code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #e4e4e7;
    line-height: 1.6;
}

/* Command Grid */
.docs-command-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.docs-command-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.docs-command-item code {
    color: #14F195;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.docs-command-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Settings Grid */
.docs-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.docs-setting-card {
    padding: 20px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.setting-header h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.setting-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(153, 69, 255, 0.2);
    color: #9945FF;
    font-weight: 600;
}

.setting-badge.optional {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.docs-setting-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0 0 12px;
}

.setting-example {
    margin-bottom: 10px;
}

.setting-example code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #14F195;
    background: rgba(20, 241, 149, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
    display: block;
}

.setting-range {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Presets */
.docs-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.docs-preset-card {
    padding: 20px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
}

.docs-preset-card.featured {
    border-color: rgba(153, 69, 255, 0.4);
    box-shadow: 0 0 30px rgba(153, 69, 255, 0.1);
}

.preset-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin: 0 auto 12px;
}

.preset-icon.conservative {
    background: linear-gradient(135deg, #14F195, #0D9488);
}

.preset-icon.balanced {
    background: linear-gradient(135deg, #9945FF, #14F195);
}

.preset-icon.aggressive {
    background: linear-gradient(135deg, #FF6B6B, #9945FF);
}

.docs-preset-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
}

.docs-preset-card > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0 0 12px;
}

.docs-preset-card code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #14F195;
    background: rgba(20, 241, 149, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.docs-preset-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.docs-preset-card ul li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    padding: 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Platforms Grid */
.docs-platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.docs-platform-card {
    padding: 20px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
}

.docs-platform-card:hover {
    border-color: rgba(153, 69, 255, 0.3);
}

.platform-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 12px;
    object-fit: contain;
}

.docs-platform-card h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
}

.docs-platform-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0 0 12px;
    line-height: 1.5;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.platform-features span {
    font-size: 10px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.5);
}

.docs-platform-card code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #14F195;
}

/* Modes Grid */
.docs-modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.docs-mode-card {
    padding: 24px 20px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

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

.mode-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
}

.mode-icon.auto {
    background: linear-gradient(135deg, #9945FF, #7c3aed);
}

.mode-icon.manual {
    background: linear-gradient(135deg, #14F195, #0D9488);
}

.mode-icon.copy {
    background: linear-gradient(135deg, #3B82F6, #9945FF);
}

.mode-header h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.docs-mode-card > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0 0 12px;
    line-height: 1.5;
}

.docs-mode-card code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #14F195;
    background: rgba(20, 241, 149, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mode-features li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.mode-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #14F195;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Protection Grid */
.docs-protection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.protection-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.protection-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.2), rgba(20, 241, 149, 0.1));
    border-radius: 10px;
    color: #14F195;
    flex-shrink: 0;
}

.protection-item h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}

.protection-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

/* Sell Config */
.docs-sell-config {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.sell-option {
    padding: 20px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.sell-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sell-header.profit svg { color: #14F195; }
.sell-header.loss svg { color: #FF6B6B; }
.sell-header.trail svg { color: #3B82F6; }

.sell-header h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.sell-option > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0 0 14px;
}

.sell-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.sell-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    margin-bottom: 4px;
}

.sell-input-group code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #14F195;
    background: rgba(20, 241, 149, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
}

.sell-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-style: italic;
    margin: 0;
}

/* FAQ */
.docs-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.faq-item {
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px 16px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.faq-answer code {
    background: rgba(20, 241, 149, 0.1);
    color: #14F195;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

/* API Quick Info */
.api-quick-info {
    padding: 0 0 40px;
    margin-top: -20px;
}

.api-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.api-info-card {
    padding: 24px;
    background: linear-gradient(145deg, rgba(20, 18, 30, 0.95), rgba(15, 12, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.api-info-card h4 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.api-info-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0 0 8px;
}

.api-url {
    display: flex;
    align-items: center;
    gap: 10px;
}

.api-url code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #14F195;
}

.copy-small-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 6px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-small-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.api-info-card code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
}

.rate-limits {
    display: flex;
    gap: 12px;
}

.rate-limits span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* API Endpoint */
.api-endpoint {
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(145deg, rgba(20, 18, 32, 0.6), rgba(15, 12, 25, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

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

.method {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.method.get { background: rgba(20, 241, 149, 0.2); color: #14F195; }
.method.post { background: rgba(59, 130, 246, 0.2); color: #3B82F6; }
.method.put { background: rgba(249, 115, 22, 0.2); color: #F97316; }
.method.delete { background: rgba(239, 68, 68, 0.2); color: #EF4444; }

.endpoint-path {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #fff;
}

.api-endpoint > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 16px;
}

.api-endpoint h4 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0 12px;
}

/* Params Table */
.params-table {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.param-row {
    display: grid;
    grid-template-columns: 140px 80px 80px 1fr;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.param-row.header {
    background: rgba(255, 255, 255, 0.03);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.param-row code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #14F195;
}

.param-row span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.param-row .required {
    color: #FF6B6B;
    font-size: 11px;
    font-weight: 600;
}

.param-row .optional {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

/* WebSocket Events */
.ws-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.ws-event {
    padding: 16px;
    background: linear-gradient(145deg, rgba(25, 22, 38, 0.8), rgba(18, 15, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.ws-event h4 {
    color: #14F195;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    margin: 0 0 6px;
}

.ws-event > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0 0 12px;
}

/* Error Codes Table */
.error-codes-table {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
}

.error-row {
    display: grid;
    grid-template-columns: 80px 140px 1fr;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.error-row.header {
    background: rgba(255, 255, 255, 0.03);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.error-code {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #FF6B6B;
}

.error-row span:nth-child(2) {
    color: #fff;
    font-weight: 500;
}

.error-row span:nth-child(3) {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .quick-links-grid,
    .docs-platforms-grid,
    .docs-modes-grid,
    .docs-sell-config,
    .ws-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .api-info-grid,
    .docs-presets {
        grid-template-columns: 1fr;
    }
    
    .docs-settings-grid,
    .docs-protection-grid,
    .docs-command-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quick-links-grid,
    .docs-platforms-grid,
    .docs-modes-grid,
    .docs-sell-config,
    .ws-events-grid {
        grid-template-columns: 1fr;
    }
    
    .param-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .error-row {
        grid-template-columns: 60px 1fr;
    }
    
    .error-row span:nth-child(3) {
        grid-column: span 2;
        margin-top: 4px;
    }
}


.status-metric-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(153, 69, 255, 0.12);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--solana-purple);
}

.section-title {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

/* Platform Coverage Section */
.platform-coverage-section {
    margin-bottom: 80px;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(20, 241, 149, 0.05));
    border: 1px solid rgba(153, 69, 255, 0.25);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.platform-coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--solana-purple), var(--solana-green), var(--solana-purple));
}

.coverage-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
}

.coverage-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.platform-card:hover {
    border-color: var(--solana-purple);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(153, 69, 255, 0.3);
}

.platform-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.platform-card-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 16px;
}

.platform-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.platform-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Advanced Trading Features Section */
.trading-features-section {
    margin-bottom: 60px;
}

.features-section-title {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 55px;
    background: linear-gradient(135deg, var(--solana-purple) 0%, var(--solana-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 34px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--solana-purple), var(--solana-green));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: var(--solana-purple);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(153, 69, 255, 0.25);
}

.feature-card.featured {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.12), rgba(20, 241, 149, 0.08));
    border: 2px solid var(--solana-purple);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.15), rgba(20, 241, 149, 0.08));
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--solana-purple);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.check {
    color: var(--solana-green);
    font-weight: bold;
    font-size: 16px;
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 38px;
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--solana-purple);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(153, 69, 255, 0.25);
}

.step-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--solana-purple) 0%, var(--solana-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
}

.step-title {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.6;
}

.step-visual {
    margin-top: 22px;
}

.wallet-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.wallet-icon {
    width: 52px;
    height: 52px;
    background: rgba(153, 69, 255, 0.12);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.config-display {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.config-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.config-line:last-child {
    margin-bottom: 0;
}

.profit-display {
    background: rgba(20, 241, 149, 0.12);
    border: 1px solid var(--solana-green);
    border-radius: 12px;
    padding: 26px;
}

.profit-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--solana-green);
}

.profit-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.step-arrow {
    font-size: 32px;
    color: var(--solana-purple);
    font-weight: bold;
}

/* ========== PREMIUM PRICING SECTION ========== */
.pricing {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.pricing-card-new {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-new:hover {
    border-color: var(--solana-purple);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(153, 69, 255, 0.35);
}

.pricing-card-featured {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.15), rgba(20, 241, 149, 0.08));
    border: 3px solid var(--solana-purple);
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.pricing-card-elite {
    border: 3px solid var(--solana-green);
}

.popular-badge-new {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-green));
    color: white;
    padding: 8px 26px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(153, 69, 255, 0.5);
}

.elite-badge-new {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--solana-green), var(--solana-blue));
    color: white;
    padding: 8px 26px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(20, 241, 149, 0.5);
}

.trial-badge-new {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 8px 26px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.pricing-header-new {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 26px;
    border-bottom: 2px solid rgba(153, 69, 255, 0.15);
}

.pricing-icon-new {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.2));
    border-radius: 16px;
    color: var(--solana-purple);
}

.pricing-icon-new.elite {
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.2), rgba(0, 212, 255, 0.2));
    color: var(--solana-green);
}

.pricing-title-new {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 800;
}

.pricing-price-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.price-amount-new {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--solana-purple) 0%, var(--solana-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency-new {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-period-new {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.pricing-features-new {
    list-style: none;
    flex: 1;
    margin-bottom: 30px;
}

.pricing-features-new li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(153, 69, 255, 0.08);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features-new li:last-child {
    border-bottom: none;
}

.pricing-features-new .check-icon {
    color: var(--solana-green);
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta-new {
    margin-top: auto;
}

.btn-pricing {
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-green));
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.4);
}

.btn-pricing-primary:hover {
    box-shadow: 0 12px 40px rgba(153, 69, 255, 0.6);
    transform: translateY(-3px);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(153, 69, 255, 0.4);
}

.btn-pricing-outline:hover {
    background: rgba(153, 69, 255, 0.15);
    border-color: var(--solana-purple);
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(20, 241, 149, 0.05));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.cta-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    line-height: 1.7;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(153, 69, 255, 0.12);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--solana-purple);
    border-color: var(--solana-purple);
    color: white;
    transform: translateY(-4px);
}

.footer-column h4 {
    font-size: 15px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--solana-purple);
    padding-left: 6px;
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
}

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

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--solana-purple);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-green));
    border: none;
    border-radius: 14px;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(153, 69, 255, 0.6);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title .gradient-text {
        font-size: 56px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.featured {
        grid-column: span 2;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
    
    .pricing-grid-new {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card-featured {
        transform: none;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .gradient-text {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-platforms {
        gap: 10px;
    }
    
    .platform-pill {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .hero-stat-card {
        padding: 22px 16px;
    }
    
    .hero-stat-value {
        font-size: 26px;
    }
    
    .server-status-bar {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }
    
    .status-metrics {
        width: 100%;
        justify-content: space-around;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.featured {
        grid-column: span 1;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-title .gradient-text {
        font-size: 34px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-stat-value {
        font-size: 22px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
    
    .platform-pill {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .platform-pill-icon {
        font-size: 14px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pricing-card-new {
        padding: 35px 24px;
    }
}

/* ===========================================
   NEW FOOTER STYLES
   =========================================== */

.footer {
    position: relative;
    background: linear-gradient(180deg, rgba(20, 10, 35, 0.98) 0%, rgba(10, 5, 20, 1) 100%);
    padding: 0;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(153, 69, 255, 0.5), rgba(20, 241, 149, 0.5), transparent);
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-content {
    flex: 1;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 450px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(153, 69, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(153, 69, 255, 0.4);
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-brand-section {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.2));
    border-color: rgba(153, 69, 255, 0.4);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

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

.footer-list li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-list li a:hover {
    color: #14F195;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.security-badge svg {
    color: #14F195;
}

/* ===========================================
   LIVE CHAT WIDGET
   =========================================== */

.live-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chat-toggle-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(153, 69, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(153, 69, 255, 0.5);
}

.chat-toggle-btn .chat-icon,
.chat-toggle-btn .close-icon {
    position: absolute;
    color: #fff;
    transition: all 0.3s ease;
}

.chat-toggle-btn .close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.live-chat-widget.open .chat-toggle-btn .chat-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.live-chat-widget.open .chat-toggle-btn .close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff4757;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0510;
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    background: #0f0820;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.live-chat-widget.open .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.15), rgba(20, 241, 149, 0.15));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.chat-header-text h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.chat-status.offline {
    color: rgba(255, 255, 255, 0.5);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b6b;
}

.chat-close-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Chat Body */
.chat-body {
    padding: 24px 20px;
    max-height: 450px;
    overflow-y: auto;
}

.chat-offline-message {
    text-align: center;
    padding: 10px 0 20px;
}

.offline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.chat-offline-message h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.chat-offline-message p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.2);
    border-radius: 30px;
    color: #14F195;
    font-size: 13px;
}

.response-time strong {
    color: #fff;
}

/* Chat Form */
.chat-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

.contact-toggle {
    display: flex;
    gap: 10px;
}

.toggle-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.toggle-btn.active {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.2));
    border-color: rgba(153, 69, 255, 0.4);
    color: #fff;
}

.chat-form input,
.chat-form textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: none;
}

.chat-form input:focus,
.chat-form textarea:focus {
    outline: none;
    border-color: rgba(153, 69, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.chat-form input::placeholder,
.chat-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Submit Button */
.chat-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.chat-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(153, 69, 255, 0.4);
}

.chat-submit-btn .btn-text,
.chat-submit-btn .btn-loader,
.chat-submit-btn .btn-success {
    transition: all 0.3s ease;
}

.chat-submit-btn .btn-loader,
.chat-submit-btn .btn-success {
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
}

.chat-submit-btn.loading .btn-text {
    opacity: 0;
    transform: scale(0.5);
}

.chat-submit-btn.loading .btn-loader {
    opacity: 1;
    transform: scale(1);
}

.chat-submit-btn.success .btn-text,
.chat-submit-btn.success .btn-loader {
    opacity: 0;
    transform: scale(0.5);
}

.chat-submit-btn.success .btn-success {
    opacity: 1;
    transform: scale(1);
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Message */
.chat-success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.3);
    border-radius: 12px;
    color: #14F195;
    font-size: 14px;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.chat-success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   LEGAL PAGES
   =========================================== */

.legal-page {
    padding-top: 80px;
    min-height: 100vh;
}

.legal-hero {
    padding: 80px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, rgba(153, 69, 255, 0.08) 0%, transparent 100%);
}

.legal-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.legal-updated {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0 100px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 24px 0 12px;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section ul li strong {
    color: #fff;
}

.legal-section a {
    color: #14F195;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #9945FF;
}

/* Disclaimer Warning Box */
.disclaimer-warning {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    margin-bottom: 40px;
}

.disclaimer-warning svg {
    flex-shrink: 0;
    color: #ffc107;
}

.disclaimer-warning p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-table th {
    background: rgba(153, 69, 255, 0.1);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.cookie-table td {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* ===========================================
   RESPONSIVE - FOOTER & CHAT
   =========================================== */

@media (max-width: 1024px) {
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-brand-section {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 40px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .chat-window {
        width: calc(100vw - 48px);
        right: -12px;
    }
    
    .legal-title {
        font-size: 36px;
    }
    
    .legal-content {
        padding: 40px 20px 80px;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .live-chat-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chat-toggle-btn {
        width: 54px;
        height: 54px;
    }
    
    .chat-window {
        bottom: 70px;
        right: -8px;
        width: calc(100vw - 32px);
    }
    
    .legal-title {
        font-size: 28px;
    }
    
    .disclaimer-warning {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================================
   ENHANCED LEGAL PAGES DESIGN
   =========================================== */

.legal-hero-enhanced {
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.legal-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.legal-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.4), transparent 70%);
    top: -200px;
    left: -100px;
}

.legal-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 241, 149, 0.3), transparent 70%);
    bottom: -150px;
    right: -100px;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(153, 69, 255, 0.15);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 30px;
    color: #9945FF;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.legal-badge-warning {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.legal-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.legal-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.legal-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.legal-meta-item svg {
    color: rgba(255, 255, 255, 0.4);
}

/* Warning Banner */
.legal-warning-banner {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 107, 107, 0.1));
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    padding: 24px 0;
}

.warning-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.warning-banner-content svg {
    flex-shrink: 0;
    color: #ffc107;
}

.warning-banner-content h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.warning-banner-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Legal Content Section */
.legal-content-section {
    padding: 50px 0 100px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar */
.legal-sidebar {
    position: relative;
}

.legal-sidebar-sticky {
    position: sticky;
    top: 100px;
    background: linear-gradient(145deg, rgba(20, 18, 30, 0.95), rgba(15, 12, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.legal-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-nav-link {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.legal-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.legal-nav-link.active {
    color: #14F195;
    background: rgba(20, 241, 149, 0.1);
    border-left-color: #14F195;
}

/* Main Content */
.legal-main {
    max-width: 800px;
}

.legal-article {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legal-section-enhanced {
    scroll-margin-top: 100px;
    background: linear-gradient(145deg, rgba(20, 18, 30, 0.95), rgba(15, 12, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.legal-section-enhanced:hover {
    border-color: rgba(153, 69, 255, 0.2);
    box-shadow: 
        0 8px 40px rgba(153, 69, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(153, 69, 255, 0.3);
}

.legal-section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.legal-section-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.85;
}

.legal-section-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 24px 0 14px;
    padding-left: 14px;
    border-left: 3px solid #14F195;
}

.legal-section-content p {
    margin-bottom: 16px;
}

.legal-section-content a {
    color: #14F195;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section-content a:hover {
    color: #9945FF;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border-radius: 50%;
}

.legal-list li strong {
    color: #fff;
}

.legal-list-check {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list-check li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}

.legal-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 241, 149, 0.15);
    border-radius: 50%;
    color: #14F195;
    font-size: 12px;
    font-weight: 700;
}

/* Info Boxes */
.legal-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(145deg, rgba(153, 69, 255, 0.15), rgba(153, 69, 255, 0.08));
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 12px;
    margin: 20px 0;
}

.legal-highlight-box svg {
    flex-shrink: 0;
    color: #9945FF;
    margin-top: 2px;
}

.legal-highlight-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.legal-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(145deg, rgba(20, 241, 149, 0.12), rgba(20, 241, 149, 0.06));
    border: 1px solid rgba(20, 241, 149, 0.3);
    border-radius: 12px;
    margin: 20px 0;
}

.legal-warning-box svg {
    flex-shrink: 0;
    color: #14F195;
}

.legal-warning-box h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.legal-warning-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.legal-danger-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.12), rgba(255, 107, 107, 0.06));
    border: 1px solid rgba(255, 107, 107, 0.35);
    border-radius: 12px;
    margin: 20px 0;
}

.legal-danger-box.large {
    padding: 32px;
}

.legal-danger-box svg {
    flex-shrink: 0;
    color: #ff6b6b;
}

.legal-danger-box h4 {
    color: #ff6b6b;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.legal-danger-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Info Cards Grid */
.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.legal-info-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.legal-info-card {
    padding: 20px;
    background: linear-gradient(145deg, rgba(30, 25, 45, 0.8), rgba(20, 15, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.legal-info-card:hover {
    background: linear-gradient(145deg, rgba(40, 32, 60, 0.9), rgba(25, 20, 40, 0.95));
    border-color: rgba(153, 69, 255, 0.4);
    transform: translateY(-2px);
}

.legal-info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14F195;
}

.legal-info-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.legal-info-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Security Grid */
.legal-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.legal-security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(145deg, rgba(30, 25, 45, 0.8), rgba(20, 15, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.legal-security-item:hover {
    border-color: rgba(20, 241, 149, 0.3);
}

.legal-security-item svg {
    color: #14F195;
}

.legal-security-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Rights Grid */
.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.legal-right-card {
    padding: 18px;
    background: linear-gradient(145deg, rgba(30, 25, 45, 0.8), rgba(20, 15, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legal-right-card:hover {
    border-color: rgba(20, 241, 149, 0.3);
    transform: translateY(-2px);
}

.legal-right-card h4 {
    color: #14F195;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.legal-right-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Contact Box */
.legal-contact-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(30, 25, 45, 0.8), rgba(20, 15, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 20px;
}

.legal-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.legal-contact-item svg {
    color: #14F195;
}

/* Feature Grid */
.legal-feature-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.legal-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.legal-feature-item svg {
    color: #14F195;
    flex-shrink: 0;
}

.legal-feature-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Pricing Mini */
.legal-pricing-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.legal-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.legal-price-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.legal-price-value {
    color: #14F195;
    font-size: 15px;
    font-weight: 600;
}

/* Risk Grid */
.legal-risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.legal-risk-item {
    padding: 24px;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 12px;
}

.risk-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 107, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ff6b6b;
}

.legal-risk-item h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.legal-risk-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Cookie Table */
.legal-cookie-table {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(20, 18, 30, 0.8), rgba(15, 12, 25, 0.9));
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 100px;
    padding: 12px 18px;
    background: linear-gradient(145deg, rgba(25, 20, 40, 0.7), rgba(20, 15, 35, 0.8));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.cookie-row.cookie-header {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.1));
    font-weight: 600;
    color: #fff;
    font-size: 13px;
}

.cookie-row span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Browser Grid */
.legal-browser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.legal-browser-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.legal-browser-item h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.legal-browser-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* Legal Pages Responsive */
@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-sidebar {
        display: none;
    }
    
    .legal-hero-title {
        font-size: 42px;
    }
    
    .legal-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legal-hero-enhanced {
        padding: 140px 0 60px;
    }
    
    .legal-hero-title {
        font-size: 32px;
    }
    
    .legal-hero-subtitle {
        font-size: 16px;
    }
    
    .legal-section-header h2 {
        font-size: 22px;
    }
    
    .legal-info-grid,
    .legal-security-grid,
    .legal-rights-grid,
    .legal-risk-grid,
    .legal-browser-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-info-grid.two-col {
        grid-template-columns: 1fr;
    }
    
    .warning-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .cookie-row.cookie-header {
        display: none;
    }
    
    .legal-danger-box,
    .legal-warning-box,
    .legal-highlight-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
}

.contact-section {
    padding: 50px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form Card */
.contact-form-wrapper {
    position: relative;
}

.contact-card {
    background: linear-gradient(145deg, rgba(20, 18, 30, 0.95), rgba(15, 12, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-card-header {
    margin-bottom: 32px;
}

.contact-card-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.contact-card-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(153, 69, 255, 0.5);
    background: rgba(153, 69, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(153, 69, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.form-group select option {
    background: #1a1a24;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 18px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
}

.input-with-icon input {
    padding-left: 36px;
}

/* Checkbox */
.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: linear-gradient(135deg, #9945FF, #14F195);
    border-color: transparent;
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: #14F195;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.4);
}

.contact-submit-btn:disabled {
    cursor: not-allowed;
}

.btn-loader,
.btn-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit-btn.loading .btn-text {
    display: none;
}

.contact-submit-btn.loading .btn-loader {
    display: flex;
}

.contact-submit-btn.success .btn-text,
.contact-submit-btn.success .btn-loader {
    display: none;
}

.contact-submit-btn.success .btn-success {
    display: flex;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Message */
.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.form-success-message.show {
    display: flex;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.2), rgba(20, 241, 149, 0.1));
    border-radius: 50%;
    margin-bottom: 24px;
    color: #14F195;
}

.form-success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.form-success-message p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 0 0 24px;
}

.send-another-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-another-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: linear-gradient(145deg, rgba(20, 18, 30, 0.95), rgba(15, 12, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(153, 69, 255, 0.3);
}

/* Response Card */
.response-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.1), rgba(20, 241, 149, 0.05));
    border-color: rgba(20, 241, 149, 0.2);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 241, 149, 0.15);
    border-radius: 12px;
    color: #14F195;
}

.info-card-content h3 {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px;
}

.response-time-value {
    font-size: 24px;
    font-weight: 700;
    color: #14F195;
    margin: 0;
}

.response-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Address Card */
.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #9945FF;
}

.info-card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.address-details {
    padding-left: 30px;
}

.address-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 4px;
    line-height: 1.5;
}

.address-line.country {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* Phone Card */
.phone-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 4px;
    padding-left: 30px;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #14F195;
}

.phone-hours {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 30px;
}

/* Quick Contact Card */
.quick-contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
}

.quick-contact-options {
    display: flex;
    gap: 10px;
}

.quick-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-option.telegram {
    background: rgba(0, 136, 204, 0.2);
}

.quick-option.telegram:hover {
    background: rgba(0, 136, 204, 0.3);
}

.quick-option.discord {
    background: rgba(88, 101, 242, 0.2);
}

.quick-option.discord:hover {
    background: rgba(88, 101, 242, 0.3);
}

.quick-option.twitter {
    background: rgba(255, 255, 255, 0.1);
}

.quick-option.twitter:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* FAQ Shortcut Card */
.faq-shortcut-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(153, 69, 255, 0.05));
    border-color: rgba(153, 69, 255, 0.2);
}

.faq-shortcut-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(153, 69, 255, 0.15);
    border-radius: 12px;
    color: #9945FF;
    flex-shrink: 0;
}

.faq-shortcut-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.faq-shortcut-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px;
    line-height: 1.5;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #9945FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: #14F195;
}

.faq-link svg {
    transition: transform 0.3s ease;
}

.faq-link:hover svg {
    transform: translateX(4px);
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .response-card,
    .faq-shortcut-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 28px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .response-card,
    .faq-shortcut-card {
        grid-column: span 1;
    }
    
    .quick-contact-options {
        flex-wrap: wrap;
    }
    
    .quick-option {
        flex: 1;
        justify-content: center;
        min-width: 100px;
    }
}
