        @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'IBM Plex sans Arabic', sans-serif;
        }
        
body {
    /* Animated gradient background */
    background: linear-gradient(135deg, #48D1CC, #6A82FB, #4A5BBD, #FF6B6B, #48D1CC);
    background-size: 200% 200%;
    animation: animatedBG 12s ease-in-out infinite;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    direction: rtl;
    position: relative;
    overflow: hidden;
}

@keyframes animatedBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
        
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .container {
            max-width: 800px;
            width: 100%;
            background: #2A2D34;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(74, 91, 189, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .logo {
            margin-bottom: 40px;
        }
                
        .logo p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-top: 10px;
        }
        
        .tagline {
            font-size: 1.2rem;
            margin-bottom: 40px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .tagline span {
                        font-size: 1.8rem;
            font-weight: 700;
            color: #6A82FB;
        }
        
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        .countdown-box {
            background: #6A82FB;
            border-radius: 12px;
            padding: 20px 15px;
            min-width: 100px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .countdown-box:hover {
            transform: translateY(-10px);
            background: rgba(74, 91, 189, 0.9);
            box-shadow: 0 8px 25px rgba(74, 91, 189, 0.9);
        }
        
        .countdown-value {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #48D1CC;
            text-shadow: 0 0 10px rgba(60, 70, 140, 0.8);
        }
        
        .countdown-label {
            font-size: 1.1rem;
            opacity: 0.8;
        }
        

/* Redesigned Social Icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    margin: 40px 0 30px;
    padding: 0 10px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(74, 91, 189, 0.18);
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s, background 0.18s;
}

.social-icon i {
    z-index: 2;
    position: relative;
    transition: color 0.18s;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.18s;
    z-index: 1;
}

.social-icon:hover {
    transform: scale(1.13) rotate(-3deg);
    box-shadow: 0 6px 24px 0 rgba(74, 91, 189, 0.25), 0 1.5px 6px 0 rgba(0,0,0,0.10);
    background: linear-gradient(135deg, #6A82FB 0%, #48D1CC 100%);
}

.social-icon.facebook:hover { background: linear-gradient(135deg, #1877f2 0%, #4A5BBD 100%); }
.social-icon.twitter:hover { background: linear-gradient(135deg, #1da1f2 0%, #48D1CC 100%); }
.social-icon.instagram:hover { background: linear-gradient(135deg, #c32aa3 0%, #fd5d47 100%); }
.social-icon.youtube:hover { background: linear-gradient(135deg, #ff0000 0%, #c31432 100%); }
.social-icon.linkedin:hover { background: linear-gradient(135deg, #0077b5 0%, #00c6ff 100%); }
.social-icon.pinterest:hover { background: linear-gradient(135deg, #e60023 0%, #ff6b6b 100%); }
.social-icon.threads:hover { background: linear-gradient(135deg, #000 0%, #fff 100%); color: #000; }
.social-icon.tiktok:hover { background: linear-gradient(135deg, #010101 0%, #69C9D0 100%); color: #fff; }
.social-icon.vk:hover { background: linear-gradient(135deg, #4c75a3 0%, #5b9be6 100%); }

@media (max-width: 600px) {
    .social-icons {
        gap: 10px 8px;
        padding: 0 2px;
    }
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        border-color: #4A5BBD;
        border-width: 3px;
        border-radius: 10px;
    }
}
        
        .copyright {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1rem;
            opacity: 0.7;
        }
        
        .subscribe {
            margin: 30px 0;
        }
        
        .subscribe-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .subscribe-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            outline: none;
            direction: ltr;
        }
        
        .subscribe-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .subscribe-button {
            padding: 15px 30px;
            border: none;
            border-radius: 0 50px 50px 0;
            background: #ffd166;
            color: #1a2a6c;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .subscribe-button:hover {
            background: #ffc44d;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
            }
            
            .logo h1 {
                font-size: 2.5rem;
            }
            
            .tagline {
                font-size: 1.4rem;
            }
            
            .countdown-box {
                min-width: 80px;
                padding: 15px 10px;
            }
            
            .countdown-value {
                font-size: 2rem;
            }
            
            .countdown-label {
                font-size: 0.9rem;
            }
            
            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                  border-color: #4A5BBD;
        border-width: 3px;
            }
            
            .subscribe-form {
                flex-direction: column;
                gap: 15px;
            }
            
            .subscribe-input,
            .subscribe-button {
                border-radius: 50px;
                width: 100%;
            }
        }
