@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 10;
}

.content {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

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

.logo {
    filter: drop-shadow(0 5px 15px rgba(0, 242, 254, 0.5));
}

.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hub-text {
    margin-left: 10px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #e2e2e2;
}

.svg-illustration {
    margin: 20px auto 40px;
    max-width: 100%;
    overflow: hidden;
}

.pulse-circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.payment-path {
    stroke-dasharray: 10;
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 30;
    }
}

.coming-soon-message {
    margin: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.coming-soon-message:hover {
    transform: translateY(-5px);
}

.coming-soon-message p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #e2e2e2;
    line-height: 1.5;
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(20px);
    }
    75% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .svg-illustration svg {
        width: 100%;
        height: auto;
    }
    
    form {
        flex-direction: column;
    }
    
    input[type="email"] {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    button {
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
}
