:root {
    --color-primary: #5c1df4;
    --color-primary-light: #8b3ff9;
    --color-primary-lighter: #d360f5;
    --bg-dark-1: #050208;
    --bg-dark-2: #0d041a;
    --bg-dark-3: #180330;
    --bg-dark-4: #0f0220;
    --bg-dark-5: #08030e;
    --bg-dark-6: #130620;
    --bg-dark-7: #1d0a35;
    --gold-1: #ffd700;
    --gold-2: #ffb84d;
    --gold-3: #ffdb70;
    --gold-4: #fff3b0;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-2xl: 60px;
    --spacing-3xl: 80px;
    --spacing-4xl: 100px;
    --spacing-5xl: 120px;
    --radius-sm: 15px;
    --radius-md: 25px;
    --radius-lg: 35px;
    --radius-xl: 40px;
    --radius-pill: 50px;
    --radius-circle: 50%;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 25px 70px rgba(0, 0, 0, 0.6);
    --shadow-glow-primary: 0 0 60px rgba(92, 29, 244, 0.3);
    --shadow-glow-secondary: 0 0 80px rgba(139, 63, 249, 0.4);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    --z-background: -1;
    --z-base: 1;
    --z-content: 10;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
    --blur-sm: blur(10px);
    --blur-md: blur(25px);
    --blur-lg: blur(40px);
    --blur-xl: blur(50px);
}

@font-face {
    font-family: 'Kalameh';
    src: url('/assets/fonts/KalamehWeb_thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kalameh';
    src: url('/assets/fonts/KalamehWeb_Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kalameh';
    src: url('/assets/fonts/KalamehWeb_Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kalameh';
    src: url('/assets/fonts/KalamehWeb_Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kalameh', 'Segoe UI', Tahoma, sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gradient-text-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-lighter) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-4));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-effect {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); }
}

@keyframes slideLines {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes blurIn {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(-50px);
    }
    40% {
        opacity: 0.5;
        filter: blur(5px);
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes wordAppear {
    0% {
        opacity: 0;
        transform: translateY(40px) rotateX(-20deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes rotate360 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg) scale(1); opacity: 0.4; }
    50% { transform: rotate(180deg) scale(1.3); opacity: 0.7; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.4; }
}

@keyframes liquidMove {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    25% { transform: translate(-30%, -60%) rotate(90deg) scale(1.15); }
    50% { transform: translate(-60%, -40%) rotate(180deg) scale(0.95); }
    75% { transform: translate(-40%, -55%) rotate(270deg) scale(1.1); }
}

@keyframes liquidShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(360deg); }
}

@keyframes sphereFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    20% { transform: translate(60px, -70px) scale(1.15); opacity: 0.7; }
    40% { transform: translate(-50px, 50px) scale(0.9); opacity: 0.4; }
    60% { transform: translate(70px, 40px) scale(1.1); opacity: 0.6; }
    80% { transform: translate(-40px, -60px) scale(0.95); opacity: 0.55; }
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.7); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.8); opacity: 0.4; }
}

@keyframes borderFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes borderShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes particleFloat0 {
    0%, 100% { transform: translate(0, 0); opacity: 0.8; }
    50% { transform: translate(15px, -20px); opacity: 0.4; }
}

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(-20px, 15px); opacity: 0.9; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(10px, 25px); opacity: 0.3; }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(-15px, -15px); opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 25%, var(--bg-dark-3) 50%, var(--bg-dark-4) 75%, var(--bg-dark-1) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(92, 29, 244, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 63, 249, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(211, 96, 245, 0.1) 0%, transparent 70%);
    animation: gradientShift 10s ease-in-out infinite;
}

.decorative-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.15;
    pointer-events: none;
}

.decorative-lines::before,
.decorative-lines::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 63, 249, 0.1) 10px, rgba(139, 63, 249, 0.1) 11px, transparent 11px, transparent 30px);
    animation: slideLines 20s linear infinite;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(211, 96, 245, 0.9) 0%, rgba(139, 63, 249, 0.4) 50%, transparent 70%);
    border-radius: var(--radius-circle);
    pointer-events: none;
    animation: floatUp linear infinite, particleFloat 30s ease-in-out infinite;
    filter: blur(0.5px);
    box-shadow: 0 0 10px rgba(211, 96, 245, 0.5);
}

