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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a; /* Very dark gray */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.5;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    text-decoration: none;
    color: #fff;
    background-color: #333;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #555;
}

.discontinued {
    font-size: 0.8rem;
    margin-left: 8px;
    color: #ff5555;
}
