/* ===== إعدادات عامة ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ألوان لامعة 8K 4D */
    --primary-gradient: linear-gradient(135deg, 
        #ff6b6b 0%, 
        #ffd93d 25%, 
        #6bcf7f 50%, 
        #4d79ff 75%, 
        #ff6b6b 100%);
    
    --gold-gradient: linear-gradient(135deg, 
        #ffd700 0%, 
        #ffed4e 25%, 
        #ffc107 50%, 
        #ff8f00 75%, 
        #ffd700 100%);
    
    --diamond-gradient: linear-gradient(135deg, 
        #e3f2fd 0%, 
        #bbdefb 25%, 
        #90caf9 50%, 
        #64b5f6 75%, 
        #42a5f5 100%);
    
    --neon-blue: linear-gradient(135deg, 
        #00d4ff 0%, 
        #0099cc 25%, 
        #0066ff 50%, 
        #3366ff 75%, 
        #6699ff 100%);
    
    --neon-green: linear-gradient(135deg, 
        #00ff88 0%, 
        #00cc66 25%, 
        #00ff44 50%, 
        #66ff99 75%, 
        #99ffcc 100%);
    
    --neon-purple: linear-gradient(135deg, 
        #cc66ff 0%, 
        #9933ff 25%, 
        #6600ff 50%, 
        #9966ff 75%, 
        #cc99ff 100%);
    
    --holographic: linear-gradient(135deg, 
        #ff0080 0%, 
        #ff8000 20%, 
        #ffff00 40%, 
        #80ff00 60%, 
        #00ff80 80%, 
        #0080ff 100%);
    
    /* ظلال ثلاثية الأبعاد */
    --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.3), 
                 0 15px 25px rgba(0, 0, 0, 0.2), 
                 0 5px 10px rgba(0, 0, 0, 0.1);
    
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.6), 
                   0 0 40px rgba(0, 212, 255, 0.4), 
                   0 0 60px rgba(0, 212, 255, 0.2);
    
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.6), 
                   0 0 40px rgba(255, 215, 0, 0.4), 
                   0 0 60px rgba(255, 215, 0, 0.2);
    
    /* خطوط */
    --font-primary: 'Cairo', 'Tajawal', sans-serif;
    --font-secondary: 'Tajawal', 'Cairo', sans-serif;
    
    /* مساحات */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 20px;
    
    /* انتقالات */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
    position: relative;
}

/* تأثير الخلفية المتحركة */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(-20px) translateY(-20px) rotate(1deg); }
    66% { transform: translateX(20px) translateY(20px) rotate(-1deg); }
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== شريط الأخبار المباشرة ===== */
.live-news-bar {
    background: var(--holographic);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-neon);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.live-news-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s linear infinite;
}

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

.news-content {
    display: flex;
    animation: scrollNews 30s linear infinite;
    white-space: nowrap;
}

.news-item {
    margin-left: 50px;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

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

/* ===== الرأس ===== */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-3d);
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    text-align: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-gold);
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-telegram {
    background: var(--neon-blue);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.btn-telegram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-3d);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ===== القسم الرئيسي ===== */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-coin {
    position: absolute;
    font-size: 40px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.floating-coin:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-coin:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-coin:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-coin:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 3s;
}

.floating-coin:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.title-highlight {
    background: var(--holographic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.2) saturate(1.5); }
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-number {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: var(--shadow-gold);
}

/* ===== الإحصائيات المباشرة ===== */
.live-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--neon-blue);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-neon);
}

.stat-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-hero-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-3d);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.8);
}

.btn-hero-secondary {
    background: var(--neon-blue);
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-neon);
}

.btn-hero-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

/* ===== خطوات الانضمام ===== */
.steps-section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: var(--holographic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.step-card:hover::before {
    opacity: 0.1;
}

.step-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: var(--shadow-3d);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    box-shadow: var(--shadow-gold);
}

.step-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== خدمة VIP ===== */
.vip-section {
    padding: var(--section-padding);
    position: relative;
}

.vip-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0.05;
    animation: vipGlow 4s ease-in-out infinite alternate;
}

@keyframes vipGlow {
    0% { opacity: 0.05; }
    100% { opacity: 0.15; }
}

.vip-header {
    margin-bottom: 40px;
}

.vip-title {
    font-size: 36px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: var(--shadow-gold);
}

