/* ===== BOUNCE BALL THEME - CSS RESET & VARIABLES ===== */
@import url(header.css);
@import url(footer.css);
:root {
    --bounce-yellow: #F9C74F;
    --bounce-orange: #F9844A;
    --bounce-green: #90BE6D;
    --charcoal: #2D2D2D;
    --medium-gray: #3D3D3D;
    --light-gray: #4D4D4D;
    --pure-white: #FFFFFF;
    --off-white: #F5F5F5;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--charcoal);
    color: var(--off-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pure-white);
}
h1 { font-size: 3.5rem; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 15px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
p { font-family: var(--font-primary); color: var(--off-white); opacity: 0.9; line-height: 1.7; }

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-yellow { color: var(--bounce-yellow); }
.text-orange { color: var(--bounce-orange); }
.text-green { color: var(--bounce-green); }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.mt-4 { margin-top: 2rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-primary);
}
.btn-yellow {
    background: var(--bounce-yellow);
    color: var(--charcoal);
}
.btn-yellow:hover {
    background: #e5b53a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--bounce-yellow);
    color: var(--bounce-yellow);
}
.btn-outline:hover {
    background: var(--bounce-yellow);
    color: var(--charcoal);
}
.btn-large {
    padding: 15px 50px;
    font-size: 1.2rem;
}
.btn-small {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bounce-green);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-small:hover {
    background: var(--bounce-yellow);
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.bounce-element {
    animation: bounce 2s infinite;
}

/* ===== HEADER PLACEHOLDER STYLES (for demo) ===== */
#header-placeholder {
    height: 80px;
    background: var(--medium-gray);
    border-bottom: 3px solid var(--bounce-yellow);
}

/* ===== HERO SECTION ===== */
.bounce-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--medium-gray) 100%);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.hero-content { flex: 1 1 500px; }
.hero-tagline {
    display: inline-block;
    background: rgba(249, 199, 79, 0.1);
    color: var(--bounce-yellow);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bounce-yellow);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--off-white);
    opacity: 0.7;
}
.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}
.bouncing-ball i {
    font-size: 12rem;
    color: var(--bounce-orange);
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.3));
}

/* ===== TRUST BADGE ===== */
.trust-badge-section {
    padding: 30px 0;
    background: var(--medium-gray);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}
.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.badge-item i {
    font-size: 1.8rem;
    color: var(--bounce-yellow);
}
.badge-item span {
    font-weight: 600;
    color: var(--off-white);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 60px 0;
    background: var(--charcoal);
}
.section-header { margin-bottom: 40px; }
.section-header p { max-width: 600px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    background: rgba(249, 199, 79, 0.1);
    color: var(--bounce-yellow);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.feature-circle-card {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}
.feature-circle-card:hover { transform: translateY(-10px); }
.circle-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}
.feature-circle-card:hover .circle-icon { transform: scale(1.1); }
.circle-icon i { font-size: 3rem; }
.feature-circle-card h3 {
    color: var(--pure-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.feature-circle-card p {
    color: var(--off-white);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== GAMES SECTION ===== */
.games-section {
    padding: 60px 0;
    background: var(--medium-gray);
}
.games-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--bounce-yellow) var(--light-gray);
}
.games-scroll::-webkit-scrollbar { height: 5px; }
.games-scroll::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 10px; }
.games-scroll::-webkit-scrollbar-thumb { background: var(--bounce-yellow); border-radius: 10px; }
.game-card {
    flex: 0 0 200px;
    background: var(--charcoal);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.game-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.game-image i { font-size: 2.5rem; color: var(--pure-white); }
.game-card h4 { color: var(--pure-white); margin-bottom: 5px; }
.game-card p { color: var(--off-white); opacity: 0.7; font-size: 0.8rem; }

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 60px 0;
    background: var(--charcoal);
}
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}
.brand-card {
    background: var(--medium-gray);
    border-radius: 30px;
    padding: 25px;
    flex: 1 1 350px;
    position: relative;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--bounce-yellow);
    box-shadow: var(--shadow-md);
}
.brand-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--bounce-yellow);
    color: var(--charcoal);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.brand-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bounce-yellow), var(--bounce-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 15px;
}
.brand-card h3 {
    color: var(--pure-white);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}
