* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    --bg-color: linear-gradient(135deg, #1e3c72, #2a5298);
}
[Dark]{
    --bg-color: linear-gradient(135deg, Black, gray);
}
body {
    background: --bg-color;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.yakinda-container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.logo img {
    width: 150px;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 3s ease-in-out;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 600;
}

.time-box small {
    font-size: 1rem;
    color: #ddd;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.subscribe-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 250px;
    font-size: 1rem;
}

.subscribe-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #ff6f61;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: #ff3b2f;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6f61;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}