* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #38bdf8;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cbd5e1;
}

.countdown {
    /* display: flex; */
    display: none;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: #f8fafc;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.subscribe {
    margin-top: 2rem;
    width: 100%;
    max-width: 500px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .subscribe-form {
        flex-direction: row;
    }
}

.subscribe-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #334155;
    background-color: #1e293b;
    color: #f8fafc;
    font-size: 1rem;
}

.subscribe-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    background-color: #38bdf8;
    color: #0f172a;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #0ea5e9;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-link {
    color: #64748b;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #38bdf8;
}

.coder-animation {
    margin: 3rem 0;
    position: relative;
    width: 200px;
    height: 200px;
}

.code-block {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #1e293b;
    overflow: hidden;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.code-line {
    height: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    animation: typing 3s infinite;
    max-width: 90%;
}

.code-line:nth-child(1) {
    width: 75%;
    background-color: #38bdf8;
    animation-delay: 0s;
}

.code-line:nth-child(2) {
    width: 85%;
    background-color: #818cf8;
    animation-delay: 0.5s;
}

.code-line:nth-child(3) {
    width: 65%;
    background-color: #c084fc;
    animation-delay: 1s;
}

.code-line:nth-child(4) {
    width: 90%;
    background-color: #e879f9;
    animation-delay: 1.5s;
}

.code-line:nth-child(5) {
    width: 50%;
    background-color: #22d3ee;
    animation-delay: 2s;
}

@keyframes typing {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

footer {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.875rem;
}