.brand-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.brand-rating i { color: var(--bounce-yellow); font-size: 0.9rem; }
.brand-rating span {
    color: var(--off-white);
    font-size: 0.9rem;
    font-weight: 600;
}
.brand-bonus {
    background: rgba(249, 199, 79, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0 15px;
    text-align: center;
    border: 1px solid rgba(249, 199, 79, 0.2);
}
.bonus-label {
    display: block;
    font-size: 0.7rem;
    color: var(--bounce-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.bonus-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pure-white);
}
.brand-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 20px;
    flex: 1;
}
.brand-features span {
    color: var(--off-white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand-features i { color: var(--bounce-green); font-size: 0.8rem; }
.brand-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.brand-footer .btn-small {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 8px;
}
.brand-footer .btn-small:first-child {
    background: transparent;
    border: 1px solid var(--bounce-yellow);
    color: var(--bounce-yellow);
}
.brand-footer .btn-small:first-child:hover {
    background: var(--bounce-yellow);
    color: var(--charcoal);
}
.brand-footer .btn-small.btn-yellow {
    background: var(--bounce-yellow);
    color: var(--charcoal);
    border: none;
}
.brand-footer .btn-small.btn-yellow:hover {
    background: #e5b53a;
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: 60px 0;
    background: var(--medium-gray);
}
.info-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.info-content { flex: 1 1 400px; }
.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}
.info-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-list-item i { color: var(--bounce-green); font-size: 1.1rem; }
.info-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}
.info-circle {
    width: 280px;
    height: 280px;
    background: rgba(144, 190, 109, 0.05);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--bounce-green);
}
.info-circle i { font-size: 4rem; color: var(--bounce-green); margin-bottom: 10px; }
.info-circle span { font-size: 2rem; color: var(--pure-white); font-weight: 700; }
.info-circle small { color: var(--off-white); opacity: 0.7; }

/* ===== PAYMENT SECTION ===== */
.payment-section {
    padding: 60px 0;
    background: var(--charcoal);
}
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
}
.payment-item i { font-size: 2.5rem; color: var(--bounce-yellow); }
.payment-item span { font-weight: 600; }

/* ===== RESPONSIBLE SECTION ===== */
.responsible-section {
    padding: 40px 0;
    background: var(--bounce-green);
}
.responsible-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.responsible-content i { font-size: 3rem; color: var(--charcoal); }
.responsible-content p {
    color: var(--charcoal);
    max-width: 800px;
    margin: 0;
}
.responsible-content a { color: var(--charcoal); font-weight: 700; text-decoration: none; }
.responsible-content a:hover { text-decoration: underline; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bounce-yellow) 0%, var(--bounce-orange) 100%);
    text-align: center;
}
.banner-content h2 { color: var(--charcoal); font-size: 3rem; }
.banner-content p { color: var(--charcoal); opacity: 0.9; font-size: 1.2rem; margin-bottom: 30px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-grid, .info-grid { flex-direction: column; text-align: center; }
    .hero-stats, .hero-cta { justify-content: center; }
    .info-list-item { justify-content: center; }
    .bouncing-ball i { font-size: 8rem; }
    .info-circle { width: 240px; height: 240px; }
    .badge-container { gap: 20px; }
    .brand-card { max-width: 100%; }
}
@media (max-width: 480px) {
    .stat-item { flex: 1 1 100%; text-align: center; }
    .payment-item { min-width: 80px; }
    .payment-item i { font-size: 2rem; }
    .banner-content h2 { font-size: 2rem; }
}
/* ===== BRAND REVIEW PAGES STYLES ===== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--medium-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-list a {
    color: var(--bounce-green);
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb-list a:hover {
    color: var(--bounce-yellow);
}

.breadcrumb-list i {
    color: var(--bounce-yellow);
    font-size: 0.8rem;
}

.breadcrumb-list span {
    color: var(--off-white);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Review Hero */
.review-hero {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--medium-gray) 100%);
    border-bottom: 1px solid var(--light-gray);
}

.review-hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.review-hero-info {
    flex: 2 1 500px;
}

.review-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.review-brand-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bounce-yellow), var(--bounce-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pure-white);
}

.review-brand h1 {
    margin-bottom: 5px;
}

.review-brand h1 span {
    font-size: 1.2rem;
    color: var(--bounce-yellow);
    display: block;
}

.review-hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-stars i {
    color: var(--bounce-yellow);
    font-size: 1rem;
}

.rating-score {
    color: var(--off-white);
    font-weight: 600;
}

.rating-excellent {
    background: rgba(144, 190, 109, 0.2);
    color: var(--bounce-green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Quick Stats */
.review-quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.quick-stat {
    display: flex;
    flex-direction: column;
}

.quick-stat .stat-label {
    font-size: 0.7rem;
    color: var(--bounce-yellow);
    text-transform: uppercase;
}

.quick-stat .stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pure-white);
}

