* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ed1c24 0%, #c41920 50%, #a31419 100%);
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%23ffffff" fill-opacity="0.03" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.coming-soon {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    animation: slideUp 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 250px;
    margin-bottom: 40px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

h1 {
    background: linear-gradient(135deg, #ed1c24 0%, #c41920 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

p {
    color: #455a64;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(44, 83, 100, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(44, 83, 100, 0.1);
    transform: translateY(-5px);
}

.contact-info h2 {
    color: #ed1c24;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.social-media {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ed1c24 0%, #c41920 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.4);
    border-radius: 20px;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .coming-soon {
        padding: 25px 15px;
        margin: 10px;
        border-radius: 20px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .social-media {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo {
        max-width: 160px;
        margin-bottom: 30px;
    }
    
    .contact-info {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        padding: 20px 12px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo {
        max-width: 140px;
    }
    
    .contact-info {
        padding: 15px 12px;
    }
} 