/* ==========================================================================
   🎨 DEVIX BRAND COLOR TOKENS & FONTS (AL-RAYAH STYLE)
   ========================================================================== */
:root {
    --bg-dark: #050608;
    --card-bg: rgba(10, 12, 16, 0.65);
    --card-bg-hover: rgba(16, 20, 26, 0.85);
    
    --color-cyan: #00ffff;
    --color-cyan-glow: rgba(0, 255, 255, 0.25);
    --color-cyan-bright: #33ffff;
    
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --text-gray: #64748b;
    
    --orange: #f97316;
    --orange-glow: rgba(249, 115, 22, 0.4);
    
    --font-cairo: 'Cairo', sans-serif;
    --font-outfit: 'Outfit', sans-serif;
    
    --border-glow: 1px solid rgba(0, 255, 255, 0.1);
    --border-light: 1px solid rgba(255, 255, 255, 0.05);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --transition-base: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   🔄 BASE RESET & SCROLLBARS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-cairo);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

.outfit {
    font-family: var(--font-outfit);
}

/* Custom Webkit Scrollbars */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #111419;
    border-radius: 3px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

/* ==========================================================================
   ✨ PREMIUM AMBIENT GLOWS & GRID OVERLAYS
   ========================================================================== */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.blob-1 {
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--color-cyan-glow);
}

.blob-2 {
    top: 40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-cyan-glow);
}

.blob-3 {
    bottom: 10%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: var(--color-cyan-glow);
}

/* ==========================================================================
   🏢 FIXED NAVBAR (AL-RAYAH STICKY STYLE)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: rgba(5, 6, 8, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-light);
    z-index: 999;
    transition: var(--transition-base);
}

.navbar.scrolled {
    height: 80px;
    background: rgba(5, 6, 8, 0.95);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1650px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    font-size: 1.25rem;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.nav-brand:hover {
    text-shadow: 0 0 10px var(--color-cyan-glow);
}

.nav-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 255, 255, 0.35);
    box-shadow: 0 0 10px var(--color-cyan-glow);
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.nav-link i {
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-cyan-bright);
    background: rgba(0, 255, 255, 0.08);
    box-shadow: inset 0 0 8px rgba(0, 255, 255, 0.05);
}

.nav-link:hover i, .nav-link.active i {
    color: var(--color-cyan-bright);
    filter: drop-shadow(0 0 4px var(--color-cyan-glow));
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-discord {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-discord:hover {
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
    background: #5865f2;
}

.btn-discord:active {
    transform: translateY(0);
}

@media (max-width: 1450px) {
    .nav-menu {
        gap: 4px;
    }
    .nav-link {
        padding: 6px 8px;
        font-size: 0.75rem;
        gap: 4px;
    }
    .nav-brand {
        font-size: 1.1rem;
        gap: 8px;
    }
    .nav-logo {
        width: 36px;
        height: 36px;
    }
    .btn-discord {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   🔄 SPA TAB CONTENT DISPLAY SYSTEM
   ========================================================================== */
.tab-content {
    display: none;
    width: 100%;
    min-height: calc(100vh - 90px);
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.4s ease-out forwards;
}

@keyframes tabFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-container-padding {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 30px 60px;
}

/* ==========================================================================
   🚀 TAB 1: الرئيسية (HERO SECTION with clean grid background)
   ========================================================================== */
#hero.tab-content {
    min-height: 100vh;
    padding: 0;
    overflow-y: auto;
    position: relative;
}

#hero.tab-content.active {
    display: block; /* Allows scrolling down to FAQ accordion */
}

.video-background-container {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background-color: #000;
}

.hero-clean-bg {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
}

