* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F0641E;
    --primary-dark: #D8540E;
    --primary-light: #FF7A3D;
    --secondary-color: #323232;
    --accent-color: #FAF0E6;
    --text-color: #323232;
    --text-light: rgba(50, 50, 50, 0.9);
    --text-muted: rgba(50, 50, 50, 0.7);
    --text-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #FAF0E6 0%, #FFF8F0 50%, #FAF0E6 100%);
    --bg-gradient-radial: radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(250, 240, 230, 0.98) 100%);
    --shadow-orange: 0 0 30px rgba(240, 100, 30, 0.4);
    --shadow-orange-strong: 0 0 50px rgba(240, 100, 30, 0.6);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(240, 100, 30, 0.3);
}

body {
    font-family: 'Cairo', 'Arial', sans-serif;
    background: var(--bg-gradient);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-color);
    position: relative;
    cursor: default;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(240, 100, 30, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(240, 100, 30, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 40% 20%, rgba(240, 100, 30, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 60% 40%, rgba(240, 100, 30, 0.04) 0%, transparent 50%);
    animation: bgMove 25s ease-in-out infinite alternate;
    z-index: 0;
    opacity: 0.8;
}

@keyframes bgMove {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-30px, -20px) scale(1.1) rotate(2deg);
    }
    66% {
        transform: translate(20px, -30px) scale(1.05) rotate(-2deg);
    }
    100% {
        transform: translate(-20px, -20px) scale(1.15) rotate(1deg);
    }
}

#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    z-index: 1;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(240, 100, 30, 0.8);
    transition: all 0.3s ease;
}

.particle:hover {
    transform: scale(2);
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1100px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    padding: 40px 30px;
    background: var(--bg-gradient-radial);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--shadow-dark),
        inset 0 0 60px rgba(240, 100, 30, 0.03);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 40px;
    animation: pulse 2s ease-in-out infinite;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 30px rgba(240, 100, 30, 0.4));
}

.logo-container:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(240, 100, 30, 0.6));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotateY(0deg);
    }
    50% {
        transform: scale(1.05) rotateY(5deg);
    }
}

.logo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    filter: drop-shadow(var(--shadow-gold));
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: rotateY(360deg) scale(1.1);
}

.logo svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
    filter: drop-shadow(0 0 20px rgba(240, 100, 30, 0.6));
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-title {
    margin-bottom: 40px;
    line-height: 1.3;
    padding: 0 30px;
}

.title-line {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #F0641E 0%, #FF7A3D 50%, #F0641E 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(240, 100, 30, 0.3);
    margin: 0;
    animation: glow 2s ease-in-out infinite alternate, textShine 3s linear infinite;
    position: relative;
    cursor: default;
    transition: transform 0.3s ease;
    letter-spacing: 1px;
    white-space: nowrap;
}

.title-line:hover {
    transform: scale(1.05) translateY(-5px);
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(240, 100, 30, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(240, 100, 30, 0.8));
    }
}

@keyframes textShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


.description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 45px;
    color: var(--text-light);
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 50px 0;
    flex-wrap: wrap;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(240, 100, 30, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(240, 100, 30, 0.03);
    transition: all 0.3s ease;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 20px 18px;
    min-width: 100px;
    border: 2px solid rgba(240, 100, 30, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(240, 100, 30, 0.03);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-5px) rotateX(5deg);
    border-color: rgba(240, 100, 30, 0.4);
    box-shadow: 
        0 8px 30px rgba(240, 100, 30, 0.3),
        inset 0 0 20px rgba(240, 100, 30, 0.05);
    background: rgba(255, 255, 255, 1);
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 100, 30, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.countdown-item:hover::after {
    width: 200px;
    height: 200px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 
        0 0 15px rgba(240, 100, 30, 0.5),
        0 0 30px rgba(240, 100, 30, 0.3),
        0 0 45px rgba(240, 100, 30, 0.15);
    line-height: 1.1;
    margin-bottom: 6px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.countdown-item:hover .countdown-number {
    transform: scale(1.12) rotateY(5deg);
    text-shadow: 
        0 0 25px rgba(240, 100, 30, 0.7),
        0 0 40px rgba(240, 100, 30, 0.5),
        0 0 55px rgba(240, 100, 30, 0.3);
}

.countdown-label {
    font-size: 0.85rem;
    color: rgba(50, 50, 50, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    animation: blink 1s ease-in-out infinite, separatorPulse 2s ease-in-out infinite;
    margin: 0 -3px;
    text-shadow: 0 0 15px rgba(240, 100, 30, 0.7);
    position: relative;
    line-height: 1;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes separatorPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.95;
    transition: all 0.3s ease;
    padding: 20px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(240, 100, 30, 0.2);
    position: relative;
    overflow: visible;
    cursor: pointer;
    min-width: 150px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(240, 100, 30, 0.03);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(240, 100, 30, 0.4);
    box-shadow: 
        0 8px 30px rgba(240, 100, 30, 0.3),
        inset 0 0 20px rgba(240, 100, 30, 0.05);
    background: rgba(255, 255, 255, 1);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.15) rotateY(360deg);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.15) rotateY(360deg);
    }
    50% {
        transform: scale(1.25) rotateY(360deg);
    }
}

