/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    margin: 0;
}

.container {
    max-width: 800px;
    width: 100%;
}

/* Giveaway Box Styles */
.giveaway-box {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 25px;
}

.gift-card-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

h2 {
    color: #34495e;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
}

ol {
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 1.1em;
}

ol li {
    margin-bottom: 15px;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1.4em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.cta-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Timer Styles */
.timer {
    margin-top: 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #e74c3c;
}

/* Long-Form Content Styles */
.long-form-content {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;
    line-height: 1.7;
}

.long-form-content h3 {
    font-size: 1.5em;
    color: #34495e;
    margin-top: 30px;
}

.long-form-content p, .long-form-content ul li {
    font-size: 1.1em;
    color: #444;
}

.long-form-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
}

/* Responsive Design */
@media (max-width: 600px) {
    body { padding: 10px; }
    .giveaway-box, .long-form-content { padding: 20px; }
    h1 { font-size: 2em; }
    .cta-button { font-size: 1.2em; padding: 15px 30px; }
}