@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.container {
    width: 50%;
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo {
    margin-bottom: 2.5rem;
}

.circle {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

.circle i {
    color: white;
    font-size: 20px;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.subscribe {
    margin-bottom: 2.5rem;
}

.subscribe-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 0.5rem;
}

input[type="email"] {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.9rem;
}

button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social {
    margin-bottom: 1.5rem;
}

.social h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.9rem;
    margin: 0 auto;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.coming-soon-bg {
    position: relative;
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #0a1451 100%);
    overflow: hidden;
    padding: 2rem;
}

.coming-soon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.coming-soon-bg span {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        0 0 20px rgba(0, 123, 255, 0.3),
        0 0 40px rgba(0, 123, 255, 0.2),
        0 0 60px rgba(0, 123, 255, 0.1);
    position: relative;
    line-height: 1.2;
    animation: glow 2s ease-in-out infinite alternate;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    padding: 1rem;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(0, 123, 255, 0.3),
            0 0 40px rgba(0, 123, 255, 0.2),
            0 0 60px rgba(0, 123, 255, 0.1);
    }
    to {
        text-shadow: 
            0 0 30px rgba(0, 123, 255, 0.4),
            0 0 50px rgba(0, 123, 255, 0.3),
            0 0 70px rgba(0, 123, 255, 0.2);
    }
}

footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    z-index: 3;
    border-radius: 4px 4px 0 0;
    backdrop-filter: blur(5px);
}

footer i {
    color: #ff4444;
    font-size: 0.85rem;
    margin: 0 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .container {
        width: 100%;
        min-height: 80vh;
        padding: 3rem 2rem;
    }

    .coming-soon-bg {
        width: 100%;
        min-height: 20vh;
        padding: 1.5rem;
    }

    .coming-soon-bg span {
        font-size: 50px;
        letter-spacing: 3px;
        padding: 0.75rem;
    }

    footer {
        width: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1.5rem;
    }

    .coming-soon-bg span {
        font-size: 35px;
        letter-spacing: 2px;
        padding: 0.5rem;
    }
} 