.feature-icon {
    font-size: 2.2rem;
    margin: 0;
    position: relative;
    z-index: 3;
    filter: 
        drop-shadow(0 0 8px rgba(240, 100, 30, 0.8))
        drop-shadow(0 0 16px rgba(240, 100, 30, 0.4))
        drop-shadow(0 0 24px rgba(240, 100, 30, 0.2));
    transition: all 0.5s ease;
    animation: iconFloat 3s ease-in-out infinite;
    transform-origin: center;
    display: inline-block;
    line-height: 1;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

.feature-item:hover .feature-icon {
    filter: 
        drop-shadow(0 0 15px rgba(240, 100, 30, 1))
        drop-shadow(0 0 25px rgba(240, 100, 30, 0.6))
        drop-shadow(0 0 35px rgba(240, 100, 30, 0.4));
    transform: scale(1.1);
    animation: iconFloat 1.5s ease-in-out infinite, iconRotate 3s linear infinite, iconShine 2s ease-in-out infinite;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

@keyframes iconShine {
    0%, 100% {
        filter: 
            drop-shadow(0 0 15px rgba(240, 100, 30, 1))
            drop-shadow(0 0 25px rgba(240, 100, 30, 0.6))
            drop-shadow(0 0 35px rgba(240, 100, 30, 0.4));
    }
    50% {
        filter: 
            drop-shadow(0 0 18px rgba(240, 100, 30, 1))
            drop-shadow(0 0 28px rgba(240, 100, 30, 0.8))
            drop-shadow(0 0 38px rgba(240, 100, 30, 0.6));
    }
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(240, 100, 30, 0.5) 0%, rgba(255, 122, 61, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(240, 100, 30, 0.4);
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.feature-item:hover .feature-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.4);
    animation: glowPulse 1s ease-in-out infinite, glowRotate 4s linear infinite;
    box-shadow: 
        0 0 40px rgba(240, 100, 30, 0.6),
        0 0 55px rgba(240, 100, 30, 0.4),
        inset 0 0 18px rgba(240, 100, 30, 0.2);
}

@keyframes glowRotate {
    0% {
        transform: translate(-50%, -50%) scale(1.4) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4) rotate(360deg);
    }
}

.feature-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95px;
    height: 95px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item:hover .feature-particles {
    opacity: 1;
}

.feature-particles::before,
.feature-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(240, 100, 30, 1),
        0 0 30px rgba(240, 100, 30, 0.6);
}

.feature-particles::before {
    top: 15%;
    left: 15%;
    animation: particleMove1 2.5s ease-in-out infinite;
}

.feature-particles::after {
    bottom: 15%;
    right: 15%;
    animation: particleMove2 2.5s ease-in-out infinite;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border: 2px solid rgba(240, 100, 30, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
}

.feature-item:hover .feature-icon-wrapper::before {
    opacity: 0.8;
    animation: ringPulse 1.5s ease-in-out infinite, ringRotate 3s linear infinite;
    border-color: rgba(240, 100, 30, 0.6);
    box-shadow: 0 0 40px rgba(240, 100, 30, 0.4);
}

@keyframes ringRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes particleMove1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(40px, -40px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(60px, -20px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(20px, -60px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes particleMove2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(-40px, 40px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-60px, 20px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(-20px, 60px) scale(1.1);
        opacity: 0.9;
    }
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    letter-spacing: 0.3px;
    text-align: center;
}

.feature-item:hover .feature-text {
    color: var(--primary-color);
    text-shadow: 
        0 0 15px rgba(240, 100, 30, 0.6),
        0 0 30px rgba(240, 100, 30, 0.4);
    transform: scale(1.05);
}

.feature-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.5s ease;
    box-shadow: 0 0 8px rgba(240, 100, 30, 0.6);
}

.feature-item:hover .feature-line {
    width: 60px;
}

.notification {
    margin-top: 50px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    border: 2px solid rgba(240, 100, 30, 0.2);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(240, 100, 30, 0.03);
}

.notification::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(240, 100, 30, 0.1), transparent);
    animation: notificationShine 3s infinite;
}

@keyframes notificationShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.notification p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.email-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

#email-input {
    padding: 18px 25px;
    border: 2px solid rgba(240, 100, 30, 0.35);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    color: var(--text-color);
    font-size: 1.1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 0 10px rgba(240, 100, 30, 0.03);
}

#email-input::placeholder {
    color: rgba(50, 50, 50, 0.5);
}

#email-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(240, 100, 30, 0.3);
}