/* Hero Actions */
.review-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Badge */
.review-hero-badge {
    flex: 1 1 200px;
    display: flex;
    justify-content: center;
}

.hero-badge-content {
    text-align: center;
    padding: 20px;
    background: rgba(249, 199, 79, 0.1);
    border-radius: 20px;
    border: 2px dashed var(--bounce-yellow);
}

.badge-tag {
    display: block;
    font-size: 0.9rem;
    color: var(--bounce-yellow);
}

.badge-rank {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--bounce-yellow);
    line-height: 1;
}

.badge-text {
    display: block;
    color: var(--pure-white);
}

/* Review Content Section */
.review-content-section {
    padding: 60px 0;
    background: var(--charcoal);
}

.review-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.review-main {
    flex: 3 1 600px;
}

.review-sidebar {
    flex: 1 1 300px;
}

/* Pros & Cons Card */
.pros-cons-card {
    background: var(--medium-gray);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--light-gray);
}

.pros-cons-card h2 {
    margin-bottom: 20px;
}

.pros-cons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pros-list, .cons-list {
    flex: 1 1 250px;
}

.pros-list h3, .cons-list h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-list h3 {
    color: var(--bounce-green);
}

.cons-list h3 {
    color: var(--bounce-orange);
}

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

.pros-list li, .cons-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--off-white);
}

.pros-list i {
    color: var(--bounce-green);
}

.cons-list i {
    color: var(--bounce-orange);
}

/* Verdict Card */
.verdict-card {
    background: linear-gradient(135deg, rgba(249,199,79,0.1) 0%, rgba(249,132,74,0.1) 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--bounce-yellow);
}

.verdict-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.verdict-score {
    text-align: center;
    min-width: 120px;
}

.score-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--bounce-yellow);
    line-height: 1;
}

.score-max {
    color: var(--off-white);
}

.verdict-text {
    flex: 1;
}

.verdict-text p {
    margin-bottom: 10px;
}

.verdict-recommend {
    color: var(--bounce-green);
    margin-top: 10px;
}

.verdict-recommend i {
    margin-right: 5px;
}

/* Bonus Detail Card */
.bonus-detail-card {
    background: var(--medium-gray);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--light-gray);
}

.bonus-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.bonus-detail-info {
    flex: 2 1 400px;
}

.bonus-highlight {
    background: rgba(249,199,79,0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid var(--bounce-yellow);
}

.bonus-highlight .bonus-label {
    display: block;
    font-size: 0.8rem;
    color: var(--bounce-yellow);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.bonus-highlight .bonus-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pure-white);
}

.bonus-terms {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bonus-terms li {
    margin-bottom: 8px;
    color: var(--off-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-terms i {
    color: var(--bounce-green);
}

.bonus-terms strong {
    color: var(--bounce-yellow);
    margin-right: 5px;
}

.bonus-detail-score {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-circle {
    width: 120px;
    height: 120px;
    border: 5px solid var(--bounce-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bounce-yellow);
}

/* Review Section Card */
.review-section-card {
    background: var(--medium-gray);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
}

.review-section-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pure-white);
}

.review-section-card h3 i {
    color: var(--bounce-yellow);
}

.review-section-card p {
    color: var(--off-white);
    line-height: 1.7;
}

/* FAQ Card */
.faq-card {
    background: var(--medium-gray);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid var(--light-gray);
}

.faq-item {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(249,199,79,0.1);
}

.faq-question h4 {
    margin: 0;
    color: var(--pure-white);
    font-size: 1rem;
}

.faq-question i {
    color: var(--bounce-green);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 15px 15px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--off-white);
    opacity: 0.8;
    margin: 0;
}

/* Sidebar Card */
.sidebar-card {
    background: var(--medium-gray);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    position: sticky;
    top: 100px;
}

.sidebar-card h4 {
    color: var(--bounce-yellow);
    margin-bottom: 15px;
}

.final-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bounce-yellow);
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
}

.score-breakdown {
    margin-bottom: 20px;
}

.score-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--off-white);
}

.score-row span:last-child {
    color: var(--bounce-yellow);
    font-weight: 600;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
    box-sizing: border-box;
}

.last-updated {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--off-white);
    opacity: 0.7;
}

.last-updated i {
    color: var(--bounce-green);
    margin-right: 5px;
}

