body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000; /* Dark background to match ads */
    color: #fff;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #1a1a1a; /* Slightly lighter dark background for content */
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #FFCC00; /* MTN Yellow border */
}

.header .mtn-logo {
    width: 80px;
    margin-bottom: 15px;
}

.header h1 {
    color: #FFCC00; /* MTN Yellow for main title */
    font-size: 1.8em;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 25px;
}

.live-activity {
    background-color: #333;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 0.95em;
    color: #eee;
}

.live-activity p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-activity .dot {
    color: #00ff00; /* Green for live indicator */
    font-size: 1.5em;
    line-height: 0;
    margin-right: 8px;
}

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

.features li {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    font-size: 1em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.features li::before {
    content: ''; /* Checkmark is part of the text in HTML */
    margin-right: 10px;
}

.rewards-hint p {
    font-size: 0.9em;
    color: #FFCC00; /* MTN Yellow for rewards hint */
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ffb84d; /* Specified CTA button color */
    color: #000; /* Black text for contrast */
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 5px 15px rgba(255, 184, 77, 0.4);
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffa500; /* Slightly darker yellow on hover */
}