.video-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 6, 8, 0.4) 0%, rgba(5, 6, 8, 0.8) 80%, rgba(5, 6, 8, 1) 100%);
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-size: 45px 45px;
    background-image: linear-gradient(to right, rgba(0, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, transparent 15%, black 85%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 15%, black 85%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 160px 30px 60px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-wrapper {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Giant Floating & Glowing Logo */
.hero-logo-wrapper {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 4s infinite ease-in-out;
}

.hero-logo-gif {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes logoFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.45);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-white) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    max-width: 750px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.btn-primary-neon {
    background-color: var(--color-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--color-cyan-glow);
    font-family: var(--font-cairo);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 36px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-neon:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: var(--font-cairo);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 36px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* ==========================================================================
   ❓ FAQ INTERACTIVE ACCORDION
   ========================================================================== */
.faq-container-wrap {
    width: 100%;
    max-width: 800px;
    margin: 80px auto 40px;
    text-align: right;
}

.faq-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-cyan);
    margin-bottom: 24px;
    text-shadow: 0 0 10px var(--color-cyan-glow);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    cursor: pointer;
    overflow: hidden;
    border: var(--border-light);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(0, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--color-cyan);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-bottom: 20px;
    line-height: 1.7;
}

.faq-item.open {
    border-color: rgba(0, 255, 255, 0.25);
    background-color: rgba(0, 255, 255, 0.01);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 20px;
    border-top-color: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   🖼️ GLASSMORPHISM CARDS
   ========================================================================== */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: var(--border-light);
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: var(--transition-base);
}

/* ==========================================================================
   🛒 PRODUCTS GRID & FILTER
   ========================================================================== */
.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 20px;
}

.section-title-wrap {
    text-align: right;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Filter Tabs Container */
.filter-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Individual Filter Button */
.filter-tab {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-cairo);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect */
.filter-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

/* Active filter state */
.filter-tab.active {
    background: rgba(0, 255, 255, 0.1);
    color: var(--color-cyan-bright);
    box-shadow: inset 0 0 8px rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-cyan);
    color: #000;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 10px var(--color-cyan-glow);
}

.product-badge.premium {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 0 10px var(--orange-glow);
}

.product-img-container {
    height: 180px;
    width: 100%;
    position: relative;
    background: #080a0f; /* Pure dark background for neat framing */
    border-bottom: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px; /* Safe padding for floating screenshots */
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Display the entire screenshot cleanly without cropping */
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Floating display screen shadow */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.product-card:hover .product-image {
    transform: scale(1.04); /* Subtle interactive zoom */
}

/* Invert the white diving gear image to dark neon to match the website theme */
.invert-image {
    filter: invert(1) hue-rotate(180deg) brightness(1.05) contrast(1.1);
    background-color: transparent !important;
    box-shadow: none !important;
}

.product-placeholder-icon {
    font-size: 4rem;
    color: rgba(0, 255, 255, 0.15);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.1));
    transition: var(--transition-base);
    z-index: 1;
}

.product-card:hover .product-placeholder-icon {
    color: var(--color-cyan-bright);
    transform: scale(1.08);
    filter: drop-shadow(0 0 25px var(--color-cyan-glow));
}

