* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f4c75 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.container {
    position: relative;
    width: 100%;
    min-height: calc(100vh + 10rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 7rem 0;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header & Logo */
.header {
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 3.5rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Main Message */
.main-message {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    opacity: 0.9;
}

/* Floating Boxes Animation */
.animation-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.floating-box {
    background: rgba(96, 165, 250, 0.1);
    border: 2px solid;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
}

.floating-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.box-1 {
    border-color: #60a5fa;
    animation: waveUp 2s ease-in-out infinite;
}

.box-2 {
    border-color: #a78bfa;
    animation: waveUp 2s ease-in-out 0.2s infinite;
}

.box-3 {
    border-color: #f97316;
    animation: waveUp 2s ease-in-out 0.4s infinite;
}

.box-4 {
    border-color: #fbbf24;
    animation: waveUp 2s ease-in-out 0.6s infinite;
}

@keyframes waveUp {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px);
        opacity: 1;
    }
}

/* Countdown Timer */
.countdown {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.timer-label {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

#timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.time-unit p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.separator {
    font-size: 2rem;
    color: #60a5fa;
    font-weight: bold;
}

/* Email Signup Section */
.email-section {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.email-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: 2px solid #60a5fa;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-form input::placeholder {
    color: #cbd5e1;
}

.email-form input:focus {
    outline: none;
    border-color: #a78bfa;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

.email-form button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.email-form button:active {
    transform: translateY(0);
}

.subscription-note {
    font-size: 0.9rem;
    color: #cbd5e1;
    opacity: 0.8;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #60a5fa;
    border-radius: 50%;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: rgba(96, 165, 250, 0.1);
}

.social-icon:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #60a5fa;
    top: -100px;
    right: -100px;
    animation: blobMove1 8s infinite;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: #a78bfa;
    bottom: -50px;
    left: -50px;
    animation: blobMove2 9s infinite;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: #f97316;
    top: 50%;
    left: 50%;
    animation: blobMove3 10s infinite;
}

@keyframes blobMove1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, -50px);
    }
    50% {
        transform: translate(-50px, 100px);
    }
    75% {
        transform: translate(50px, -100px);
    }
}

@keyframes blobMove2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-80px, 50px);
    }
    50% {
        transform: translate(100px, -80px);
    }
    75% {
        transform: translate(-50px, 100px);
    }
}

@keyframes blobMove3 {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    25% {
        transform: translate(calc(-50% + 80px), calc(-50% - 80px));
    }
    50% {
        transform: translate(calc(-50% - 80px), calc(-50% + 80px));
    }
    75% {
        transform: translate(calc(-50% + 80px), calc(-50% + 80px));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1rem;
    }

    .animation-container {
        gap: 1rem;
    }

    .floating-box {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .time-unit span {
        font-size: 1.8rem;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input,
    .email-form button {
        width: 100%;
    }

    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .animation-container {
        gap: 0.5rem;
    }

    .floating-box {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }

    #timer {
        gap: 0.5rem;
    }

    .time-unit span {
        font-size: 1.5rem;
        min-width: 60px;
    }

    .separator {
        font-size: 1.2rem;
    }
}
