* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    /* min-height: 100vh; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
    font-family: 'Tajawal', sans-serif;
    color: #333;

    /* padding: 1rem; */
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.container {
    max-width: 700px;
    width: 100%;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    /* Soft, modern shadow */
}

/* --- Typography & Content --- */
/* h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-top: 1rem;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        } */

.spark {
    color: #007bff;
    /* Professional blue accent */
    display: inline-block;
}

.coming-soon {
    font-size: 1.5rem;
    color: #6c757d;
    /* Softer grey for subtext */
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #495057;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* --- Buttons & Links --- */
.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    display: block;
    padding: 0.9rem 1rem;
    text-decoration: none;
    border-radius: 8px;
    /* Modern rounded corners */
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #007bff;
    border-color: #dee2e6;
}

.btn-secondary:hover {
    background-color: #e9f3ff;
    /* Very light blue background on hover */
    border-color: #007bff;
    transform: translateY(-2px);
}

/* --- Social Media Section --- */
.social-icons {
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;

    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-4px);
    /* Slightly larger hover effect */
}

.social-icon svg {
    width: 28px;
    height: 28px;
    fill: #adb5bd;
    transition: fill 0.3s ease;
}

footer {
    background-color: white;
    width: 70%;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    animation: fadeInUp 1.2s ease;
}

.footer-section {
    width: 40%;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #2c3e50;
}

.footer-section p {
    color: #666;
    margin: 5px 0;
}

/* Platform specific hover colors */
.social-icon.facebook:hover svg {
    fill: #1877f2;
}

.social-icon.youtube:hover svg {
    fill: #ff0000;
}

.social-icon.instagram:hover svg {
    fill: #e1306c;
}

.social-icon.tiktok:hover svg {
    fill: #333;
}

.social-icon.whatsapp:hover svg {
    fill: #25d366;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .coming-soon {
        font-size: 1.3rem;
    }

    .links-container {
        grid-template-columns: 1fr;
        /* Stack buttons on smaller screens */
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        width: 90%;
    }
}