@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
    --deep-dark: #011025;
    --dark-blue: #052659;
    --medium-blue: #5482B4;
    --light-blue: #7EA0C5;
    --glow-blue: #C2E8FF;
    --bg: var(--deep-dark);
    --bg-alt: #020F1F;
    --bg-card: rgba(5, 38, 89, 0.3);
    --bg-card-hover: rgba(5, 38, 89, 0.5);
    --glass-border: rgba(84, 130, 180, 0.12);
    --glass-border-hover: rgba(84, 130, 180, 0.25);
    --text: #FFFFFF;
    --text-secondary: #C2E8FF;
    --text-muted: #7EA0C5;
    --star: #C2E8FF;
    --border: rgba(84, 130, 180, 0.08);
    --gradient-1: linear-gradient(135deg, #052659, #5482B4);
    --gradient-2: linear-gradient(135deg, #5482B4, #C2E8FF);
    --gradient-3: linear-gradient(135deg, #052659, #7EA0C5);
    --gradient-glow: linear-gradient(135deg, rgba(84, 130, 180, 0.3), rgba(194, 232, 255, 0.1));
    --gradient-hero: linear-gradient(135deg, #011025, #052659, #011025);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(84, 130, 180, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(84, 130, 180, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(5, 38, 89, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(194, 232, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 100px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(84, 130, 180, 0.08);
    border: 1px solid var(--glass-border);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--glow-blue);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(194, 232, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmerTag 3s infinite;
}

@keyframes shimmerTag {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text);
    line-height: 1.2;
}

.section-title span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-desc {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(1, 16, 37, 0.7);
    backdrop-filter: blur(50px) saturate(1.8);
    -webkit-backdrop-filter: blur(50px) saturate(1.8);
    border-bottom: 1px solid rgba(84, 130, 180, 0.08);
    transition: var(--transition);
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(84, 130, 180, 0.2), rgba(194, 232, 255, 0.4), rgba(84, 130, 180, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.navbar.scrolled {
    background: rgba(1, 16, 37, 0.95);
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(84, 130, 180, 0.06);
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    gap: 8px;
}

.nav-logo { display: none; }

.nav-links a {
    color: rgba(194, 232, 255, 0.6);
    font-weight: 600;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(84, 130, 180, 0.1), rgba(194, 232, 255, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--glow-blue), transparent);
    border-radius: 2px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover {
    color: var(--glow-blue);
}

.nav-links a.active {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(194, 232, 255, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: #5482B4;
    top: -20%;
    right: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bg-orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: #052659;
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.bg-orb:nth-child(3) {
    width: 300px;
    height: 300px;
    background: #7EA0C5;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(40px, 40px) scale(1.05); }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 76px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(84, 130, 180, 0.1), transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(5, 38, 89, 0.12), transparent 60%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(84, 130, 180, 0.1);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--glow-blue);
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-text .badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(194, 232, 255, 0.12), transparent);
    transform: translateX(-100%);
    animation: shimmerTag 3s infinite;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.hero-text h1 span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-text .typing-wrapper {
    display: inline-block;
    position: relative;
}

.hero-text .typing-wrapper::after {
    content: '|';
    color: var(--glow-blue);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-text p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-3d-card {
    width: 320px;
    height: 420px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    cursor: pointer;
}

.hero-card-inner {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(5, 38, 89, 0.6), rgba(1, 16, 37, 0.8));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(84, 130, 180, 0.1);
    transform: translateZ(20px);
}

.hero-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(84, 130, 180, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-card-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 16px;
    transform: translateZ(40px);
    filter: drop-shadow(0 10px 30px rgba(84, 130, 180, 0.3));
    animation: pulseIcon 3s ease-in-out infinite;
    border-radius: 18px;
    object-fit: contain;
}

@keyframes pulseIcon {
    0%, 100% { transform: translateZ(40px) scale(1); }
    50% { transform: translateZ(40px) scale(1.08); }
}

.hero-card-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--glow-blue);
    margin-bottom: 8px;
    transform: translateZ(30px);
}

.hero-card-sub {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    transform: translateZ(20px);
}

.hero-card-shine {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, transparent 30%, rgba(194, 232, 255, 0.06) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.hero-3d-card:hover .hero-card-shine {
    transform: translateX(100%) translateY(100%);
}

.hero-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: var(--gradient-1);
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; filter: blur(15px); }
    50% { opacity: 0.6; filter: blur(20px); }
}

.hero-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(5, 38, 89, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: floatAround 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.hero-float-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.hero-float-icon:nth-child(1) { top: 5%; right: 5%; animation-delay: 0s; }
.hero-float-icon:nth-child(2) { bottom: 10%; left: 0%; animation-delay: 1.5s; }
.hero-float-icon:nth-child(3) { top: 35%; left: -5%; animation-delay: 3s; }
.hero-float-icon:nth-child(4) { bottom: 5%; right: 10%; animation-delay: 4.5s; }

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
    75% { transform: translateY(-10px) rotate(2deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--glow-blue);
    box-shadow: 0 4px 25px rgba(84, 130, 180, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(194, 232, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(84, 130, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--glow-blue);
    border: 2px solid rgba(84, 130, 180, 0.2);
}

.btn-secondary:hover {
    border-color: var(--medium-blue);
    background: rgba(84, 130, 180, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(84, 130, 180, 0.15);
}

.btn-glow {
    background: var(--gradient-2);
    color: var(--deep-dark);
    box-shadow: 0 4px 25px rgba(194, 232, 255, 0.2);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(194, 232, 255, 0.35);
}

/* Stats */
.stats-section {
    background: var(--bg-alt);
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(84, 130, 180, 0.05), transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-item { padding: 20px; }

.stats-item .stats-number {
    font-size: 52px;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
}

.stats-item .stats-label {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

/* Categories */
.categories-section {
    background: var(--bg);
    position: relative;
}

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

.category-card {
    display: block;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(84, 130, 180, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-card:hover::before { transform: scaleX(1); }
.category-card:hover::after { opacity: 1; }

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(84, 130, 180, 0.08);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-glow);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cat-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.cat-desc {
    color: var(--text-muted);
    font-size: 13px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
    max-width: 280px;
    margin: 0 auto;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
    border-color: rgba(84, 130, 180, 0.3);
    box-shadow: 0 0 30px rgba(84, 130, 180, 0.15);
}

.category-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--glow-blue);
    position: relative;
    z-index: 1;
}

.category-card p {
    color: var(--text-muted);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.category-card .category-count {
    display: inline-block;
    background: rgba(84, 130, 180, 0.1);
    border: 1px solid var(--glass-border);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* Products */
.products-section {
    background: var(--bg-alt);
    position: relative;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
}

.filter-btn:hover {
    border-color: var(--medium-blue);
    color: var(--glow-blue);
    background: rgba(84, 130, 180, 0.08);
}

.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--glow-blue);
    box-shadow: 0 4px 15px rgba(84, 130, 180, 0.2);
}

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

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    perspective: 1000px;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(84, 130, 180, 0.1), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover::before { opacity: 1; }

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(84, 130, 180, 0.08);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(5, 38, 89, 0.2), rgba(1, 16, 37, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(194, 232, 255, 0.03));
    pointer-events: none;
}

.product-image .product-img {
    max-width: 55%;
    max-height: 60%;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.product-card:hover .product-img {
    transform: scale(1.12) rotate(-3deg);
}

.product-image .product-emoji {
    font-size: 64px;
    transition: var(--transition);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-emoji { transform: scale(1.15) rotate(-5deg); }

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gradient-2);
    color: var(--deep-dark);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(194, 232, 255, 0.2);
}

.product-badge-hot {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: #fff;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 24px;
    margin-top: 14px;
    margin-bottom: 6px;
}

.product-rating .stars { color: var(--star); font-size: 13px; }
.product-rating .rating-text { color: var(--text-muted); font-size: 12px; }

.product-info { padding: 0 24px 24px; }

.product-info h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--glow-blue);
}

.product-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.price-original {
    font-size: 14px;
    color: rgba(126, 160, 197, 0.5);
    text-decoration: line-through;
}

.price-current {
    font-size: 24px;
    font-weight: 900;
    color: var(--glow-blue);
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--medium-blue);
    font-weight: 700;
    padding: 6px 14px;
    background: rgba(84, 130, 180, 0.08);
    border: 1px solid rgba(84, 130, 180, 0.1);
    border-radius: 8px;
    margin-bottom: 14px;
}

.product-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: var(--gradient-1);
    color: var(--glow-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(5, 38, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(194, 232, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-btn:hover::before { transform: translateX(100%); }
.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(84, 130, 180, 0.35);
}

/* Features */
.features-section {
    background: var(--bg);
    position: relative;
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(84, 130, 180, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow), 0 0 30px rgba(84, 130, 180, 0.06);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    background: var(--gradient-glow);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    border-color: rgba(84, 130, 180, 0.3);
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--glow-blue);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* How It Works */
.how-section {
    background: var(--bg-alt);
    position: relative;
}

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

.how-step {
    text-align: center;
    padding: 48px 30px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.how-step:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow), 0 0 30px rgba(84, 130, 180, 0.06);
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: var(--glow-blue);
    box-shadow: 0 8px 30px rgba(84, 130, 180, 0.25);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(84, 130, 180, 0.15);
    animation: pulseRing 2s ease-in-out infinite;
}

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

.how-step h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--glow-blue);
}

.how-step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* FAQ */
.faq-section {
    background: var(--bg);
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--glass-border-hover);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--glow-blue);
    text-align: right;
    transition: var(--transition);
}

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: rgba(84, 130, 180, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 14px;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
    background: rgba(84, 130, 180, 0.2);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* CTA */
.cta-section {
    background: var(--gradient-hero);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(84, 130, 180, 0.1), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(194, 232, 255, 0.04), transparent 60%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-2);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--glow-blue);
    margin-bottom: 14px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Maps Grid */
.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.map-card {
    display: block;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.map-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow), 0 0 30px rgba(84, 130, 180, 0.08);
}

