:root {
    --primary-color: #4b2349;
    --secondary-color: #5f1a3a;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 100vh;
    color: white;
}

.coming-soon-container {
    padding: 2rem;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-container {
    color: white;
    margin-bottom: 2rem;
}

.countdown-container {
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.copyright:hover {
    opacity: 1;
}

.subscribe-container input {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.8rem;
}

.subscribe-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-container .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.subscribe-container .btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.social-icons {
    margin-top: 2rem;
}

.social-icon {
    color: white;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}