.vip-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vip-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.feature-icon {
    font-size: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.btn-vip {
    background: var(--gold-gradient);
    color: #000;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 900;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-gold);
    display: inline-block;
}

.btn-vip:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

/* ===== شرح نسبة النسخ ===== */
.copy-percentage-section {
    padding: var(--section-padding);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copy-example {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.example-card, .benefits-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition-bounce);
}

.example-card:hover, .benefits-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.example-title, .benefits-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    background: var(--neon-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.example-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.example-value {
    font-weight: 900;
    font-size: 18px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.example-result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.result-arrow {
    font-size: 24px;
    color: #00ff88;
    font-weight: 900;
}

.result-value {
    font-weight: 700;
    color: #00ff88;
    font-size: 16px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    position: relative;
    padding-right: 30px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #00ff88;
    font-weight: 900;
    font-size: 18px;
}

/* ===== نتائج التليجرام ===== */
.telegram-results-section {
    padding: var(--section-padding);
    position: relative;
}

.telegram-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--holographic);
    opacity: 0;
    transition: var(--transition-smooth);
}

.platform-card:hover::before {
    opacity: 0.1;
}

.platform-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-3d);
}

.platform-icon {
    font-size: 80px;
    margin-bottom: 20px;
    background: var(--holographic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.platform-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.platform-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-platform-telegram {
    background: var(--neon-blue);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-neon);
    display: inline-block;
}

.btn-platform-telegram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.btn-platform-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    display: inline-block;
}

.btn-platform-youtube:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.btn-platform-pocket {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-3d);
    display: inline-block;
}

.btn-platform-pocket:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
}

/* ===== آراء العملاء ===== */
.testimonials-section {
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.testimonial-card:hover::before {
    opacity: 0.05;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: var(--shadow-3d);
}

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

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: var(--shadow-gold);
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.customer-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-profit {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 700;
    color: #00ff88;
    text-align: center;
}

/* ===== دعوة للعمل النهائية ===== */
.final-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    position: relative;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--holographic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn-cta-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-3d);
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.8);
}

.btn-cta-secondary {
    background: var(--neon-blue);
    color: #ffffff;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-neon);
}

.btn-cta-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

.btn-cta-support {
    background: var(--neon-green);
    color: #000;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-cta-support:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
}

/* ===== التذييل ===== */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 24px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== التصميم المتجاوب ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .live-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .copy-example {
        grid-template-columns: 1fr;
    }
    
    .telegram-links {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .vip-card {
        padding: 40px 20px;
    }
    
    .platform-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}



/* ===== شعار Pocket Option 5D 8K ===== */
.pocket-option-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6))
            drop-shadow(0 0 40px rgba(255, 107, 107, 0.4))
            drop-shadow(0 0 60px rgba(255, 215, 0, 0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
    transition: var(--transition-bounce);
}

.pocket-option-logo:hover {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8))
            drop-shadow(0 0 50px rgba(255, 107, 107, 0.6))
            drop-shadow(0 0 70px rgba(255, 215, 0, 0.5));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6))
                drop-shadow(0 0 40px rgba(255, 107, 107, 0.4))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8))
                drop-shadow(0 0 50px rgba(255, 107, 107, 0.6))
                drop-shadow(0 0 70px rgba(255, 215, 0, 0.5));
    }
}

/* ===== قسم قصة رضا ===== */
.reda-story-section {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--holographic);
    opacity: 0.03;
    animation: storyGlow 6s ease-in-out infinite alternate;
}

@keyframes storyGlow {
    0% { opacity: 0.03; }
    100% { opacity: 0.08; }
}

.story-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
}

.story-avatar {
    position: relative;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: avatarShine 3s linear infinite;
}

@keyframes avatarShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.avatar-text {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

.story-intro {
    text-align: center;
}

.story-title {
    font-size: 36px;
    font-weight: 900;
    background: var(--holographic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.story-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.story-content {
    margin-bottom: 50px;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-align: center;
}

.highlight-success {
    background: var(--neon-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.share-story-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: var(--neon-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.share-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 30px;
}

.share-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.question-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.question-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.share-cta {
    text-align: center;
}

.share-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-share-story {
    background: var(--neon-blue);
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-neon);
    display: inline-block;
    margin-bottom: 20px;
}

.btn-share-story:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

.share-footer {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ===== تحسينات للأجهزة المحمولة ===== */
@media (max-width: 768px) {
    .story-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .story-title {
        font-size: 28px;
    }
    
    .story-text {
        font-size: 16px;
    }
    
    .share-questions {
        grid-template-columns: 1fr;
    }
    
    .question-item {
        padding: 12px 15px;
    }
    
    .avatar-circle {
        width: 80px;
        height: 80px;
    }
    
    .avatar-text {
        font-size: 24px;
    }
    
    .pocket-option-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .story-card {
        padding: 30px 20px;
    }
    
    .share-story-section {
        padding: 30px 20px;
    }
    
    .story-title {
        font-size: 24px;
    }
    
    .share-title {
        font-size: 24px;
    }
}