/* Related Reviews Section */
.related-reviews-section {
    padding: 60px 0;
    background: var(--medium-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    color: var(--bounce-yellow);
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.related-card {
    background: var(--charcoal);
    border-radius: 15px;
    padding: 20px;
    flex: 1 1 150px;
    max-width: 180px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--bounce-yellow);
    box-shadow: var(--shadow-md);
}

.related-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bounce-yellow), var(--bounce-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    color: var(--pure-white);
}

.related-card h4 {
    color: var(--pure-white);
    margin-bottom: 5px;
}

.related-rating {
    color: var(--bounce-yellow);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bounce-yellow) 0%, var(--bounce-orange) 100%);
    text-align: center;
}

.banner-content h2 {
    color: var(--charcoal);
    font-size: 3rem;
    margin-bottom: 15px;
}

.banner-content h2 span {
    color: var(--pure-white);
}

.banner-content p {
    color: var(--charcoal);
    opacity: 0.9;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 50px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .review-hero-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .review-brand {
        flex-direction: column;
    }
    
    .review-quick-stats {
        justify-content: center;
    }
    
    .review-hero-actions {
        justify-content: center;
    }
    
    .pros-cons-grid {
        flex-direction: column;
    }
    
    .verdict-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-detail-grid {
        flex-direction: column;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .review-quick-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge-content {
        padding: 15px;
    }
    
    .badge-rank {
        font-size: 2.5rem;
    }
    
    .score-number {
        font-size: 3rem;
    }
    
    .related-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .related-card {
        max-width: 100%;
        width: 100%;
    }
}
/* ===== REVIEW PAGES STYLES ===== */

/* Reviews Hero */
.reviews-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--medium-gray) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.reviews-hero::before {
    content: '🏀🏀🏀';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--bounce-yellow);
}

.reviews-hero::after {
    content: '✓✓✓';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 12rem;
    opacity: 0.03;
    color: var(--bounce-orange);
    transform: rotate(-15deg);
}

.reviews-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-block;
    color: var(--bounce-yellow);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bounce-orange);
    padding-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
}

/* Filter Section */
.filter-section {
    padding: 30px 0;
    background: var(--medium-gray);
    border-bottom: 1px solid rgba(249, 199, 79, 0.2);
    border-top: 1px solid rgba(249, 199, 79, 0.2);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--off-white);
}

.filter-label i {
    color: var(--bounce-yellow);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(249, 199, 79, 0.3);
    color: var(--off-white);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--bounce-yellow);
    color: var(--bounce-yellow);
}

.filter-btn.active {
    background: var(--bounce-yellow);
    color: var(--charcoal);
    border-color: var(--bounce-yellow);
}

.filter-sort select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 199, 79, 0.3);
    color: var(--off-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: var(--font-primary);
    cursor: pointer;
}

/* Reviews Grid */
.reviews-grid-section {
    padding: 60px 0;
    background: var(--charcoal);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background: var(--medium-gray);
    border-radius: 20px;
    padding: 25px;
    flex: 1 1 350px;
    max-width: 380px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--bounce-yellow);
    box-shadow: var(--shadow-md);
}

.review-card-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--bounce-yellow);
    color: var(--charcoal);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(249, 199, 79, 0.3);
    z-index: 2;
}

.review-card.coming-soon {
    opacity: 0.7;
}

.review-card.coming-soon .review-card-badge {
    background: var(--light-gray);
    color: var(--off-white);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bounce-yellow), var(--bounce-orange));
    color: var(--pure-white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-family: var(--font-secondary);
}

.review-card.coming-soon .review-logo {
    background: var(--light-gray);
}

.review-rating {
    flex: 1;
}

.rating-stars i {
    color: var(--bounce-yellow);
    font-size: 0.9rem;
}

.review-card.coming-soon .rating-stars i {
    color: var(--light-gray);
}

.rating-score {
    display: block;
    font-size: 0.9rem;
    color: var(--off-white);
    margin-top: 3px;
}

.review-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--pure-white);
    font-family: var(--font-secondary);
}

.review-bonus {
    background: rgba(249, 199, 79, 0.1);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid rgba(249, 199, 79, 0.2);
}

.review-card.coming-soon .review-bonus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--light-gray);
}

.bonus-tag {
    display: block;
    font-size: 0.7rem;
    color: var(--bounce-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.review-card.coming-soon .bonus-tag {
    color: var(--off-white);
}

.bonus-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bounce-orange);
}

.review-card.coming-soon .bonus-value {
    color: var(--light-gray);
}

.review-pros-cons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex: 1;
}

.review-pros, .review-cons {
    flex: 1;
}

.review-pros p, .review-cons p {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--off-white);
    opacity: 0.9;
}

.review-pros i {
    color: var(--bounce-green);
    margin-right: 5px;
}