#submit-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, #F0641E 0%, #FF7A3D 50%, #F0641E 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 20px rgba(240, 100, 30, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: buttonGradient 3s ease infinite;
}

@keyframes buttonGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

#submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

#submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

#submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(240, 100, 30, 0.6);
    background: linear-gradient(135deg, #FF7A3D 0%, #F0641E 100%);
}

#submit-btn:active {
    transform: translateY(-1px) scale(1.02);
}

#submit-btn span {
    position: relative;
    z-index: 1;
}

.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    min-height: 20px;
    transition: all 0.3s ease;
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.5);
}

.progress-section {
    margin: 50px auto;
    max-width: 600px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    border: 2px solid rgba(240, 100, 30, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(240, 100, 30, 0.03);
    transition: all 0.3s ease;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

#progress-percentage {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(240, 100, 30, 0.5);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(240, 100, 30, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #F0641E 0%, #FF7A3D 50%, #F0641E 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 
        0 0 20px rgba(240, 100, 30, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 20px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    border: 2px solid rgba(240, 100, 30, 0.2);
    min-width: 110px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(240, 100, 30, 0.03);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 100, 30, 0.4);
    box-shadow: 
        0 8px 30px rgba(240, 100, 30, 0.3),
        inset 0 0 20px rgba(240, 100, 30, 0.05);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(240, 100, 30, 0.6);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.social-share {
    margin-top: 50px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    border: 2px solid rgba(240, 100, 30, 0.2);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(240, 100, 30, 0.03);
    transition: all 0.3s ease;
}

.social-share p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(240, 100, 30, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(240, 100, 30, 0.4);
    background: linear-gradient(135deg, rgba(240, 100, 30, 0.15) 0%, rgba(255, 122, 61, 0.1) 100%);
}

.social-btn:hover .social-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(240, 100, 30, 0.8));
}

.social-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.social-btn:active .social-icon {
    transform: scale(1.05);
}

/* ألوان خاصة لكل منصة */
.social-btn[data-platform="whatsapp"]:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 100%);
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.social-btn[data-platform="twitter"]:hover {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.2) 0%, rgba(29, 161, 242, 0.1) 100%);
    border-color: rgba(29, 161, 242, 0.6);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-btn[data-platform="facebook"]:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2) 0%, rgba(24, 119, 242, 0.1) 100%);
    border-color: rgba(24, 119, 242, 0.6);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-btn[data-platform="copy"]:hover {
    background: linear-gradient(135deg, rgba(240, 100, 30, 0.2) 0%, rgba(255, 122, 61, 0.1) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(240, 100, 30, 0.4);
}

.footer {
    margin-top: 60px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 2;
    position: relative;
    padding: 20px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
        border-radius: 25px;
    }
    
    .title-line {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
        white-space: normal;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 35px;
    }
    
    .countdown-container {
        gap: 8px;
        padding: 20px 15px;
        border-radius: 16px;
        margin: 40px 0;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 18px 12px;
        border-radius: 14px;
    }
    
    .countdown-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .countdown-separator {
        font-size: 1.6rem;
        margin: 0 -2px;
    }
    
    .features {
        gap: 20px;
        padding: 0 15px;
        margin: 35px 0;
    }
    
    .feature-item {
        padding: 18px 15px;
        min-width: 140px;
        gap: 10px;
        border-radius: 16px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-glow {
        width: 75px;
        height: 75px;
    }
    
    .feature-item:hover .feature-glow {
        transform: translate(-50%, -50%) scale(1.3);
    }
    
    .feature-icon-wrapper::before {
        width: 80px;
        height: 80px;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .feature-content {
        gap: 6px;
    }
    
    .feature-item:hover .feature-line {
        width: 50px;
    }
    
    .notification {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .notification p {
        font-size: 0.9rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    #email-input {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    #submit-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .footer {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .progress-section {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .stats-container {
        gap: 20px;
        margin: 40px 0;
    }
    
    .stat-item {
        padding: 18px 20px;
        min-width: 95px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .progress-label {
        font-size: 0.95rem;
    }
    
    .notification p {
        font-size: 0.85rem;
    }
    
    .social-share {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .social-share p {
        font-size: 1rem;
    }
    
    .social-btn {
        width: 48px;
        height: 48px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 2rem;
        letter-spacing: 0.5px;
        white-space: normal;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* تأثير Ripple للأزرار */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* تحسينات إضافية */
.content {
    will-change: transform;
}

.countdown-item {
    will-change: transform;
}

.feature-item {
    will-change: transform;
}

/* تأثيرات على الإدخال */
#email-input {
    position: relative;
}

#email-input:focus {
    animation: inputPulse 2s ease-in-out infinite;
}

@keyframes inputPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    }
}

/* تأثيرات على الفوتر */
.footer {
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* تحسينات الأداء */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* تأثيرات متقدمة للوصول */
@media (prefers-reduced-motion: no-preference) {
    .countdown-item,
    .feature-item,
    .logo {
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}

