/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1e1e1e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 20px 0;
}

.logo img {
    width: 100px;
}

.logo h1 {
    font-size: 2rem;
    margin-top: 10px;
    color: #ff6b6b;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video iframe {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 10px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

textarea {
    padding: 15px;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    resize: none;
    height: 150px;
    background-color: #2c2c2c;
    color: #ffffff;
}

textarea::placeholder {
    color: #888888;
}

button {
    background-color: #ff6b6b;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff4040;
}

.timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

#timer {
    display: flex;
    align-items: center;
    gap: 10px;
}

#timer img {
    width: 24px;
    height: 24px;
}

.hidden {
    display: none;
}

#message {
    color: #ff6b6b;
    font-size: 1.1rem;
}

.examples p {
    color: #cccccc;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #141414;
}

.socials a {
    color: #ff6b6b;
    text-decoration: none;
    margin: 0 10px;
}

.socials a:hover {
    color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .video iframe {
        width: 90vw;
        max-width: none;
        height: auto;
    }

    .form {
        width: 90vw;
    }
}
