/* Load the Refinery-95-Regular font from the fonts folder */
@font-face {
    font-family: 'Refinery-95-Regular';
    src: url('fonts/refinery-95-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #ffd1e1, #ffffff);
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

#logo {
    max-width: 300px;
    height: auto;
}

/* Updated H1 (Title) */
h1 {
    font-family: 'Refinery-95-Regular', sans-serif;
    font-size: 2rem;
    font-weight: 600; /* Set weight to 600 */
    margin-bottom: 15px; /* Set margin bottom to 15px */
}

p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.4;
}

strong {
    font-weight: 600;
    color: #ff007a;
}

/* Redesigned Button */
button {
    background-color: #ff007a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;

}

button:hover {
    background-color: #ff0050;
    transform: translateY(-3px);
}

.countdown {
    background-color: #ff6fa9;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

#timer {
    font-size: 2.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.giveaway-info h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.giveaway-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.giveaway-items .item {
    text-align: center;
    width: 30%;
}

.giveaway-items .item img {
    max-width: 80px;
    margin-bottom: 8px;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