.map-visual {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 38, 89, 0.3), rgba(1, 16, 37, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.map-card:hover .map-img {
    transform: scale(1.1);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 16, 37, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-card:hover .map-overlay {
    opacity: 1;
}

.map-overlay span {
    padding: 10px 28px;
    border-radius: 50px;
    background: var(--gradient-1);
    color: var(--glow-blue);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.map-info {
    padding: 20px 24px;
}

.map-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--glow-blue);
    margin-bottom: 4px;
}

.map-name-white {
    color: #FFFFFF;
    font-weight: 800;
}

.map-name-green {
    color: #00E676;
    font-weight: 800;
}

.map-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.map-products-preview {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mp-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--glow-blue);
    background: rgba(84, 130, 180, 0.1);
    border: 1px solid var(--glass-border);
}

.map-soon { cursor: default; }

.map-soon .map-visual {
    background: linear-gradient(135deg, rgba(5, 38, 89, 0.15), rgba(1, 16, 37, 0.25));
}

.map-soon-icon {
    font-size: 64px;
    animation: pulseIcon 2s ease-in-out infinite;
}

.map-soon:hover {
    transform: none;
    border-color: var(--glass-border);
    box-shadow: none;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 72px;
    margin-bottom: 20px;
    animation: pulseIcon 2s ease-in-out infinite;
}