.apple-badge {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: var(--blur-lg) saturate(180%);
    -webkit-backdrop-filter: var(--blur-lg) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    z-index: 25;
    text-align: center;
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.4), 0 4px 12px rgba(255, 255, 255, 0.15) inset, 0 -4px 10px rgba(0, 0, 0, 0.25) inset, var(--shadow-glow-secondary);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.apple-badge:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 15px 50px rgba(31, 38, 135, 0.5), 0 5px 15px rgba(255, 255, 255, 0.2) inset, 0 -5px 12px rgba(0, 0, 0, 0.3) inset, 0 0 80px rgba(139, 63, 249, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.apple-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: liquidShine 4s ease-in-out infinite;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.badge-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-circle);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.badge-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.badge-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

.content-box {
    position: relative;
    border-radius: var(--radius-lg);
    padding: var(--spacing-5xl) var(--spacing-4xl);
    margin: var(--spacing-xl);
    max-width: 1200px;
    width: 95%;
    min-height: 600px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 25px 80px rgba(0, 0, 0, 0.50), inset 0 -25px 80px rgba(0, 0, 0, 0.45), inset 25px 0 60px rgba(0, 0, 0, 0.35), inset -25px 0 60px rgba(0, 0, 0, 0.35), 0 40px 100px rgba(0, 0, 0, 0.75), 0 0 60px rgba(0, 0, 0, 0.5), var(--shadow-glow-primary);
    z-index: var(--z-content);
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(59, 15, 71, 0.15) 0%, transparent 50%);
    animation: liquidMove 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-base);
    opacity: 0.25;
}

.grid-interactive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 30px);
    grid-template-rows: repeat(auto-fill, 30px);
    z-index: 2;
    pointer-events: all;
    border-radius: var(--radius-lg);
}

.grid-cell {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 0.75px dashed rgba(255, 255, 255, 0.12);
    transition: var(--transition-fast);
    position: relative;
}

.grid-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    border-radius: var(--radius-circle);
    transform: translate(-50%, -50%);
    transition: all 0.35s ease;
    pointer-events: none;
}

.grid-cell:hover::before {
    width: 35px;
    height: 35px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7), 0 0 45px rgba(211, 96, 245, 0.4);
}

.grid-cell:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.35), 0 0 8px rgba(255, 255, 255, 0.25);
}

.text-content {
    position: relative;
    z-index: 15;
    text-align: center;
    pointer-events: none;
}

.blur-text {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.blur-text .word {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-50px);
    animation: blurIn 0.8s var(--transition-normal) forwards;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    line-height: 1.3;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 12px 35px rgba(0, 0, 0, 0.5), 0 18px 50px rgba(0, 0, 0, 0.4);
}

.hero-word-1 { animation-delay: 0s; }
.hero-word-2 { animation-delay: 0.15s; }
.hero-word-3 { animation-delay: 0.3s; }
.hero-word-4 { animation-delay: 0.45s; }
.hero-word-5 { animation-delay: 0.6s; }
.hero-word-6 { animation-delay: 0.75s; }
.hero-word-7 { animation-delay: 0.9s; }

.vineh-text {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-4));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 8px 20px rgba(227, 128, 255, 0.6));
}

.subtitle-part {
    color: white;
    font-weight: 700;
    position: relative;
}

.subtitle-part::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 63, 249, 0.6) 25%, rgba(211, 96, 245, 0.8) 50%, rgba(139, 63, 249, 0.6) 75%, transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.subtitle-part:hover::after {
    transform: scaleX(1);
}

.subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: white;
    font-weight: 400;
    line-height: 2.2;
    margin-bottom: var(--spacing-2xl);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.6), 0 12px 24px rgba(0, 0, 0, 0.5), 0 18px 36px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(92, 29, 244, 0.3);
    position: relative;
    z-index: var(--z-content);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.buttons-container {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 20;
    pointer-events: all;
}

.btn {
    padding: 22px 65px;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Kalameh', sans-serif;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 70px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    pointer-events: all;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 70px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0.5) 100%);
    background-size: 200% 200%;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0.8;
    animation: borderShine 3s linear infinite;
}

.btn::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.3), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.25), transparent 45%);
    mix-blend-mode: screen;
    animation: liquidMove 30s ease-in-out infinite alternate;
    pointer-events: none;
    opacity: 0.7;
    filter: blur(25px);
}

.btn-demo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: var(--shadow-md), inset 0 4px 15px rgba(255, 255, 255, 0.12), inset 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.btn-demo:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-lg), inset 0 5px 20px rgba(255, 255, 255, 0.18), inset 0 -5px 15px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 255, 255, 0.08);
}

.btn-register {
    background: none;
    box-shadow: var(--shadow-md), inset 0 4px 15px rgba(255, 255, 255, 0.1), inset 0 -4px 12px rgba(0, 0, 0, 0.12);
}

