* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #fdf7ed 0%, #f8f0e3 25%, #f3e9d5 50%, #f0e3cc 75%, #f5ede1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.under-construction {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #34495e;
    font-weight: 500;
}

.message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.instagram-link {
    display: block;
    margin: 10px 0;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.coming-soon {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
    
    .logo {
        width: 120px;
    }
}
/* 
.tiktok-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(45deg, #69C9D0 0%, #69C9D0 25%, #EE1D52 50%, #EE1D52 75%, #FFFC00 100%);
    margin-top: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

 .tiktok-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */ 