/* 
Made By : Mohamed Talhaoui
 */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

body {
    background-image: url(Images/bg.png);
    background-size: contain;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF3B30, #0b5035);
}

.coming-soon {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 60px 0;
    position: relative;
    display: inline-block;
}

.coming-soon span {
    display: inline-block;
    position: relative;
}

.coming-soon span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: -12px;
    left: 0;
    background: linear-gradient(90deg, #FF3B30, #0b5035);
    border-radius: 4px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 60px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    color: #1d1d1f;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.social-link:nth-child(1):hover {
    background: #1877F2;
    color: white;
}

.social-link:nth-child(2):hover {
    background: #e1306c;
    color: white;
}

.social-link:nth-child(3):hover {
    background: #0077B5;
    color: white;
}

.social-link:nth-child(4):hover {
    background: #000;
    color: white;
}

@media (max-width: 768px) {    
    .coming-soon {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2.5rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}