.btn-register:hover {
    transform: translateY(-6px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.06) 100%);
}

.btn span {
    position: relative;
    z-index: 2;
}

.icon-camera,
.icon-party,
.icon-camera-left,
.icon-star-1 {
    position: absolute;
}

.icon-camera {
    position: absolute;
    right: -45px;
    top: 55%;
    transform: translateY(-50%) rotate(-12deg);
    width: 300px;
    height: auto;
    z-index: 25;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 1px white) drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.65));
}

.icon-camera:hover {
    transform: translateY(-50%) scale(1.10);
}

.icon-party {
    position: absolute;
    right: 12%;
    top: 70%;
    transform: translateY(-50%);
    width: 140px;
    height: auto;
    z-index: 25;
    filter: brightness(0) drop-shadow(0 0 1px white);
    animation: floatGentle 6s ease-in-out infinite;
}

.icon-camera-left {
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-25deg);
    width: 300px;
    height: auto;
    z-index: 25;
    filter: brightness(0) drop-shadow(0 0 1px white) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.icon-star-1 {
    position: absolute;
    left: 12%;
    top: 40%;
    transform: translateY(-50%) translateX(-50%);
    width: 160px;
    height: auto;
    z-index: 14;
    filter: grayscale(100%) drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    animation: floatGentle 4s ease-in-out infinite;
}

.feature-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 25%, var(--bg-dark-3) 50%, var(--bg-dark-4) 75%, var(--bg-dark-1) 100%);
    overflow: hidden;
    padding: 150px 20px;
}

.bg-spheres {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.sphere {
    position: absolute;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle at 30% 30%, rgba(211, 96, 245, 0.5) 0%, rgba(139, 63, 249, 0.3) 40%, rgba(92, 29, 244, 0.1) 70%, transparent 90%);
    filter: var(--blur-xl);
    animation: sphereFloat 20s ease-in-out infinite;
    box-shadow: inset 0 0 80px rgba(211, 96, 245, 0.4), 0 0 120px rgba(139, 63, 249, 0.3);
    will-change: transform, opacity;
}

.sphere-1 {
    width: 450px;
    height: 450px;
    top: 5%;
    right: 10%;
    animation-duration: 28s;
}

.sphere-2 {
    width: 350px;
    height: 350px;
    bottom: 15%;
    left: 8%;
    animation-delay: 7s;
    animation-duration: 32s;
}

.sphere-3 {
    width: 550px;
    height: 550px;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
    animation-duration: 40s;
    opacity: 0.25;
}

.sphere-4 {
    width: 280px;
    height: 280px;
    top: 25%;
    left: 15%;
    animation-delay: 20s;
    animation-duration: 35s;
}

.animated-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: var(--z-base);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(211, 96, 245, 0.25);
    border-radius: var(--radius-circle);
    animation: ringPulse 10s ease-in-out infinite;
    will-change: transform, opacity;
}

.ring-1 {
    width: 350px;
    height: 350px;
}

.ring-2 {
    width: 550px;
    height: 550px;
    animation-delay: 3s;
    border-color: rgba(139, 63, 249, 0.2);
}

.ring-3 {
    width: 750px;
    height: 750px;
    animation-delay: 6s;
    border-color: rgba(92, 29, 244, 0.15);
}

.center-content {
    position: relative;
    z-index: var(--z-content);
    text-align: center;
    max-width: 900px;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: var(--transition-smooth);
}

.center-content.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 20%, #ffffff 40%, #f0f0f0 60%, #ffffff 80%, #e8e8e8 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease-in-out infinite;
    margin: var(--spacing-xs) 0;
    filter: drop-shadow(0 5px 25px rgba(255, 255, 255, 0.35));
}

.feature-description {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: 50px;
    text-shadow: var(--shadow-sm);
}

.feature-cta {
    display: flex;
    gap: 10px;
    justify-content: left;
    align-items: center;
    margin-top: var(--spacing-xl);
    direction: ltr;
}

.btn-glass {
    padding: 22px 60px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Kalameh', sans-serif;
    color: white;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: var(--blur-md) saturate(150%);
    -webkit-backdrop-filter: var(--blur-md) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md), inset 0 2px 10px rgba(255, 255, 255, 0.2), inset 0 -2px 8px rgba(0, 0, 0, 0.2), var(--shadow-glow-primary);
    transition: var(--transition-normal);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: liquidShine 3s ease-in-out infinite;
    pointer-events: none;
}