.product-overlay-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--color-cyan-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-compatibility {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.compat-badge {
    font-family: var(--font-outfit);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
}

.compat-badge.qb {
    background: rgba(0, 255, 255, 0.08);
    color: var(--color-cyan-bright);
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.compat-badge.esx {
    background: rgba(249, 115, 22, 0.08);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.compat-badge.standalone {
    background: rgba(255, 255, 255, 0.04);
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.resmon-badge {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 800;
    margin-right: auto;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: var(--border-light);
    padding-top: 16px;
    gap: 8px;
}

.price-wrap {
    display: flex;
    flex-direction: column;
}

.price-wrap-double {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-tier {
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-tier .price-label {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.price-tier .price-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-cyan);
}

.price-label {
    font-size: 0.72rem;
    color: var(--text-gray);
}

.price-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.price-value small {
    font-size: 0.8rem;
    font-family: var(--font-cairo);
    color: var(--text-white);
}

.btn-buy {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: var(--border-light);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-cairo);
    transition: var(--transition-base);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-buy:hover {
    background: var(--color-cyan);
    color: #000;
    border-color: var(--color-cyan);
    box-shadow: 0 0 12px var(--color-cyan-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   🎥 VIDEOGRAPHY SERVICE SPECIFIC STYLES
   ========================================================================== */
.service-pricing-terms {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    border-right: 2.5px solid var(--color-cyan);
    padding-right: 8px;
    line-height: 1.4;
}

.dollar-tag {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-right: 4px;
    font-family: var(--font-outfit);
}



/* ==========================================================================
   📊 INTERACTIVE DISCOUNT CALCULATOR WIDGET
   ========================================================================== */
.calculator-widget-container {
    width: 100%;
    margin-top: 80px;
    padding: 30px 40px;
    text-align: right;
    border: 1.5px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.05);
}

.calc-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-cyan);
    margin-bottom: 8px;
    text-shadow: 0 0 8px var(--color-cyan-glow);
}

.calc-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.calc-control {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Role Selector Styles */
.role-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.role-option {
    cursor: pointer;
}

.role-option input[type="radio"] {
    display: none;
}

.role-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.role-option.diamond input:checked + .role-btn {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #60a5fa;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.role-option.onyx input:checked + .role-btn {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #f87171;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.role-option.platinum input:checked + .role-btn {
    background: rgba(148, 163, 184, 0.1);
    border-color: #94a3b8;
    color: #cbd5e1;
    box-shadow: 0 0 10px rgba(148, 163, 184, 0.3);
}

.role-option.gold input:checked + .role-btn {
    background: rgba(234, 179, 8, 0.1);
    border-color: #eab308;
    color: #fde047;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.3);
}

.role-option.silver input:checked + .role-btn {
    background: rgba(156, 163, 175, 0.1);
    border-color: #9ca3af;
    color: #d1d5db;
    box-shadow: 0 0 10px rgba(156, 163, 175, 0.3);
}

.role-option.bronze input:checked + .role-btn {
    background: rgba(217, 119, 6, 0.1);
    border-color: #d97706;
    color: #fbbf24;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.3);
}

.calc-label {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

/* Script Multi-Select Grid */
.script-selector-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.script-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.script-chip:hover {
    border-color: rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.02);
}

.script-chip.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--color-cyan);
    color: var(--color-cyan-bright);
    box-shadow: 0 0 12px var(--color-cyan-glow);
}

.chip-price {
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-gray);
    font-family: var(--font-outfit);
}

.script-chip.active .chip-price {
    color: #fff;
    background: rgba(0, 255, 255, 0.15);
}

.calc-results {
    background: rgba(0, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.calc-result-row strong {
    font-size: 1.15rem;
    color: #fff;
}

.calc-result-row.final-total {
    border-top: 1.5px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 4px;
}

.calc-result-row.final-total strong {
    font-size: 1.65rem;
    font-weight: 900;
}




/* ==========================================
   💬 PREMIUM GLOWING TESTIMONIAL CARDS GRID (REVIEWS TAB)
   ========================================== */
.premium-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.review-glow-card {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: var(--border-light);
}

.review-glow-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.08);
}

.review-glow-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.08);
    border: 1.5px solid rgba(0, 255, 255, 0.2);
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cairo);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.avatar-circle.font-purple {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
    color: var(--orange);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-display-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.discord-mention {
    font-size: 0.72rem;
    color: var(--text-gray);
    font-family: var(--font-outfit);
    font-weight: 600;
    margin-top: 2px;
}

.stars-rating {
    display: flex;
    gap: 2px;
    font-size: 0.75rem;
    color: #fbbf24;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.3));
}

.review-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 6px;
    font-weight: 700;
}

.meta-row .value {
    color: #fff;
    font-weight: 800;
}

.meta-row .value.badge-highlight {
    color: var(--color-cyan-bright);
    background: rgba(0, 255, 255, 0.05);
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.comment-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-top: 6px;
}

.card-footer-banner {
    width: 100%;
    height: 80px;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    border: var(--border-light);
    margin-top: 10px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(168, 85, 247, 0.08) 50%, rgba(0, 255, 255, 0.02) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-footer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-cyan-bright), transparent);
    opacity: 0.35;
    z-index: 3;
}

.card-footer-banner::after {
    content: none;
}

.card-footer-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transition: transform 0.3s ease;
}

.review-glow-card:hover .card-footer-banner img {
    transform: scale(1.04);
}

/* ==========================================================================
   📜 RULES & POLICIES SECTION
   ========================================================================== */
.rules-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.rules-card {
    padding: 35px 40px;
}

.rules-title {
    font-size: 1.6rem;
    color: var(--color-cyan);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding-bottom: 15px;
}

