.casas-apuestas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.casa-apuestas-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
}

.casa-apuestas-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.casa-apuestas-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.casa-apuestas-single .logo-casa {
    max-width: 300px;
    margin: 0 auto 20px;
}

.boton-visitar {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}

.boton-visitar:hover {
    background: #005177;
}
/* Estilos generales */
.cag-bookmakers-list {
    max-width: 900px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.cag-main-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
}

.cag-bookmaker-item {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    gap: 15px;
}

/* Estilos para la posición */
.cag-position {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    min-width: 40px;
    text-align: center;
}

/* Estilos para el logo */
.cag-bookmaker-logo {
    flex: 0 0 120px;
    text-align: center;
}

.cag-bookmaker-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Estilos para la información principal */
.cag-main-info {
    flex-grow: 1;
    min-width: 0;
}

.cag-bookmaker-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
}

.cag-bookmaker-header h3 {
    margin: 0;
    font-size: 18px;
    color: #222;
    font-weight: bold;
}

.cag-bonus {
    font-size: 14px;
    color: #2a7f00;
    font-weight: bold;
}

.cag-terms {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
}

.cag-terms:before {
    content: "⬜️";
    margin-right: 5px;
}

/* Estilos para la información lateral */
.cag-side-info {
    flex: 0 0 120px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cag-rating {
    font-size: 14px;
    color: #ff9900;
    margin-bottom: 10px;
}

.cag-stars {
    color: #ff9900;
}

.cag-review-link {
    font-size: 12px;
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 2px;
}

.cag-visit-button {
    display: inline-block;
    background: #2a7f00;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
    align-self: flex-end;
}

.cag-visit-button:hover {
    background: #1f5d00;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .cag-bookmaker-item {
        flex-wrap: wrap;
    }
    
    .cag-bookmaker-logo {
        flex: 0 0 80px;
    }
    
    .cag-side-info {
        flex: 1 1 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .cag-rating {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .cag-position {
        min-width: 30px;
        font-size: 20px;
    }
    
    .cag-bookmaker-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* Estilos para diferentes rangos de rating */
.cag-rating[data-rating^="9"],
.cag-rating[data-rating^="10"] {
    color: #ff9900;
    font-weight: bold;
}

.cag-rating[data-rating^="7"],
.cag-rating[data-rating^="8"] {
    color: #cc9933;
}

.cag-rating[data-rating^="5"],
.cag-rating[data-rating^="6"] {
    color: #999;
}

.cag-rating[data-rating^="0"],
.cag-rating[data-rating^="1"],
.cag-rating[data-rating^="2"],
.cag-rating[data-rating^="3"],
.cag-rating[data-rating^="4"] {
    color: #cc3333;
}
/* Estilos para los enlaces de review */
/* Modelo 1 - Estilo Clásico */
.cag-banner-model-1 {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #2a7f00;
    border-radius: 8px;
    text-align: center;
    background: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cag-banner-model-1 .cag-banner-header {
    margin-bottom: 15px;
}

.cag-banner-model-1 .cag-banner-title {
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.cag-banner-model-1 .cag-banner-logo img {
    max-height: 60px;
    width: auto;
    border-radius: 5px;
}

.cag-banner-model-1 .cag-banner-name {
    color: #222;
    font-size: 22px;
    margin: 10px 0;
}

.cag-banner-model-1 .cag-banner-bonus {
    color: #2a7f00;
    font-weight: bold;
    margin: 15px 0;
}

.cag-banner-model-1 .cag-banner-button {
    display: inline-block;
    background: #2a7f00;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

/* Modelo 2 - Estilo Tarjeta */
.cag-banner-model-2 {
    max-width: 450px;
    margin: 0 auto;
}

.cag-banner-model-2 .cag-banner-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.cag-banner-model-2 .cag-banner-main {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
}

.cag-banner-model-2 .cag-banner-logo {
    flex: 0 0 80px;
}

.cag-banner-model-2 .cag-banner-logo img {
    max-width: 100%;
    height: auto;
}

.cag-banner-model-2 .cag-banner-name {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.cag-banner-model-2 .cag-banner-slogan {
    margin: 5px 0 0;
    color: #666;
    font-size: 13px;
}

.cag-banner-model-2 .cag-banner-footer {
    padding: 15px;
    background: #f7f7f7;
    text-align: center;
}

.cag-banner-model-2 .cag-banner-bonus {
    color: #2a7f00;
    font-weight: bold;
    margin-bottom: 10px;
}

.cag-banner-model-2 .cag-banner-button {
    display: inline-block;
    background: #2a7f00;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
}

/* Modelo 3 - Estilo Hero */
/* Estilo Fanduel Exacto */
.cag-fanduel-banner {
    position: relative;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000;
    top: 10px;
}
.cag-fanduel-link {
    display: inline-flex;
    align-items: center;
    background-color: #df4839;
    color: var(--colorThree, #ffffff);
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}


.cag-fanduel-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.cag-fanduel-link span {
    margin-right: 8px;
    color: var(--colorThree, #ffffff);!important
}

.cag-fanduel-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.cag-fanduel-name {
    font-weight: bold;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .cag-fanduel-banner {
        bottom: 5px;
    }
    
    .cag-fanduel-link {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .cag-fanduel-logo {
        height: 18px;
    }
}

/* Responsive para todos los modelos */
@media (max-width: 480px) {
    .cag-banner-model-1, 
    .cag-banner-model-2, 
    .cag-banner-model-3 {
        max-width: 100%;
    }
    
    .cag-banner-model-2 .cag-banner-main {
        flex-direction: column;
        text-align: center;
    }
}
/* General Body and Container Styles */
body {
    font-family: 'Open Sans', sans-serif; /* Example font */
    margin: 0;
    padding: 0;
    background-color: #f5f7f9;
    color: #333;
    line-height: 1.6;
}

.cag-elegant-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Hero Section */
.cag-elegant-hero {
    position: relative;
    background-color: #2c3e50; /* Fallback color */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
}

.cag-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 65, 96, 0.8), rgba(29, 65, 96, 0.6));
    z-index: 1;
}

.cag-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    gap: 30px;
    text-align: left;
}

.cag-hero-text {
    flex: 2;
}

.cag-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cag-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cag-breadcrumb {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.cag-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.cag-breadcrumb a:hover {
    color: #ffd700;
}

.cag-elegant-hero h1 {
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffd700; /* Gold color for heading */
}

.cag-tagline {
    font-size: 1.2em;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Rating Stars */
.cag-rating-stars {
    display: flex;
    margin-bottom: 20px;
    font-size: 1.8em;
    justify-content: flex-start; /* Align stars to the left */
}

.cag-rating-stars .star {
    color: #ccc; /* Default star color */
    cursor: pointer;
    transition: color 0.2s ease;
    width: 1em; /* Ensure consistent spacing */
    height: 1em;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23ccc" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 146.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-146.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-25.3-48.2-25.3-59.9 0z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.cag-rating-stars .star.active {
    color: #ffd700; /* Active star color */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23ffd700" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 146.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-146.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-25.3-48.2-25.3-59.9 0z"/></svg>');
}

.cag-rating-stars .star.half-active {
    color: #ffd700; /* Use the same active color for half, but overlay for visual effect */
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23ffd700" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 146.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-146.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-25.3-48.2-25.3-59.9 0z"/></svg>');
}

.cag-rating-stars .star.half-active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; /* Cover half the star */
    height: 100%;
    background-color: #2c3e50; /* Match hero background or a slightly darker gray */
    z-index: 1;
    overflow: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23ccc" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 146.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-146.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-25.3-48.2-25.3-59.9 0z"/></svg>');
    background-repeat: no-repeat;
    background-size: 200% 100%; /* Make the background cover the entire star, then shift */
    background-position: right center; /* Position it to show the gray on the right half */
}


.cag-rating-stars-small {
    display: flex;
    font-size: 1em; /* Smaller stars for reviews */
    margin-top: 5px;
    margin-bottom: 10px;
}
.cag-rating-stars-small .star {
    color: #ccc;
    width: 0.9em;
    height: 0.9em;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23ccc" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 146.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-146.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-25.3-48.2-25.3-59.9 0z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.cag-rating-stars-small .star.active {
    color: #ffd700;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23ffd700" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 146.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-146.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-25.3-48.2-25.3-59.9 0z"/></svg>');
}

.cag-rating-stars-small .star.half-active {
    color: #ffd700;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23ffd700" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 146.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-146.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-25.3-48.2-25.3-59.9 0z"/></svg>');
}

.cag-rating-stars-small .star.half-active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #fff; /* Match background where reviews are displayed */
    z-index: 1;
    overflow: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23ccc" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 146.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-146.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-25.3-48.2-25.3-59.9 0z"/></svg>');
    background-repeat: no-repeat;
    background-size: 200% 100%;
    background-position: right center;
}


/* CTA Buttons */
.cag-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.cag-btn.primary {
    background-color: #007bff; /* Primary blue */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.cag-btn.primary:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.cag-btn.secondary {
    background-color: transparent;
    color: #ffd700;
    border-color: #ffd700;
}

.cag-btn.secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.cag-bonus-text {
    background-color: #ffd700; /* Gold */
    color: #2c3e50;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    margin-left: 10px;
    font-weight: bold;
}

/* Main Content Layout */
.cag-main-content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 30px;
}

.cag-primary-content {
    flex: 3;
    min-width: 0; /* Allows content to shrink */
}

.cag-sidebar {
    flex: 1;
    min-width: 280px; /* Minimum width for sidebar */
    background-color: #fcfcfc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    align-self: flex-start; /* Stick to the top */
    position: sticky;
    top: 20px; /* Adjust as needed for fixed header/admin bar */
}

/* Sidebar Widgets */
.cag-sidebar-widget {
    margin-bottom: 30px;
}

.cag-sidebar-widget h3 {
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
}

/* Key Features List */
.cag-feature-list .cag-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
    opacity: 0; /* For animation */
    transform: translateY(20px); /* For animation */
}

.cag-feature i {
    color: #007bff;
    font-size: 1.4em;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

/* Payment Methods */
.cag-payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.cag-payment-method-item {
    text-align: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.cag-payment-method-item img {
    max-width: 60px;
    height: auto;
    margin-bottom: 8px;
}

.cag-payment-method-item span {
    font-size: 0.9em;
    color: #666;
    font-weight: 600;
}

/* Content Sections */
.cag-content-section {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.cag-content-section h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.cag-content-section p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

/* Pros and Cons Section */
.cag-pros-cons-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cag-pros,
.cag-cons {
    flex: 1;
    min-width: 280px; /* Allow shrinking */
}

.cag-pros h3,
.cag-cons h3 {
    color: #2c3e50;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

.cag-pros-list,
.cag-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cag-pros-list li,
.cag-cons-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #444;
}

.cag-pros-list li i {
    color: #28a745; /* Green for pros */
    margin-right: 10px;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-top: 3px;
}

.cag-cons-list li i {
    color: #dc3545; /* Red for cons */
    margin-right: 10px;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Additional Bonuses Section */
.cag-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.cag-small-bonus {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* For animation */
    transform: translateY(20px); /* For animation */
}

.cag-small-bonus:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cag-bonus-title {
    font-size: 1.3em;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
}

.cag-bonus-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

.cag-btn.small-primary {
    font-size: 0.9em;
    padding: 8px 18px;
    border-radius: 20px;
    background-color: #007bff;
    color: #fff;
    align-self: center; /* Center the button */
}

.cag-btn.small-primary:hover {
    background-color: #0056b3;
}

/* User Reviews Section */
.cag-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.cag-review-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    opacity: 0; /* For animation */
    transform: translateY(20px); /* For animation */
}

.cag-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cag-reviewer-name {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1em;
}

.cag-review-date {
    font-size: 0.85em;
    color: #777;
}

.cag-review-comment {
    font-size: 0.95em;
    color: #444;
    margin-top: 15px;
}

/* FAQ Section (Accordion) */
.cag-accordion {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.cag-faq-item {
    border-bottom: 1px solid #e9ecef;
}

.cag-faq-item:last-child {
    border-bottom: none;
}

.cag-faq-item-title {
    background-color: #fff;
    color: #2c3e50;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.cag-faq-item-title:hover,
.cag-faq-item-title.active {
    background-color: #f0f2f5;
}

.cag-toggle-icon {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.cag-faq-item-title.active .cag-toggle-icon {
    transform: rotate(45deg);
}

.cag-faq-item-content {
    background-color: #fdfdfd;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.cag-faq-item-content p {
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
    color: #555;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cag-elegant-hero {
        padding: 40px 20px;
    }

    .cag-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .cag-hero-text,
    .cag-hero-image {
        flex: none; /* Remove flex basis */
        width: 100%;
    }

    .cag-hero-image {
        margin-top: 30px;
    }

    .cag-rating-stars {
        justify-content: center; /* Center stars in mobile hero */
    }

    .cag-cta-buttons {
        justify-content: center;
    }

    .cag-main-content {
        flex-direction: column;
        padding: 20px;
    }

    .cag-sidebar {
        position: static; /* Remove sticky on mobile */
        width: 100%;
        margin-bottom: 30px;
    }

    .cag-primary-content {
        width: 100%;
    }

    .cag-pros-cons-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .cag-elegant-hero h1 {
        font-size: 2.5em;
    }

    .cag-tagline {
        font-size: 1.1em;
    }

    .cag-btn {
        font-size: 1em;
        padding: 10px 20px;
    }

    .cag-content-section {
        padding: 20px;
    }

    .cag-content-section h2 {
        font-size: 1.8em;
    }

    .cag-pros h3,
    .cag-cons h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .cag-elegant-hero {
        padding: 30px 15px;
        min-height: 300px;
    }

    .cag-elegant-hero h1 {
        font-size: 2em;
    }

    .cag-tagline {
        font-size: 1em;
    }

    .cag-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cag-btn {
        width: 100%;
        max-width: 250px; /* Limit button width on very small screens */
    }

    .cag-main-content {
        padding: 15px;
    }

    .cag-content-section {
        padding: 15px;
    }

    .cag-content-section h2 {
        font-size: 1.6em;
    }

    .cag-bonuses-grid,
    .cag-reviews-grid {
        grid-template-columns: 1fr; /* Single column layout for small screens */
    }

    .cag-payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
}