:root {
    --primary: #5e1b68;
    --secondary: #f4f4f4;
    --tertiary: #b7279c;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Animated background particles */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(183, 39, 156, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(94, 27, 104, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 70%, rgba(183, 39, 156, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 600px;
    padding: 3rem;
    min-width: 500px;
}

.right-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 500px;
    padding: 3rem;
}

.home-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding: 0 60px;
}

.logo {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px 50px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

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

.logo-image {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.logo-text h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.logo-text p {
    margin: 5px 0 0 0;
    font-size: 1.1rem;
    color: var(--tertiary);
    font-weight: 400;
    opacity: 0.8;
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.coming-soon p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 450px;
    line-height: 1.6;
}

.submit-btn {
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--primary) 100%);
    color: white;
    padding: 18px 35px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(183, 39, 156, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 60px rgba(183, 39, 156, 0.6);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        margin: 1rem;
    }
    
    .left-content, .right-content {
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    
    .left-content {
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
        min-width: 100%;
        padding: 2rem;
    }
    
    .right-content {
        min-width: 100%;
        padding: 2rem;
    }
    
    .home-page {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        text-align: center;
    }
    
    .logo {
        padding: 30px 40px;
        margin-bottom: 25px;
    }
    
    .logo-image {
        max-height: 120px;
    }
    
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .logo-text p {
        font-size: 1rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .submit-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-page {
        padding: 15px;
    }
    
    .logo {
        padding: 25px 30px;
        border-radius: 20px;
    }
    
    .logo-image {
        max-height: 100px;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .logo-text p {
        font-size: 0.9rem;
    }
    
    .coming-soon h2 {
        font-size: 1.7rem;
        margin-bottom: 8px;
    }
    
    .coming-soon p {
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        border-radius: 40px;
    }
}

@media (max-width: 360px) {
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .coming-soon h2 {
        font-size: 1.6rem;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}