.rules-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin: 25px 0 15px;
    font-weight: 800;
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rules-list li {
    position: relative;
    padding-right: 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.rules-list li::before {
    content: '▪';
    position: absolute;
    right: 0;
    color: var(--color-cyan);
    font-size: 1.2rem;
    top: -2px;
}

.rules-list.check-list li {
    padding-right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rules-list.check-list li::before {
    display: none;
}

.text-green { color: #22c55e; }
.text-orange { color: #f97316; }

.rules-alert {
    margin-top: 20px;
    padding: 15px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 0.9rem;
}

.rules-warning {
    margin-top: 20px;
    padding: 15px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    color: #fdba74;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mt-30 { margin-top: 30px; }

/* ==========================================================================
   🏢 FOOTER
   ========================================================================== */
footer {
    background: #030406;
    border-top: var(--border-light);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 400px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-cyan);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--color-cyan);
    color: #000;
    border-color: var(--color-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 12px var(--color-cyan-glow);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 30px 0;
    border-top: var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.text-cyan {
    color: var(--color-cyan);
    font-weight: 700;
}

/* Notification Toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100000;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   📱 RESPONSIVE ADJUSTMENTS (MEDIA QUERIES)
   ========================================== */
@media (max-width: 992px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .play-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section {
        padding-top: 200px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-logo-wrapper {
        width: 170px;
        height: 170px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .filter-tabs {
        width: 100%;
        overflow-x: auto;
    }
    
    .filter-tab {
        flex: 1;
        text-align: center;
        padding: 8px 12px;
    }

    
    .calculator-widget-container {
        padding: 20px;
    }

    .premium-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   🎁 TAB 7: LOYALTY & REWARDS WHEEL STYLING
   ========================================================================== */
.rewards-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.discord-auth-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(88, 101, 242, 0.15);
    background: rgba(88, 101, 242, 0.02);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.03);
}

.discord-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord-logo-icon {
    font-size: 2.2rem;
    color: #5865f2;
    filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.4));
}

.discord-card-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.auth-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.btn-discord-auth {
    width: 100%;
    background: #5865f2;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord-auth:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.btn-discord-auth:active {
    transform: translateY(0);
}

/* User Info Panel (Discord Profile Sim) */
.user-info-area {
    animation: fadeIn 0.5s ease forwards;
}

.user-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.user-avatar-wrap {
    position: relative;
    width: 56px;
    height: 56px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #5865f2;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #23a55a;
    border: 2.5px solid #000;
    border-radius: 50%;
}

.user-names h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.user-tag {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-family: monospace;
}

.user-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.role-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.role-booster {
    background: rgba(244, 114, 182, 0.1);
    color: #f472b6;
    border: 1px solid rgba(244, 114, 182, 0.25);
}

.role-vip {
    background: rgba(234, 179, 8, 0.1);
    color: #fde047;
    border: 1px solid rgba(234, 179, 8, 0.25);
}

.role-verified {
    background: rgba(6, 182, 212, 0.1);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.auth-status-success {
    background: rgba(35, 165, 90, 0.1);
    color: #23a55a;
    border: 1px solid rgba(35, 165, 90, 0.2);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-username-input:focus {
    border-color: rgba(88, 101, 242, 0.5) !important;
    box-shadow: 0 0 12px rgba(88, 101, 242, 0.25) !important;
    outline: none;
    background: rgba(0, 0, 0, 0.5) !important;
}

.btn-unlink {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    cursor: pointer;
    font-family: var(--font-cairo);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-unlink:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
}

/* Wheel panel card styling */
.wheel-panel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.wheel-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s ease;
}

.lock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.lock-icon {
    font-size: 3rem;
    color: var(--color-cyan-bright);
    filter: drop-shadow(0 0 12px var(--color-cyan-glow));
    animation: pulseGlow 2s infinite ease-in-out;
}

.lock-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.lock-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Wheel structure */
.wheel-container {
    position: relative;
    width: 360px;
    height: 360px;
    margin-bottom: 20px;
}

.wheel-pointer {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #ff3e3e;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.5));
    z-index: 20;
}

.fortune-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 6s cubic-bezier(0.1, 0.8, 0.1, 1);
    user-select: none;
}

.wheel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.wheel-slice {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--clr);
    transform: rotate(calc(var(--i) * 45deg));
    clip-path: polygon(50% 50%, 50% 0, 85.4% 14.6%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.wheel-slice span {
    transform: rotate(22.5deg);
    font-weight: 800;
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    position: absolute;
    left: 50%;
    top: 13%;
    width: 100px;
    text-align: center;
    transform-origin: center;
}

.btn-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: #fff;
    border: 5px solid #1f2937;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 900;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0,0,0,0.2);
    z-index: 30;
    transition: all 0.2s ease;
}

.btn-spin:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    background: var(--color-cyan-bright);
}

.btn-spin:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.cooldown-timer-area {
    margin-top: 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.3s ease;
}

.countdown-time {
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 1px;
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 8px var(--color-cyan-glow)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 20px var(--color-cyan-glow)); transform: scale(1.08); }
}

/* ==========================================================================
   📊 TAB 8: SCRIPT COMPARISON MATRIX STYLING
   ========================================================================== */
.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
}