.btn-glass:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg), inset 0 3px 15px rgba(255, 255, 255, 0.3), inset 0 -3px 12px rgba(0, 0, 0, 0.3), var(--shadow-glow-secondary);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-glass span {
    position: relative;
    z-index: 2;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md), inset 0 2px 8px rgba(255, 255, 255, 0.15), 0 0 40px rgba(211, 96, 245, 0.15);
    text-decoration: none;
}

.play-button svg {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: var(--radius-circle);
    border: 2px solid rgba(211, 96, 245, 0.4);
    animation: pulse 2.5s ease-in-out infinite;
}

.play-button:hover {
    transform: scale(1.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.35), inset 0 3px 12px rgba(255, 255, 255, 0.2), var(--shadow-glow-primary);
}

.simple-gallery {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 400px;
    z-index: var(--z-content);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(92, 29, 244, 0.5);
    border-color: rgba(92, 29, 244, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.people-community {
    position: absolute;
    left: 8%;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: var(--z-content);
}

.people-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -8px;
    margin: -30%;
    margin-bottom: 18%;
}

.person-icon {
    opacity: 0;
    transform: translateY(120px) scale(0.2) rotate(-15deg);
    filter: drop-shadow(0 10px 25px rgba(139, 63, 249, 0.6));
    transition: var(--transition-bounce);
    will-change: transform, opacity;
    margin: -10px;
}

.person-icon.size-small { width: 75px; height: 75px; }
.person-icon.size-medium { width: 95px; height: 95px; }
.person-icon.size-large { width: 115px; height: 115px; }

.person-icon.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
}

.person-icon:hover {
    transform: translateY(-10px) scale(1.15) rotate(5deg);
    filter: drop-shadow(0 15px 35px rgba(211, 96, 245, 0.9));
}

.understanding-section {
    position: relative;
    min-height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 20% 30%, rgba(92, 29, 244, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(139, 63, 249, 0.12) 0%, transparent 50%), linear-gradient(135deg, var(--bg-dark-5) 0%, var(--bg-dark-6) 25%, var(--bg-dark-7) 50%, var(--bg-dark-6) 75%, var(--bg-dark-5) 100%);
    overflow: hidden;
    padding: var(--spacing-5xl) var(--spacing-md);
}

.metaballs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-base);
    opacity: 0.6;
    mix-blend-mode: screen;
    pointer-events: none;
}

.advanced-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.gradient-mesh {
    position: absolute;
    border-radius: var(--radius-circle);
    filter: blur(80px);
    animation: sphereFloat 30s ease-in-out infinite;
    will-change: transform, opacity;
}

.mesh-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(92, 29, 244, 0.4) 0%, rgba(92, 29, 244, 0.2) 40%, transparent 70%);
}

.mesh-2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(139, 63, 249, 0.35) 0%, rgba(139, 63, 249, 0.18) 40%, transparent 70%);
    animation-delay: 10s;
}

.mesh-3 {
    width: 550px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(211, 96, 245, 0.3) 0%, rgba(211, 96, 245, 0.15) 40%, transparent 70%);
    animation-delay: 20s;
}

.shape-3d {
    position: absolute;
    animation: sphereFloat 25s ease-in-out infinite;
    will-change: transform;
    opacity: 0.7;
}

.circle-3d-1,
.circle-3d-2 {
    border-radius: var(--radius-circle);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%), radial-gradient(circle, var(--color-primary) 0%, transparent 80%);
}

.circle-3d-1 {
    width: 250px;
    height: 250px;
    top: 20%;
    left: 15%;
    box-shadow: inset -20px -20px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow-primary);
    animation-duration: 28s;
}

.circle-3d-2 {
    width: 200px;
    height: 200px;
    bottom: 25%;
    right: 18%;
    background: radial-gradient(circle, var(--color-primary-lighter) 0%, transparent 80%);
    box-shadow: inset 20px 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow-secondary);
    animation-delay: 8s;
    animation-duration: 32s;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(92, 29, 244, 0.3) 30%, rgba(139, 63, 249, 0.4) 50%, rgba(92, 29, 244, 0.3) 70%, transparent 100%);
    animation: floatGentle 15s ease-in-out infinite;
    filter: blur(3px);
}

.ray-1 { left: 20%; transform: rotate(10deg); }
.ray-2 { left: 50%; animation-delay: 5s; transform: rotate(-5deg); }
.ray-3 { right: 25%; animation-delay: 10s; transform: rotate(8deg); }

.understanding-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(8, 3, 14, 0.3) 60%, rgba(8, 3, 14, 0.6) 100%);
    z-index: 3;
    pointer-events: none;
}

