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

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(-45deg, #5772b6, #ccb457, #5772b6, #ccb457);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.container {
    text-align: center;
    color: #fff;
}

.lion-image {
    max-width: 300px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.countdown {
    font-size: 2em;
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

/* Background Animation */
@keyframes gradient {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}
