body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #e0e0e0;
    /* Slightly darker background to make content pop */
    margin: 0;
    padding: 20px 0;
    color: #333;
}

.main-wrapper {
    max-width: 700px;
    margin: 8px auto;
    background-color: #f9f9f9;
    /* Grey container background */
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.content-box {
    background-color: #ffffff;
    /* White text area */
    padding: 40px;
    margin: 20px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

h1 {
    font-size: 26px;
    line-height: 1.3;
    color: #2c3e50;
    margin-top: 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
    display: block;
}

.meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #eee;
}

.meta-date {
    font-weight: 500;
}

.meta-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #f1c40f;
    letter-spacing: 1px;
}

.vote-count {
    color: #888;
    font-size: 0.85rem;
}

h2 {
    font-size: 22px;
    color: #34495e;
    margin-top: 35px;
    margin-bottom: 15px;
    position: relative;
}

p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.5;
}

ul li::before {
    content: '\2714';
    /* Checkmark */
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 18px;
    top: -2px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
    border-top: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

/* Download Section Styles */
.download-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.dl-btn {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: transform 0.1s, background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dl-btn:hover {
    background-color: #219150;
    transform: translateY(-2px);
}

.timer-msg {
    display: none;
    font-size: 18px;
    color: #333;
    margin-top: 15px;
    font-weight: 500;
}

.seconds-count {
    font-size: 20px;
    /* +2px larger than surrounding text */
    font-weight: bold;
    color: #e74c3c;
    padding: 0 4px;
}