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

:root {
    --primary-color: #ffffff;
    --background-color: #000000;
    --accent-color: #FF6347; /* Tomatto */
}

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

body {
    font-family: 'Roboto Mono', monospace;
    color: var(--primary-color);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.typing-container {
    font-size: clamp(1.2em, 4vw, 1.8em);
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-animation {
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(37, end), blink-caret .75s step-end infinite;
    padding-right: 5px;
}

.message {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #a0a0a0;
}

.redirect-timer {
    font-size: 1em;
    color: #a0a0a0;
}

.redirect-timer span {
    font-weight: bold;
    color: var(--primary-color);
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
}

.video {
    width: 48%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--primary-color); }
}

.social-share {
    margin-top: 40px;
}

.social-share a {
    margin: 0 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.8em;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-share a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .typing-container {
        height: 60px;
    }
    .message {
        font-size: 1em;
    }
    .logo {
        max-width: 80%;
    }
    .social-share a {
        font-size: 1.5em;
    }
    .video-container {
        flex-direction: column;
        align-items: center;
    }
    .video {
        width: 80%;
    }
} 