.understanding-container {
    position: relative;
    z-index: var(--z-content);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.understanding-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.understanding-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.understanding-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    direction: rtl;
}

.title-word {
    display: inline-block;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(92, 29, 244, 0.3);
    opacity: 0;
    transform: translateY(40px) rotateX(-20deg);
    animation: wordAppear 1s var(--transition-bounce) forwards;
}

.title-word.highlight-word {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 25%, var(--color-primary-lighter) 50%, var(--color-primary-light) 75%, var(--color-primary) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wordAppear 1s var(--transition-bounce) forwards, gradientFlow 5s ease-in-out infinite;
    filter: drop-shadow(0 6px 30px rgba(92, 29, 244, 0.9));
    font-size: 1.15em;
    position: relative;
}

.title-word.highlight-word::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(92, 29, 244, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: var(--z-background);
    animation: glowPulse 3s ease-in-out infinite;
}

.feature-cards {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: var(--spacing-3xl) auto 0;
    padding: 0 var(--spacing-xl);
}

.feature-card {
    position: relative;
    width: 55%;
    margin-bottom: -150px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: var(--z-base);
}

.feature-card:nth-child(odd) {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(100px) translateY(80px) scale(0.9);
}

.feature-card:nth-child(even) {
    margin-left: 0;
    margin-right: auto;
    transform: translateX(-100px) translateY(80px) scale(0.9);
}

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-card.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.feature-card:nth-child(1) { z-index: 7; }
.feature-card:nth-child(2) { z-index: 6; }
.feature-card:nth-child(3) { z-index: 5; }
.feature-card:nth-child(4) { z-index: 4; }
.feature-card:nth-child(5) { z-index: 3; }
.feature-card:nth-child(6) { z-index: 2; }
.feature-card:nth-child(7) { z-index: 1; }

.feature-card:hover {
    z-index: 100 !important;
}

.feature-card.expanded {
    z-index: 1000 !important;
}

.card-title-external {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: 0 10px;
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-lighter) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 15px rgba(92, 29, 244, 0.6));
    transition: var(--transition-fast);
}

.feature-card:hover .card-number {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 20px rgba(92, 29, 244, 0.9));
}

.card-title-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    position: relative;
    display: inline-block;
}

.card-title-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary-lighter));
    transition: width 0.6s var(--transition-normal);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(92, 29, 244, 0.8);
}

.feature-card:hover .card-title-text::after {
    width: 100%;
}

.card-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: var(--blur-md) saturate(150%);
    -webkit-backdrop-filter: var(--blur-md) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg), inset 0 2px 4px rgba(255, 255, 255, 0.1), var(--shadow-glow-primary);
    transition: all 0.6s var(--transition-normal);
    cursor: pointer;
}

.card-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.3) 0%, rgba(139, 63, 249, 0.2) 50%, rgba(211, 96, 245, 0.3) 100%);
    background-size: 200% auto;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: borderFlow 3s linear infinite;
}

.card-inner:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 100px rgba(92, 29, 244, 0.4), inset 0 2px 6px rgba(255, 255, 255, 0.15);
    border-color: rgba(92, 29, 244, 0.6);
}

.card-inner:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-normal);
    filter: brightness(0.9);
}

.card-inner:hover .card-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(92, 29, 244, 0.1) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(5, 2, 8, 0.85) 100%);
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.card-inner:hover .card-overlay {
    opacity: 0.9;
}

.card-image::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
}

.card-inner:hover .card-image::after {
    top: 100%;
    left: 100%;
}

.card-content {
    padding: var(--spacing-lg);
    position: relative;
}

.card-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    transition: var(--transition-fast);
    margin-bottom: var(--spacing-md);
}

.card-inner:hover .card-description {
    color: white;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

.card-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.3), rgba(139, 63, 249, 0.2));
    border: 1px solid rgba(92, 29, 244, 0.5);
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-expand-btn:hover {
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.5), rgba(139, 63, 249, 0.4));
    border-color: rgba(92, 29, 244, 0.8);
    transform: translateX(-5px);
}

.card-expand-btn svg {
    transition: transform 0.3s ease;
}

.card-expand-btn:hover svg {
    transform: rotate(90deg);
}

.card-expanded-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 3, 14, 0.397);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: hidden;
    border-radius: 5%;
}

.feature-card.expanded .card-expanded-content {
    opacity: 1;
    pointer-events: all;
}