.coming-soon h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--glow-blue);
    margin-bottom: 12px;
}

.coming-soon p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Support / About */
.support-section {
    background: var(--bg-alt);
    position: relative;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.support-about { display: flex; }

.about-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
    width: 100%;
}

.about-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow);
}

.about-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--glow-blue);
    margin-bottom: 16px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(84, 130, 180, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 600;
    color: var(--glow-blue);
    transition: var(--transition);
}

.about-feat:hover {
    background: rgba(84, 130, 180, 0.12);
    transform: translateY(-2px);
}

.about-feat span { font-size: 18px; }

.support-channels { display: flex; }

.channels-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.channels-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow);
}

.channels-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--glow-blue);
    margin-bottom: 8px;
}

.channels-card > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.channels-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--glass-border);
    text-decoration: none;
}

.channel-discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.05));
    border-color: rgba(88, 101, 242, 0.2);
    color: var(--glow-blue);
}

.channel-discord:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.25), rgba(88, 101, 242, 0.1));
    border-color: rgba(88, 101, 242, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.15);
}

.channel-discord .channel-arrow {
    margin-right: auto;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.channel-discord:hover .channel-arrow {
    transform: translateX(-4px);
}

.channel-coming {
    background: rgba(84, 130, 180, 0.05);
    color: var(--text-muted);
    opacity: 0.6;
    cursor: default;
}

.channel-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: var(--gradient-glow);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.channel-text { text-align: right; }

/* Footer */
.footer {
    background: #010B18;
    padding: 70px 0 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-2);
    opacity: 0.15;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 30px;
}