.comparison-table tbody tr {
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

/* Highlight column styling */
.comparison-table th.highlight-column {
    background: rgba(0, 255, 255, 0.03);
    color: var(--color-cyan-bright);
    text-shadow: 0 0 10px var(--color-cyan-glow);
    border-right: 1.5px dashed rgba(0, 255, 255, 0.2);
    border-left: 1.5px dashed rgba(0, 255, 255, 0.2);
}

.comparison-table td.highlight-column {
    background: rgba(0, 255, 255, 0.015);
    font-weight: 700;
    border-right: 1.5px dashed rgba(0, 255, 255, 0.1);
    border-left: 1.5px dashed rgba(0, 255, 255, 0.1);
}

.text-cyan-bright {
    color: var(--color-cyan-bright);
}

.text-red {
    color: #ef4444;
}

.text-orange {
    color: #f97316;
}

/* Gulf Alert Banner Styling */
.gulf-alert-banner {
    padding: 30px;
    border: 1.5px solid rgba(249, 115, 22, 0.18);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03), rgba(0,0,0,0));
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.03);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.alert-warn-icon {
    font-size: 1.8rem;
    color: #f97316;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4));
}

.alert-header h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
}

.alert-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.alert-text:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   ⚙️ TAB 9: ROADMAP & UPVOTING STYLING
   ========================================================================== */
.roadmap-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 25px;
    margin-top: 40px;
    align-items: start;
}

.roadmap-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 10px;
}

.column-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}

.column-header i {
    font-size: 1.2rem;
}

.column-header.backlog {
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.column-header.progress {
    background: rgba(234, 179, 8, 0.1);
    color: #fde047;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.column-header.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.roadmap-cards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.roadmap-card {
    padding: 20px;
    position: relative;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Upvoting system layout */
.vote-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.btn-vote {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px;
    width: 44px;
    height: 48px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: all 0.2s ease;
}

.btn-vote i {
    font-size: 1rem;
    color: var(--text-gray);
    transition: transform 0.2s ease;
}

.btn-vote span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.btn-vote:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.05);
}

.btn-vote:hover i {
    transform: translateY(-2px);
    color: #c084fc;
}

.btn-vote.voted {
    background: rgba(168, 85, 247, 0.15);
    border-color: #c084fc;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.25);
}

.btn-vote.voted i {
    color: #c084fc;
}

.btn-vote.voted span {
    color: #fff;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.card-details h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

.card-details p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* In progress glow bars */
.in-progress-card {
    overflow: hidden;
}

.progress-bar-glow {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3px;
    background: var(--color-cyan);
    box-shadow: 0 0 10px var(--color-cyan-glow);
}

.progress-badge, .completed-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.progress-badge {
    background: rgba(6, 182, 212, 0.1);
    color: #22d3ee;
}

.completed-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

/* Suggestion box */
.suggest-form-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1.5px dashed rgba(255, 255, 255, 0.08);
}

.suggest-form-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.85rem;
    font-family: var(--font-cairo);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.15);
    outline: none;
    background: rgba(0,0,0,0.5);
}

.btn-submit-idea {
    width: 100%;
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    padding: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-idea:hover {
    background: #a855f7;
    color: #fff;
    border-color: #c084fc;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

/* ==========================================================================
   📱 RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rewards-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .comparison-table th, .comparison-table td {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .wheel-container {
        width: 300px;
        height: 300px;
    }
    
    .wheel-slice span {
        font-size: 0.65rem;
        top: 11%;
    }
}