.expanded-inner {
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.15) 0%, rgba(139, 63, 249, 0.1) 50%, rgba(211, 96, 245, 0.08) 100%);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 80px rgba(92, 29, 244, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: slideUp 0.5s ease;
}

.expanded-inner::-webkit-scrollbar {
    width: 6px;
}

.expanded-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.expanded-inner::-webkit-scrollbar-thumb {
    background: rgba(139, 63, 249, 0.5);
    border-radius: 3px;
}

.expanded-inner::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 63, 249, 0.7);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: rgba(255, 80, 80, 0.3);
    border-color: rgba(255, 80, 80, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.expanded-inner h4 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, rgba(211, 96, 245, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expanded-inner p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.expanded-inner ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.expanded-inner ul li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative;
}

.expanded-inner ul li::before {
    content: '◆';
    position: absolute;
    right: 0;
    color: rgba(139, 63, 249, 0.9);
    font-size: 0.8rem;
}

.steps-section {
    position: relative;
    min-height: 100vh;
    padding: var(--spacing-5xl) var(--spacing-md);
    background: radial-gradient(ellipse at 30% 20%, rgba(92, 29, 244, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(139, 63, 249, 0.12) 0%, transparent 50%), linear-gradient(180deg, var(--bg-dark-5) 0%, #0f0618 30%, #140825 50%, #0f0618 70%, var(--bg-dark-5) 100%);
    overflow: hidden;
}

.steps-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-base);
}

.blob {
    position: absolute;
    border-radius: var(--radius-circle);
    filter: blur(100px);
    animation: sphereFloat 35s ease-in-out infinite;
    will-change: transform;
}

.blob-1 {
    width: 550px;
    height: 550px;
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(92, 29, 244, 0.35) 0%, transparent 70%);
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(139, 63, 249, 0.3) 0%, transparent 70%);
    animation-delay: 12s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    top: 50%;
    right: 20%;
    background: radial-gradient(circle, rgba(211, 96, 245, 0.25) 0%, transparent 70%);
    animation-delay: 24s;
}

.blob-4 {
    width: 400px;
    height: 400px;
    bottom: 30%;
    left: 15%;
    background: radial-gradient(circle, rgba(92, 29, 244, 0.3) 0%, transparent 70%);
    animation-delay: 18s;
}

.geo-shape {
    position: absolute;
    animation: rotateSlow 50s linear infinite;
    box-shadow: var(--shadow-glow-primary);
}

.geo-1,
.geo-2,
.geo-3 {
    background: linear-gradient(45deg, var(--color-primary) 0%, var(--color-primary-light) 50%, transparent 100%);
}

.geo-1 {
    width: 220px;
    height: 220px;
    top: 20%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.geo-2 {
    width: 170px;
    height: 170px;
    bottom: 25%;
    left: 20%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 17s;
}

.geo-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 25%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 34s;
}

.particle-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(92, 29, 244, 0.08) 1.5px, transparent 1.5px), radial-gradient(circle at 80% 70%, rgba(139, 63, 249, 0.08) 1.5px, transparent 1.5px);
    background-size: 60px 60px, 80px 80px;
    opacity: 0.7;
    animation: slideLines 40s linear infinite;
}

.steps-container {
    position: relative;
    z-index: var(--z-content);
    max-width: 1400px;
    margin: 0 auto;
}

.steps-header {
    text-align: right;
    margin-bottom: var(--spacing-5xl);
    padding-right: 5%;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
}

.steps-header.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 14px var(--spacing-lg);
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.2) 0%, rgba(139, 63, 249, 0.12) 100%);
    backdrop-filter: var(--blur-sm) saturate(150%);
    border: 1.5px solid rgba(92, 29, 244, 0.4);
    border-radius: var(--radius-pill);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    animation: floatGentle 4s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.3rem;
    color: var(--color-primary-light);
    animation: rotate360 6s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(139, 63, 249, 0.6));
}

.steps-main-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
}

.title-line-step {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.title-line-step.highlight-step {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 25%, var(--color-primary-lighter) 50%, var(--color-primary-light) 75%, var(--color-primary) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 35px rgba(92, 29, 244, 1));
    position: relative;
}

.steps-subtitle {
    font-size: 1.5rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    text-shadow: var(--shadow-sm);
}

.steps-timeline {
    position: relative;
}

.step-item {
    position: relative;
    margin-bottom: 180px;
    opacity: 0;
    transition: all 1.3s var(--transition-normal);
}

.step-item.visible {
    opacity: 1;
}

.step-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.step-right {
    transform: translateX(100px);
}

.step-right.visible {
    transform: translateX(0);
}

