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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #434343, #000000);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #FFD700, #FFA07A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.city-time {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.city-time h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.city-time p {
    color: #ddd;
    font-size: 1.1rem;
}

.country-info {
    margin-bottom: 2rem;
}

.country-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #FFA07A;
}

#countryFacts {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
}

#countryFacts p {
    margin-bottom: 1rem;
}

#countryFacts p:last-child {
    margin-bottom: 0;
}

.drink-info {
    margin-bottom: 2rem;
}

.drink-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #FFA07A;
}

.drink-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
}

.drink-box p {
    margin-bottom: 0;
    font-weight: 600;
    color: #FFD700;
    font-size: 1.1rem;
    text-align: center;
}

button {
    background: linear-gradient(to right, #FFD700, #FFA07A);
    border: none;
    color: #333;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

button:active {
    transform: translateY(0);
}

footer {
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: auto;
}
