:root {
    --primary-color: #c82a98;
    --secondary-color: #a530cc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.top-attention-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 10px 0;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 70px 0;
}
@media (max-width: 767.98px) {
    .hero-section {
        padding: 40px 0;
    }
}
.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 50px;
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

section {
    padding: 70px 0;
}
@media (max-width: 767.98px) {
    section {
        padding: 40px 0;
    }
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}

.list-unstyled li {
    font-size: 1.1rem;
}

.ratio {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}
.ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-banner {
    background: linear-gradient(45deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 70px 0;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
    .cta-banner {
        padding: 40px 0;
    }
}

.bonus-card {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}
.bonus-card img {
    max-height: 250px; /* Adjust as needed */
    object-fit: cover;
    width: 100%;
}
@media (max-width: 767.98px) {
    .bonus-card .row > div {
        flex-direction: column;
    }
    .bonus-card img {
        border-radius: 15px 15px 0 0 !important;
        max-height: 200px;
    }
    .bonus-card .card-body {
        text-align: center;
    }
    .bonus-card .d-flex {
        flex-direction: column !important;
    }
    .bonus-card .d-flex .btn {
        margin-top: 15px;
    }
}
.bonus-card .badge {
    font-size: 0.9em;
    padding: 0.5em 1em;
}
.bonus-card h3 {
    color: var(--primary-color);
}

.final-cta-gradient {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    padding: 70px 0;
}
@media (max-width: 767.98px) {
    .final-cta-gradient {
        padding: 40px 0;
    }
}

footer .social-icons a {
    font-size: 1.8rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
footer .social-icons a:hover {
    color: var(--primary-color) !important;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border-radius: 50px;
}
@media (max-width: 767.98px) {
    .btn-lg {
        width: 100%;
    }
    .hero-section .btn-lg {
        width: auto; /* Keep hero CTA narrower if needed for design */
    }
    .pulse-btn {
        width: 100%;
    }
    .w-md-auto {
        width: 100% !important;
    }
}