* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.image-section {
    margin: 20px 0;
}

.promo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.cta-button {
    background-color: #ffcc00;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0b300;
}

.description {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: 0 20px;
}

.privacy-terms a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
}

.privacy-terms a:hover {
    text-decoration: underline;
}

.disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.age-restriction {
    margin-top: 20px;
}

.age-logo {
    width: 50px;
    height: auto;
}

.copyright {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
}