/* ============================================
   FF Diamond Store - Premium Gaming Theme
   Neon Blue & Purple Dark Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Neon Gaming */
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --primary-glow: rgba(0, 212, 255, 0.4);
    
    --secondary: #a855f7;
    --secondary-dark: #7c3aed;
    --secondary-glow: rgba(168, 85, 247, 0.4);
    
    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --bg-input: #0d0d12;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    
    /* Accent Colors */
    --accent-gold: #ffd700;
    --accent-silver: #c0c0c0;
    --accent-bronze: #cd7f32;
    --accent-success: #22c55e;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --shadow-glow-purple: 0 0 30px var(--secondary-glow);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-highlight {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cart-btn {
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    color: var(--primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    position: relative;
}

.cart-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.cart-count {
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

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

.neon-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orbFloat 8s ease-in-out infinite;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 10%;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 10%;
    right: 10%;
    animation-delay: -4s;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

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

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.diamond-showcase {
    position: relative;
    width: 300px;
    height: 300px;
}

.diamond-float {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.diamond-icon {
    font-size: 8rem;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: diamondPulse 2s ease-in-out infinite;
}

.diamond-ring {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: -1.5s;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), var(--shadow-glow-purple);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: var(--transition-slow);
}

.cta-btn:hover .btn-glow {
    transform: translateX(100%);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 1.5rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

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

/* ============================================
   DIAMOND PACKS
   ============================================ */
.diamond-packs {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.pack-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.pack-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pack-card.popular {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.pack-card.popular:hover {
    box-shadow: var(--shadow-glow-purple);
}

.pack-card.best-value {
    border-color: var(--accent-gold);
}

.pack-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.pack-card:hover .pack-glow {
    opacity: 0.3;
}

.popular-badge,
.value-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-badge {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.pack-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pack-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pack-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-unit {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pack-body {
    margin-bottom: 1.5rem;
}

.pack-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pack-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.pack-price .amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

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

.pack-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.buy-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1rem;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.buy-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition-slow);
}

.buy-btn:hover .btn-shine {
    left: 100%;
}

/* ============================================
   MEMBERSHIP CTA
   ============================================ */
.membership-cta {
    padding: 4rem 2rem;
    background: var(--gradient-glow);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.cta-benefits {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   CART MODAL
   ============================================ */
.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.cart-modal.active {
    display: flex;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cart-panel {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--bg-card);
    border-left: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-btn:hover {
    color: var(--primary);
}

.cart-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart p {
    color: var(--text-secondary);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-input);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.cart-item-icon {
    font-size: 2rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    display: block;
    font-weight: 600;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--accent-error);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    opacity: 1;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.total-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.checkout-btn {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem;
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-section {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.checkout-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.checkout-header {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--primary);
}

.checkout-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: var(--text-secondary);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.card-body {
    padding: 1.5rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-input);
    border-radius: var(--radius-md);
}

.item-icon {
    font-size: 2.5rem;
}

.item-details {
    flex: 1;
}

.item-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.item-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.discount-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-top: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-md);
}

.discount-label {
    color: var(--accent-success);
}

.discount-amount {
    font-weight: 700;
    color: var(--accent-success);
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.total-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

/* Input Styles */
.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.neon-input {
    width: 100%;
    background: var(--bg-input);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.neon-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.input-hint {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Payment Card */
.payment-card {
    border-color: rgba(0, 212, 255, 0.2);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-badge {
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
}

.method-name {
    font-weight: 600;
}

.upi-details {
    background: var(--bg-input);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.upi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.upi-row:last-child {
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.upi-value-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upi-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.upi-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.8rem;
    color: var(--primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.payment-steps {
    margin-bottom: 1.5rem;
}

.payment-steps h4 {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.payment-steps ol {
    padding-left: 1.25rem;
    color: var(--text-secondary);
}

.payment-steps li {
    margin-bottom: 0.5rem;
}

.payment-apps {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.apps-icons {
    display: flex;
    gap: 0.5rem;
}

.app-icon {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Upload Area */
.upload-area {
    border: 2px dashed rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

.upload-placeholder {
    pointer-events: none;
}

.upload-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.upload-text {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.upload-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.upload-preview {
    position: relative;
}

.upload-preview img {
    max-width: 100%;
    border-radius: var(--radius-md);
}

.remove-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--accent-error);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.remove-btn:hover {
    transform: scale(1.1);
}

/* Sticky Card */
.sticky-card {
    position: sticky;
    top: 100px;
}

.summary-list {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item.total {
    border-top: 2px solid var(--primary);
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.summary-item.total .summary-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.summary-value.discount {
    color: var(--accent-success);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.submit-order-btn {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    margin-bottom: 1rem;
}

.submit-order-btn:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.submit-order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.terms-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   ORDER CONFIRMATION
   ============================================ */
.confirmation-section {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.confirmation-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.confirmation-container {
    width: 100%;
    max-width: 700px;
}

.confirmation-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
}

/* Success Animation */
.success-animation {
    margin-bottom: 2rem;
}

.success-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.checkmark {
    width: 100%;
    height: 100%;
}

.checkmark-circle {
    stroke: var(--accent-success);
    stroke-width: 3;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--accent-success);
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.success-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-success);
    border-radius: 50%;
    opacity: 0;
}

.p1 { top: 0; left: 50%; animation: particle 1s ease-out 0.8s forwards; }
.p2 { top: 20%; right: 0; animation: particle 1s ease-out 0.9s forwards; }
.p3 { bottom: 20%; right: 0; animation: particle 1s ease-out 1s forwards; }
.p4 { bottom: 0; left: 50%; animation: particle 1s ease-out 1.1s forwards; }
.p5 { bottom: 20%; left: 0; animation: particle 1s ease-out 1.2s forwards; }
.p6 { top: 20%; left: 0; animation: particle 1s ease-out 1.3s forwards; }
.p7 { top: 0; right: 30%; animation: particle 1s ease-out 1.4s forwards; }
.p8 { bottom: 0; right: 30%; animation: particle 1s ease-out 1.5s forwards; }

.confirmation-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.confirmation-message {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.order-id-box {
    background: var(--bg-input);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.order-id-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.order-id-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.order-id-value span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.order-details {
    text-align: left;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-label {
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
}

.status-pending {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-warning);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-warning);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Timeline */
.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 50px;
    width: 2px;
    height: calc(100% - 30px);
    background: rgba(255, 255, 255, 0.1);
}

.timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    background: var(--bg-input);
    color: var(--text-muted);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item.active .timeline-icon {
    background: var(--accent-success);
    color: var(--bg-dark);
    border-color: var(--accent-success);
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

/* Support Info */
.support-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.support-icon {
    font-size: 2rem;
}

.support-text p {
    margin-bottom: 0.25rem;
}

.support-email {
    color: var(--primary);
    font-weight: 600;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   MEMBERSHIP PAGE
   ============================================ */
.membership-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    text-align: center;
}

.membership-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.membership-tiers {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.tier-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.bronze {
    border-color: var(--accent-bronze);
}

.tier-card.silver {
    border-color: var(--accent-silver);
    transform: scale(1.05);
}

.tier-card.gold {
    border-color: var(--accent-gold);
}

.tier-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.tier-card:hover .tier-glow {
    opacity: 1;
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tier-name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.tier-card.bronze .tier-name { color: var(--accent-bronze); }
.tier-card.silver .tier-name { color: var(--accent-silver); }
.tier-card.gold .tier-name { color: var(--accent-gold); }

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.tier-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.tier-price .amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
}

.tier-price .period {
    color: var(--text-secondary);
}

.tier-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tier-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-features .feature.disabled {
    opacity: 0.4;
}

.feature-check {
    color: var(--accent-success);
    font-weight: 700;
}

.feature-x {
    color: var(--text-muted);
}

.tier-btn {
    width: 100%;
    background: transparent;
    border: 2px solid;
    border-radius: var(--radius-md);
    padding: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.tier-card.bronze .tier-btn {
    border-color: var(--accent-bronze);
    color: var(--accent-bronze);
}

.tier-card.bronze .tier-btn:hover {
    background: var(--accent-bronze);
    color: var(--bg-dark);
}

.tier-card.silver .tier-btn {
    border-color: var(--accent-silver);
    color: var(--accent-silver);
}

.tier-card.silver .tier-btn:hover {
    background: var(--accent-silver);
    color: var(--bg-dark);
}

.tier-card.gold .tier-btn {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.tier-card.gold .tier-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* Comparison Table */
.comparison-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.bronze-col { color: var(--accent-bronze); }
.silver-col { color: var(--accent-silver); }
.gold-col { color: var(--accent-gold); }

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary);
}

.membership-cta-section {
    padding: 4rem 2rem;
    background: var(--gradient-glow);
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-section {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.admin-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.admin-header {
    margin-bottom: 2rem;
}

.admin-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.admin-subtitle {
    color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
}

.stat-info {
    flex: 1;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

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

/* Orders Card */
.orders-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

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

.orders-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
}

.refresh-btn {
    background: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    color: var(--bg-dark);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Orders Table */
.orders-table-wrapper {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.orders-table th {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
}

.orders-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.03);
}

.empty-row td {
    padding: 3rem;
}

.empty-state {
    text-align: center;
}

.empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.order-id {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

.order-uid {
    font-family: monospace;
    background: var(--bg-input);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.order-amount {
    font-weight: 700;
    color: var(--primary);
}

.screenshot-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.screenshot-thumb:hover {
    transform: scale(1.1);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-warning);
}

.status-badge.verified {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.status-badge.completed {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-success);
}

.status-badge.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-error);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-badge.pending .status-dot {
    background: var(--accent-warning);
    animation: pulse 1.5s ease-in-out infinite;
}

.status-badge.verified .status-dot {
    background: var(--primary);
}

.status-badge.completed .status-dot {
    background: var(--accent-success);
}

.status-badge.cancelled .status-dot {
    background: var(--accent-error);
}

.order-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.8rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.action-btn.view {
    border-color: var(--primary);
    color: var(--primary);
}

/* Modals */
.order-modal,
.screenshot-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.order-modal.active,
.screenshot-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-panel {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: modalIn 0.3s ease;
}

.modal-panel.screenshot-panel {
    max-width: 800px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.screenshot-full {
    width: 100%;
    border-radius: var(--radius-md);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes diamondPulse {
    0%, 100% { filter: drop-shadow(0 0 30px var(--primary-glow)); }
    50% { filter: drop-shadow(0 0 50px var(--primary-glow)); }
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(0, -50px); }
    75% { transform: translate(-30px, -30px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes stroke {
    to { stroke-dashoffset: 0; }
}

@keyframes particle {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0) translate(var(--tx, 0), var(--ty, 0)); }
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-card {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .trust-container {
        gap: 1.5rem;
    }
    
    .pack-card.popular {
        transform: scale(1);
    }
    
    .tier-card.silver {
        transform: scale(1);
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .orders-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .orders-filters {
        width: 100%;
    }
    
    .filter-select {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .packs-grid {
        grid-template-columns: 1fr;
    }
    
    .pack-price .amount {
        font-size: 2rem;
    }
    
    .confirmation-card {
        padding: 1.5rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .orders-table th,
    .orders-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

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

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}