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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    z-index: 1;
    gap: 4rem;
}

.image-section {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.image-section-mobile {
    display: none;
}

.cta-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.2), 0 0 40px rgba(0, 255, 255, 0.1);
    object-fit: cover;
    max-height: 80vh;
}

.image-section-mobile .cta-image {
    object-fit: contain !important;
    max-height: none !important;
    height: auto !important;
}

.content {
    flex: 1;
    text-align: center;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-image {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.logo {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff00ff 0%, #ff00ff 25%, #00ffff 50%, #ff00ff 75%, #ff00ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.coming-soon {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ff00ff 0%, #ff00ff 33%, #00ffff 66%, #ff00ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.sub-description {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.email {
    display: inline-block;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.email:hover {
    color: #ff00ff;
    transform: translateY(-2px);
}

.email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: width 0.3s ease;
}

.email:hover::after {
    width: 100%;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff00ff, #ff00ff);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #00ffff, #00ffff);
    bottom: -250px;
    right: -250px;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

@media (max-width: 968px) {
    .container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .image-section {
        display: none;
    }
    
    .image-section-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin: 2rem auto;
        animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    .image-section-mobile .cta-image {
        max-height: none !important;
        height: auto !important;
        width: 100%;
        object-fit: contain !important;
    }
    
    .content {
        max-width: 100%;
        width: 100%;
    }
    
    .logo-image {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .image-section-mobile {
        max-width: 100%;
        margin: 1.5rem auto;
    }
    
    .image-section-mobile .cta-image {
        max-height: none !important;
        height: auto !important;
        width: 100%;
        object-fit: contain !important;
    }
    
    .logo-image {
        width: 80px;
        margin-bottom: 1rem;
    }
    
    .gradient-orb {
        filter: blur(60px);
    }
    
    .orb-1 {
        width: 300px;
        height: 300px;
    }
    
    .orb-2 {
        width: 350px;
        height: 350px;
    }
    
    .orb-3 {
        width: 250px;
        height: 250px;
    }
}