.review-cons i {
    color: var(--bounce-orange);
    margin-right: 5px;
}

.review-excerpt {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.review-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--off-white);
}

.review-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-review {
    flex: 2;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--bounce-yellow);
    border-radius: 8px;
    color: var(--pure-white);
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-review:hover {
    background: var(--bounce-yellow);
    color: var(--charcoal);
}

.btn-review i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.btn-review:hover i {
    transform: translateX(5px);
}

.btn-review-site {
    flex: 1;
    padding: 10px;
    background: var(--bounce-yellow);
    border-radius: 8px;
    color: var(--charcoal);
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-review-site:hover {
    background: var(--bounce-orange);
    transform: scale(1.02);
}

.btn-bonus {
    flex: 1;
    padding: 10px;
    background: var(--bounce-green);
    border-radius: 8px;
    color: var(--charcoal);
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-bonus:hover {
    background: var(--bounce-yellow);
    transform: scale(1.02);
}

.btn-disabled {
    flex: 1;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--off-white);
    text-align: center;
    font-size: 0.85rem;
    cursor: not-allowed;
}

.country-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--bounce-yellow);
    border: 1px solid var(--bounce-yellow);
}

.country-badge.warning {
    color: var(--bounce-orange);
    border-color: var(--bounce-orange);
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background: var(--medium-gray);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 15px;
    background: var(--charcoal);
    padding: 5px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: var(--bounce-yellow);
    color: var(--charcoal);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-primary);
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(249, 199, 79, 0.2);
    color: var(--off-white);
}

.table-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-logo {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--bounce-yellow), var(--bounce-orange));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--pure-white);
}

.table-rating {
    color: var(--bounce-yellow);
    font-weight: 600;
}

.table-rating i {
    font-size: 0.8rem;
    margin-left: 3px;
}

.table-bonus {
    color: var(--pure-white);
    font-weight: 600;
}

.table-good {
    color: var(--bounce-green);
}

.table-mid {
    color: var(--bounce-yellow);
}

.table-btn {
    display: inline-block;
    padding: 6px 15px;
    background: var(--bounce-green);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.table-btn:hover {
    background: var(--bounce-yellow);
    transform: scale(1.05);
}

.rating-badge {
    background: var(--bounce-yellow);
    color: var(--charcoal);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.table-link {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bounce-green);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.table-link:hover {
    background: var(--bounce-yellow);
}

.table-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--off-white);
    opacity: 0.7;
    text-align: right;
}

/* Methodology Link */
.methodology-link {
    padding: 60px 0;
    background: var(--charcoal);
}

.methodology-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.methodology-box h3 {
    margin-bottom: 15px;
    color: var(--pure-white);
}

.methodology-box p {
    margin-bottom: 25px;
    color: var(--off-white);
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: var(--bounce-yellow);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--bounce-yellow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--bounce-yellow);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--charcoal) 100%);
    border: 2px solid var(--bounce-yellow);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-box h2 {
    margin-bottom: 20px;
}

.cta-box p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-options {
        width: 100%;
    }
    
    .filter-sort {
        width: 100%;
    }
    
    .filter-sort select {
        width: 100%;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .reviews-hero h1 {
        font-size: 2rem;
    }
    
    .review-pros-cons {
        flex-direction: column;
    }
}
/* ===== METHODOLOGY HIGHLIGHT ===== */
.methodology-highlight {
    padding: 60px 0;
    background: var(--medium-gray);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(249, 199, 79, 0.1) 0%, rgba(249, 132, 74, 0.1) 100%);
    border: 2px solid var(--bounce-yellow);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '🏀🏀🏀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.03;
    color: var(--bounce-orange);
    white-space: nowrap;
    width: 100%;
    pointer-events: none;
}

.highlight-box h2 {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: var(--pure-white);
    font-size: 2.2rem;
}

.highlight-box h2 span {
    color: var(--bounce-yellow);
    border-bottom: 2px solid var(--bounce-orange);
    padding-bottom: 5px;
}

.highlight-box p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--off-white);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.highlight-box .btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: var(--bounce-yellow);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--bounce-yellow);
    position: relative;
    z-index: 2;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-box .btn-primary:hover {
    background: transparent;
    color: var(--bounce-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-box {
        padding: 40px 20px;
    }
    
    .highlight-box h2 {
        font-size: 1.8rem;
    }
    
    .highlight-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .highlight-box {
        padding: 30px 15px;
    }
    
    .highlight-box h2 {
        font-size: 1.5rem;
    }
    
    .highlight-box .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}