.footer-about h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--glow-blue);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    max-width: 300px;
    line-height: 1.8;
}

.footer h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--glow-blue);
    padding-right: 6px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--medium-blue);
    transition: var(--transition);
}

.footer-bottom a:hover { color: var(--glow-blue); }

.footer-credit-inline {
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #5482B4, #C2E8FF, #5482B4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: creditShimmer 3s ease-in-out infinite;
}

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

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--medium-blue);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* Mouse Glow */
.mouse-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(84, 130, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: transform;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: var(--medium-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--light-blue); }

/* Animations */
.fade-up, .fade-left, .fade-right, .fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up { transform: translateY(50px); }
.fade-left { transform: translateX(50px); }
.fade-right { transform: translateX(-50px); }
.fade-in { transform: scale(0.95); }

.fade-up.visible, .fade-left.visible, .fade-right.visible, .fade-in.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation helpers */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* Toast notification */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.toast {
    padding: 14px 28px;
    border-radius: 14px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    color: var(--glow-blue);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.4s ease, toastOut 0.4s ease 2.6s forwards;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(-20px) scale(0.9); }
}

/* 404 */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: var(--bg);
}

.error-code {
    font-size: 160px;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.error-page h2 {
    font-size: 30px;
    margin: 10px 0;
    color: var(--glow-blue);
}

.error-page p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-3d-card { width: 260px; height: 340px; }
    .hero-text h1 { font-size: 40px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 34px; }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 4px;
    }

    .nav-links a {
        font-size: 12px;
        padding: 6px 12px;
    }
    .hero-text h1 { font-size: 30px; }
    .section-title { font-size: 28px; }
    .section { padding: 70px 0; }
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stats-item .stats-number { font-size: 38px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-about p { margin: 0 auto; }
    .support-form { padding: 24px; }
    .products-filter { justify-content: center; }
    .hero-3d-card { width: 220px; height: 300px; }

    .hero-float-icon { display: none; }
    .step-number { width: 52px; height: 52px; font-size: 20px; }
    .about-features { grid-template-columns: 1fr; }
    .about-card, .channels-card { padding: 24px; }
    .products-roblox { flex-direction: column; text-align: center; padding: 24px; }
    .roblox-img { width: 140px; height: 140px; }
    .roblox-badges { justify-content: center; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 26px; }
    .section-title { font-size: 24px; }
    .cta-content h2 { font-size: 28px; }
}
