* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
}

#logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 2.5rem;
}

.patreon-button {
    display: inline-block;
    background-color: #FF424D;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 66, 77, 0.4);
}

.patreon-button:hover {
    transform: translateY(-3px);
    background-color: #ff5c67;
    box-shadow: 0 6px 20px rgba(255, 66, 77, 0.5);
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