.step-right .step-content-wrapper {
    direction: rtl;
}

.step-left {
    transform: translateX(-100px);
}

.step-left.visible {
    transform: translateX(0);
}

.step-left .step-content-wrapper {
    direction: ltr;
}

.step-left .step-box {
    direction: rtl;
}

.step-box {
    position: relative;
    padding: 55px 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: var(--blur-md) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), inset 0 2px 4px rgba(255, 255, 255, 0.12), 0 0 100px rgba(92, 29, 244, 0.25);
    transition: all 0.7s var(--transition-normal);
    direction: rtl;
}

.step-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.4) 0%, rgba(139, 63, 249, 0.3) 50%, rgba(211, 96, 245, 0.4) 100%);
    background-size: 200% auto;
    z-index: var(--z-background);
    opacity: 0;
    transition: opacity 0.7s ease;
    animation: borderFlow 4s linear infinite;
    filter: blur(8px);
}

.step-box:hover {
    transform: translateY(-15px);
    border-color: rgba(92, 29, 244, 0.6);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.6), 0 0 150px rgba(92, 29, 244, 0.5), inset 0 2px 6px rgba(255, 255, 255, 0.2);
}

.step-box:hover::before {
    opacity: 1;
}

.step-number-badge {
    position: absolute;
    top: -30px;
    right: 45px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light), var(--color-primary-lighter));
    border-radius: var(--radius-circle);
    box-shadow: 0 15px 40px rgba(92, 29, 244, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 0 60px rgba(92, 29, 244, 0.8);
    animation: pulse 3s ease-in-out infinite;
}

.step-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary-light);
    filter: drop-shadow(0 6px 20px rgba(139, 63, 249, 0.7));
    animation: floatGentle 4s ease-in-out infinite;
}

.step-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.step-description {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.step-stats {
    display: flex;
    gap: var(--spacing-lg);
    padding-top: 25px;
    border-top: 1px solid rgba(92, 29, 244, 0.3);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(92, 29, 244, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(92, 29, 244, 0.2);
    transition: var(--transition-normal);
}

.stat-item:hover {
    background: rgba(92, 29, 244, 0.2);
    border-color: rgba(92, 29, 244, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light), var(--color-primary-lighter));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.step-image-box {
    position: relative;
    width: 100%;
    height: 450px;
    transition: all 0.9s var(--transition-normal);
    overflow: hidden;
}

.shape-morph-1 {
    clip-path: polygon(12% 0%, 100% 0%, 100% 88%, 88% 100%, 0% 100%, 0% 12%);
}

.shape-morph-2 {
    clip-path: polygon(0% 0%, 88% 0%, 100% 12%, 100% 100%, 12% 100%, 0% 88%);
}

.shape-morph-3 {
    clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 90% 100%, 10% 100%, 0% 90%);
}

.step-image-box:hover {
    transform: scale(1.08) rotate(-3deg);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--transition-normal);
    filter: brightness(0.95);
    display: block;
}

.step-image-box:hover .image-wrapper img {
    transform: scale(1.2) rotate(3deg);
    filter: brightness(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.25) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(8, 3, 14, 0.75) 100%);
    mix-blend-mode: multiply;
    transition: opacity 0.7s ease;
}

.image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%, transparent 100%);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0s;
}

.step-image-box:hover .image-shine {
    transform: translateX(200%) skewX(-20deg);
    transition: transform 1.2s ease;
}

.shape-decoration {
    position: absolute;
    z-index: 15;
    animation: floatGentle 5s ease-in-out infinite;
    transition: var(--transition-normal);
}

.deco-1 {
    width: 90px;
    height: 90px;
    top: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light), var(--color-primary-lighter));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 15px 40px rgba(92, 29, 244, 0.7);
}

.deco-2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-lighter), var(--color-primary));
    border-radius: var(--radius-circle);
    box-shadow: 0 15px 40px rgba(139, 63, 249, 0.7);
}

.deco-3 {
    width: 85px;
    height: 85px;
    top: -22px;
    right: -22px;
    background: linear-gradient(135deg, var(--color-primary-lighter), var(--color-primary-light), var(--color-primary));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    box-shadow: 0 15px 40px rgba(211, 96, 245, 0.7);
}

.step-image-box:hover .shape-decoration {
    transform: scale(1.2) rotate(20deg);
}

.floating-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: var(--spacing-xs);
    z-index: 20;
}

