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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 50px;
}

.logo {
    max-width: 575px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 38, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

.coming-soon {
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b26, #ff8f4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.tagline {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 60px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 38, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-item:hover {
    background: rgba(255, 107, 38, 0.1);
    border-color: #ff6b26;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 38, 0.3);
}

.contact-item.active {
    width: auto;
    border-radius: 50px;
    padding: 0 30px;
    gap: 15px;
}

.icon {
    width: 28px;
    height: 28px;
    color: #ff6b26;
    filter: drop-shadow(0 0 8px rgba(255, 107, 38, 0.4));
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .icon {
    transform: scale(1.1);
}

.contact-text {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.1rem;
    color: #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.contact-item.active .contact-text {
    opacity: 1;
    max-width: 400px;
    margin-left: 10px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ff6b26;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 38, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: 5s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .logo {
        max-width: 350px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        width: 60px;
        height: 60px;
    }
    
    .icon {
        width: 24px;
        height: 24px;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    .circle-1,
    .circle-2,
    .circle-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .contact-info {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .contact-item {
        width: 55px;
        height: 55px;
    }
    
    .contact-item.active {
        padding: 0 20px;
    }
    
    .icon {
        width: 22px;
        height: 22px;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
}
