@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Satoshi', sans-serif;
    background-color: #0A1128;
    color: #EAEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

.container {
    padding: 2rem;
    max-width: 800px;
}

.content {
    animation: fadeIn 2s ease-in-out;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.highlight {
    color: #FFD700;
}

.subtitle {
    font-size: 1.5rem;
    margin: 0.5rem 0 2rem;
    opacity: 0.8;
}

.typing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 2.5rem;
    margin-bottom: 2rem;
}

.typing-text {
    font-size: 1.2rem;
    border-right: 2px solid #FFD700;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

.cursor {
    display: inline-block;
    background-color: #FFD700;
    margin-left: 0.1rem;
    width: 2px;
    animation: blink 1s step-end infinite;
}

.message {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.social-icons {
    margin-bottom: 2rem;
}

.social-icons a {
    color: #EAEAEA;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD700;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.subscribe-form input {
    font-family: 'Satoshi', sans-serif;
    padding: 0.8rem;
    border: 1px solid #3D5A80;
    border-radius: 5px;
    background-color: #0A1128;
    color: #EAEAEA;
    width: 250px;
}

.subscribe-form button {
    font-family: 'Satoshi', sans-serif;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    background-color: #FFD700;
    color: #0A1128;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e6c300;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    from, to { background-color: transparent }
    50% { background-color: #FFD700; }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    .subscribe-form input {
        width: 100%;
        max-width: 300px;
    }
}