/* Casino Page Specific Styles - payidcasinosau.com */

/* Fix white space between content and footer */
.casino-page main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.casino-page .site-footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Add padding to the final CTA section */
.casino-page .final-cta {
    padding-bottom: 4rem !important;
    margin-bottom: 0 !important;
}

/* Ensure no extra space from last section, except for final-cta */
.casino-page section:last-of-type:not(.final-cta) {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* --- Promo Code Styles --- */
.promo-code {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.copy-promo {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    color: white;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.copy-promo:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.copy-promo:active {
    transform: translateY(0);
}

.copy-promo .tooltip {
    visibility: hidden;
    width: 80px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
}

.copy-promo .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.copy-promo.copied .tooltip {
    visibility: visible;
    opacity: 1;
}

/* ===== Section Styling ===== */
section {
    padding: 5rem 0;
    position: relative;
}

/* About NeoSpin Section */
.about-neospin {
    background-color: #fff;
    color: var(--text-dark);
    padding: 5rem 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-intro {
    margin-bottom: 3rem;
}

.about-text {
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.about-text h3 {
    color: var(--primary);
    margin: 3.5rem 0 1.8rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    color: #555;
}

.about-image {
    margin: 3.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #eee;
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    background: #f9fafb;
    padding: 1.2rem;
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #eee;
    margin: 0;
}

/* Sidebar Widgets */
.about-sidebar {
    margin-top: 3rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.quick-facts,
.game-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts li,
.game-categories li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
}

.quick-facts li:last-child,
.game-categories li:last-child {
    border-bottom: none;
}

.quick-facts i,
.game-categories i {
    color: var(--primary);
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.quick-facts strong {
    color: #333;
    margin-right: 0.3rem;
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin: 1rem 0 0.5rem;
}

.category {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.category i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.category h4 {
    color: #333;
    margin: 0 0 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.category li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    margin: 2.5rem 0;
}

.feature {
    background: #fff;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature h4 {
    color: #333;
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: #f8f9ff;
    border-left: 4px solid var(--primary);
    padding: 1.8rem;
    border-radius: 0 8px 8px 0;
    margin: 2.5rem 0;
}

.info-box h4 {
    color: #333;
    margin: 0 0 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.info-list li {
    padding: 0.5rem 0;
    color: #444;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
}

.info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-list strong {
    color: #333;
    min-width: 180px;
    display: inline-block;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 1.2rem 0 0;
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin: 2.5rem 0;
}

.support-option {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.support-option i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    display: inline-block;
}

.support-option h4 {
    color: #333;
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.support-option p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsible Gaming */
.responsible-gaming {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0 1rem;
    border: 1px solid #eee;
}

.responsible-gaming h4 {
    color: #333;
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.responsible-gaming p {
    color: #555;
    margin: 0;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin: 2rem -1rem;
        border-radius: 0;
    }
    
    .about-image img {
        border-radius: 0;
    }
    
    .image-caption {
        border-radius: 0;
    }
}

/* Section Title Styling */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Hero Section --- */
.casino-hero {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 8rem 2rem 6rem; /* Adjusted padding for better spacing */
    margin-bottom: 0; /* Remove default margin */
    border-bottom: 5px solid var(--primary);
}

/* Remove top border from the first section after hero */
.casino-hero + section {
    border-top: none;
}

.casino-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.casino-logo-container {
    flex: 0 0 180px;
    width: 180px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.casino-logo-container img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

@media (min-width: 1025px) {
    .casino-header {
        padding: 2.5rem 3rem;
    }
    
    .casino-info {
        max-width: 650px;
        margin: 0 auto;
        text-align: center;
    }
    
    .casino-rating {
        justify-content: center;
    }
}

.casino-info {
    flex: 1;
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.75rem;
}

.casino-info .casino-title {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0.5rem 0;
}

/* Tablet styles */
@media (min-width: 481px) and (max-width: 1024px) {
    .casino-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .casino-logo-container {
        margin: 0 auto 1.5rem;
    }
    
    .casino-info {
        align-items: center;
        text-align: center;
    }
    
    .casino-rating {
        justify-content: center;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .casino-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem 1rem;
    }
    
    .casino-logo-container {
        /* Reset all conflicting properties from desktop */
        flex: 0 0 auto !important;
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
        margin: 0 auto 1.25rem !important;
        padding: 0 !important;
        
        /* Ensure square */
        aspect-ratio: 1/1 !important;
        
        /* Reset positioning */
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: center;
        
        /* Visual styling */
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .casino-logo-container img {
        width: 80% !important;
        height: 80% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        margin: 0 !important;
        position: static !important;
    }
    
    .casino-info {
        width: 100%;
        text-align: center;
        padding-top: 0;
        align-items: center;
    }
    
    .casino-rating {
        justify-content: center;
        width: 100%;
    }
    
    .rating-stars {
        display: flex;
        justify-content: center;
    }
    
    .rating-value {
        margin-left: 8px;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .casino-info .casino-title {
        font-size: 1.8rem;
    }
}

.rating-stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.rating-value {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 1.05rem;
}

.casino-info > p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    max-width: 700px;
    padding: 0.5rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: none;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light); /* Keep text white on hover */
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* --- Quick Facts / Details --- */
.casino-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card li:last-child {
    border-bottom: none;
}

.detail-card .label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* --- General Section Styling --- */
.bonuses-section,
.features-section,
.pros-cons-section,
.final-cta {
    padding: 4rem 2rem;
}

.bonuses-section, .pros-cons-section {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Bonuses Section --- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    margin: 1rem 0 0.5rem;
}

.bonus-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.bonus-header {
    padding: 1.5rem;
    background-color: var(--primary);
    color: var(--text-light);
}

.bonus-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.bonus-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.bonus-body li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonus-body li i {
    color: var(--primary);
}

.bonus-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.bonus-footer .btn-primary {
    width: 100%;
    justify-content: center;
}

/* --- Game Selection Section --- */
.game-selection-section {
    padding: 4rem 2rem;
}

.game-providers {
    margin-top: 2rem;
}

.game-providers h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.game-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.game-type {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: default; /* It's just for display */
}

.game-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.game-type i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.game-type:hover i {
    color: var(--primary-dark);
}

.game-type span {
    font-weight: 600;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-card {
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* --- Pros & Cons Section --- */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros, .cons {
    padding: 2rem;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: var(--box-shadow);
}

.pros h3, .cons h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
}

.pros h3 {
    color: var(--primary);
    border-color: var(--primary);
}

.cons h3 {
    color: #d9534f;
    border-color: #d9534f;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    padding: 0.5rem 0;
}

.pros li::before {
    content: '\f00c'; /* Font Awesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    margin-right: 0.75rem;
}

.cons li::before {
    content: '\f00d'; /* Font Awesome times */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #d9534f;
    margin-right: 0.75rem;
}

/* --- Screenshots Section --- */
.screenshots-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.screenshot-item a {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.screenshot-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.screenshot-item:hover img {
    transform: scale(1.03);
}

.screenshot-item p {
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #333;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

/* --- Final CTA --- */
.final-cta {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 1rem;
}

.final-cta h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .casino-header {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .casino-hero {
        padding: 7rem 1rem 2rem; /* Further increased top padding for mobile */
    }

    .casino-info .casino-title {
        font-size: 2.2rem;
    }

    .bonuses-section,
    .features-section,
    .pros-cons-section,
    .final-cta {
        padding: 3rem 1rem;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        margin: 0.5rem 0 0.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}