.floating-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    box-shadow: 0 4px 15px rgba(92, 29, 244, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.floating-dots .dot:nth-child(2) { animation-delay: 0.3s; }
.floating-dots .dot:nth-child(3) { animation-delay: 0.6s; }

.step-connector {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 90px;
    background: linear-gradient(180deg, rgba(92, 29, 244, 0.7) 0%, rgba(139, 63, 249, 0.4) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(92, 29, 244, 0.6);
    animation: pulse 3s ease-in-out infinite;
}

.step-item:last-child .step-connector {
    display: none;
}

.cta-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(18, 5, 35, 1) 0%, rgba(30, 10, 50, 1) 25%, rgba(92, 29, 244, 0.15) 50%, rgba(30, 10, 50, 1) 75%, rgba(18, 5, 35, 1) 100%);
    padding: 120px 40px;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(92, 29, 244, 0.3) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(139, 63, 249, 0.25) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.cta-content {
    flex: 1;
    max-width: 650px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.2), rgba(139, 63, 249, 0.15));
    border: 1.5px solid rgba(92, 29, 244, 0.5);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    animation: floatGentle 3s ease-in-out infinite;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.cta-highlight {
    background: linear-gradient(135deg, #5c1df4 0%, #8b3ff9 50%, #d360f5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 20px rgba(92, 29, 244, 0.8));
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-action {
    display: flex;
    gap: 25px;
    align-items: center;
}

.cta-button {
    padding: 20px 55px;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Kalameh', sans-serif;
    color: white;
    background: linear-gradient(135deg, #5c1df4 0%, #8b3ff9 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 12px 40px rgba(92, 29, 244, 0.5);
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(92, 29, 244, 0.7);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.cta-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-light);
    transition: width 0.3s ease;
}

.cta-link:hover {
    color: var(--color-primary-light);
}

.cta-link:hover::after {
    width: 100%;
}

.bento-section {
    padding: 6rem 6vw;
    background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 50%, var(--bg-dark-3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bento-main-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-lighter) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 25px rgba(92, 29, 244, 0.7));
    font-family: 'Kalameh', sans-serif;
    transition: all 0.5s ease;
}

.bento-main-title:hover {
    transform: scale(1.03);
}

.card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 450px;
    width: 100%;
    max-width: 1400px;
}

.bento-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.02), 0 8px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(10, 0, 20, 0.98) 0%, rgba(10, 0, 20, 0.90) 30%, rgba(10, 0, 20, 0.70) 60%, transparent 100%);
    backdrop-filter: blur(3px);
    transition: all 0.4s ease;
    z-index: 1;
}

.bento-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(179, 122, 255, 0.3), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 0;
}

.bento-item:hover::after {
    opacity: 1;
    transform: scale(1.05);
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(179, 122, 255, 0.35);
    border-color: rgba(179, 122, 255, 0.25);
}

.bento-item:hover::before {
    height: 50%;
    background: linear-gradient(to top, rgba(10, 0, 20, 1) 0%, rgba(10, 0, 20, 0.95) 40%, rgba(10, 0, 20, 0.75) 70%, transparent 100%);
}

.bento-item .content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    padding: 2em 1.8em;
}

.bento-item h3 {
    margin: 0 0 0.7em 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.bento-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

.events-showcase {
    position: relative;
    padding: var(--spacing-5xl) var(--spacing-md);
    background: linear-gradient(180deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 50%, var(--bg-dark-3) 100%);
    overflow: hidden;
}

.events-showcase::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(92, 29, 244, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.showcase-container {
    position: relative;
    z-index: var(--z-content);
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.showcase-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.title-accent {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7em;
    font-weight: 600;
    margin-bottom: 0.3em;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-lighter) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 25px rgba(92, 29, 244, 0.6));
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-4xl);
}

.showcase-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: var(--blur-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(92, 29, 244, 0.4), 0 0 80px rgba(139, 63, 249, 0.3);
    border-color: rgba(92, 29, 244, 0.5);
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.85);
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 60%, rgba(8, 3, 14, 0.9) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: var(--spacing-md);
}

.showcase-category {
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(92, 29, 244, 0.9), rgba(139, 63, 249, 0.9));
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.showcase-info {
    padding: var(--spacing-lg);
}

.showcase-event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.showcase-stats {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.95rem;
}

.stat {
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 15px;
    background: rgba(92, 29, 244, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(92, 29, 244, 0.3);
}

.showcase-cta {
    text-align: center;
}

.showcase-cta p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.showcase-button {
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Kalameh', sans-serif;
    color: white;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(92, 29, 244, 0.4);
    text-decoration: none;
    display: inline-block;
}

.showcase-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(92, 29, 244, 0.6);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}