/* ============================================
   WELCOME BONUS PAGE - Futuristic Styles
   Gold Theme with Advanced Animations
   ============================================ */

/* Optimized Hero Section for Conversions */
.welcome-hero-section.optimized {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

/* Trust Badge Row */
.trust-badge-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 176, 55, 0.1);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.trust-item i {
    color: var(--primary-gold);
}

/* Simple Hero Title */
.welcome-hero-title-simple {
    text-align: center;
    margin-bottom: 2rem;
}

.highlight-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(201, 176, 55, 0.3);
}

.subtitle-text {
    display: block;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Welcome Hero Content */
.welcome-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero Best Offer Card */
.hero-best-offer {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.offer-label {
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px 20px 0 0;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: -1px;
}

.offer-card-hero {
    background: var(--bg-card);
    border: 3px solid var(--primary-gold);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(201, 176, 55, 0.2);
}

.offer-left {
    flex: 0 0 auto;
}

.casino-logo-hero {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1rem;
    color: var(--primary-gold);
}

.rating-stars span {
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.offer-center {
    flex: 1;
    text-align: center;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(201, 176, 55, 0.3);
}

.bonus-details {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0.5rem 0;
}

.bonus-extra {
    color: var(--text-secondary);
    font-size: 1rem;
}

.offer-right {
    flex: 0 0 auto;
}

/* Optimized CTA Button */
.btn-claim-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, var(--primary-gold));
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 176, 55, 0.4);
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(201, 176, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(201, 176, 55, 0.6);
    }
}

.btn-claim-hero:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 176, 55, 0.6);
}

.btn-arrow {
    font-size: 1.3rem;
}

.offer-terms {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Urgency Message */
.urgency-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    color: #ff6b6b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.urgency-message strong {
    color: #ff4444;
}

/* Value Props */
.value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.prop {
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Simple Hero Text */
.hero-simple-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-simple-text strong {
    color: var(--primary-gold);
}

/* Main CTA Button */
.hero-main-cta {
    margin-top: 2rem;
}

.btn-see-all-bonuses {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-see-all-bonuses:hover {
    background: rgba(201, 176, 55, 0.1);
    transform: translateY(-2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--text-dark);
    padding: 0.4rem 1.2rem;  /* Reduced padding */
    border-radius: 25px;
    font-size: 0.75rem;  /* Reduced from 0.85rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(201, 176, 55, 0.3);
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 176, 55, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(201, 176, 55, 0.5); }
}

.welcome-hero-title {
    margin-bottom: 2rem;
}

.title-small {
    display: block;
    font-size: 1.2rem;  /* Reduced from 1.5rem */
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;  /* Reduced from 4.5rem */
    font-weight: 800;
    line-height: 1.1;
    margin: 0.8rem 0;
}

.gradient-text-animated {
    background: linear-gradient(270deg,
        var(--primary-gold) 0%,
        #FFD700 25%,
        var(--primary-gold-light) 50%,
        #FFD700 75%,
        var(--primary-gold) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-slide 3s linear infinite;
    text-shadow: 0 0 60px rgba(201, 176, 55, 0.4);
}

@keyframes gradient-slide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.title-highlight {
    display: block;
    font-size: 2.4rem;  /* Reduced from 3rem */
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow:
        0 0 30px rgba(201, 176, 55, 0.5),
        0 0 60px rgba(201, 176, 55, 0.3);
    margin: 0.4rem 0;
}

.title-subtitle {
    display: block;
    font-size: 1.5rem;  /* Reduced from 1.8rem */
    font-weight: 600;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1rem;  /* Reduced from 1.2rem */
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Quick Stats */
.hero-quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;  /* Reduced padding */
    background: rgba(201, 176, 55, 0.05);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-stat:hover {
    transform: translateY(-5px);
    background: rgba(201, 176, 55, 0.1);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.2);
}

.stat-icon {
    width: 40px;  /* Reduced from 50px */
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;  /* Reduced from 1.3rem */
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 1.5rem;  /* Reduced from 1.8rem */
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;  /* Reduced from 0.85rem */
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 0.8rem 2rem;  /* Reduced padding */
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;  /* Slightly smaller */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(201, 176, 55, 0.3);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(201, 176, 55, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-cta-secondary:hover {
    background: rgba(201, 176, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(201, 176, 55, 0.2);
}

/* Sticky Conversion Bar */
.sticky-conversion-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 2px solid var(--primary-gold);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-conversion-bar.show {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.sticky-details {
    font-size: 1rem;
    color: var(--text-primary);
}

.sticky-cta {
    background: linear-gradient(135deg, #FFD700, var(--primary-gold));
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-sticky 2s infinite;
}

@keyframes pulse-sticky {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sticky-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(201, 176, 55, 0.5);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(201, 176, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.calculator-title {
    text-align: center;
    font-size: 1.6rem;  /* Reduced from 2rem */
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.calculator-input {
    margin-bottom: 2rem;
}

.calculator-input label {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(201, 176, 55, 0.05);
    border: 2px solid rgba(201, 176, 55, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(201, 176, 55, 0.2);
}

.currency-symbol,
.currency-label {
    color: var(--primary-gold);
    font-weight: 600;
}

.currency-symbol {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.currency-label {
    margin-left: 0.5rem;
}

#deposit-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;  /* Reduced from 1.8rem */
    font-weight: 700;
    text-align: center;
    outline: none;
}

#deposit-slider {
    width: 100%;
    height: 8px;
    background: rgba(201, 176, 55, 0.1);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

#deposit-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(201, 176, 55, 0.3);
    transition: all 0.3s ease;
}

#deposit-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 20px rgba(201, 176, 55, 0.5);
}

/* Calculator Results */
.calculator-results {
    margin-top: 2rem;
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-card {
    background: rgba(201, 176, 55, 0.05);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card.best {
    border-color: var(--primary-gold);
    background: rgba(201, 176, 55, 0.1);
    box-shadow: 0 0 20px rgba(201, 176, 55, 0.2);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.2);
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.result-value {
    display: block;
    font-size: 1.6rem;  /* Reduced from 2rem */
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.result-casino {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.calculator-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(201, 176, 55, 0.05);
    border-left: 3px solid var(--primary-gold);
    border-radius: 8px;
    color: var(--text-secondary);
}

/* Top Welcome Bonuses Section */
.top-welcome-bonuses {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.section-title-modern {
    text-align: center;
    font-size: 1.6rem;  /* Reduced by 20% */
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title-modern i {
    font-size: 1.4rem;
}

.title-decoration {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-gold) 50%,
        transparent 100%);
    position: relative;
}

.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-gold);
}

/* Bonuses Filter Bar */
.bonuses-filter-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(201, 176, 55, 0.05);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 30px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: rgba(201, 176, 55, 0.1);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(201, 176, 55, 0.3);
}

/* Welcome Bonuses Grid */
.welcome-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Simplified Bonus Card for Better Conversions */
.welcome-bonus-card.simplified {
    background: var(--bg-card);
    border: 2px solid rgba(201, 176, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.welcome-bonus-card.simplified:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.2);
}

.welcome-bonus-card.featured {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(201, 176, 55, 0.15);
}

.card-best-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold), #FFD700);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-top-section {
    margin-bottom: 1rem;
}

.card-top-section .casino-name {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.card-top-section .rating {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.card-offer-section {
    margin: 1.5rem 0;
}

.offer-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(201, 176, 55, 0.3);
}

.offer-text {
    font-size: 1rem;
    color: var(--text-primary);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.card-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.3rem 0.6rem;
    background: rgba(201, 176, 55, 0.1);
    border-radius: 15px;
}

.btn-claim-big {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #FFD700, var(--primary-gold));
    color: #000;
    padding: 1.2rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    margin: 1.5rem 0 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 176, 55, 0.3);
}

.btn-claim-big:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 176, 55, 0.5);
}

.bonus-code {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.card-urgency {
    font-size: 0.85rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Original Bonus Card Styles */
.welcome-bonus-card:not(.simplified) {
    background: var(--bg-card);
    border: 1px solid rgba(201, 176, 55, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.welcome-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
}

.welcome-bonus-card:hover::before {
    left: 0;
}

.welcome-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 176, 55, 0.15);
    border-color: rgba(201, 176, 55, 0.3);
}

.welcome-bonus-card.featured {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 40px rgba(201, 176, 55, 0.2);
}

.card-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(201, 176, 55, 0.3);
}

.card-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-best {
    background: linear-gradient(135deg, var(--primary-gold), #FFD700);
    color: var(--text-dark);
}

.badge-crypto {
    background: linear-gradient(135deg, #F7931A, #FDB833);
    color: white;
}

.badge-low-wagering {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.badge-spins {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    color: white;
}

.badge-vip {
    background: linear-gradient(135deg, #212121, #424242);
    color: var(--primary-gold);
}

/* Card Casino Info */
.card-casino-info {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.casino-name {
    font-size: 1.3rem;  /* Reduced from 1.5rem */
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--primary-gold);
}

.rating-value {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Bonus Main Offer */
.bonus-main-offer {
    background: rgba(201, 176, 55, 0.05);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-percentage {
    font-size: 2.4rem;  /* Reduced from 3rem */
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(201, 176, 55, 0.3);
}

.offer-details {
    margin-top: 0.4rem;
}

.offer-amount {
    display: block;
    font-size: 1rem;  /* Reduced from 1.2rem */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.offer-extra {
    display: block;
    color: var(--text-secondary);
}

/* Bonus Key Features */
.bonus-key-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.feature i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.feature.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

/* Bonus Deposits Breakdown */
.bonus-deposits-breakdown {
    background: rgba(201, 176, 55, 0.03);
    border-left: 3px solid var(--primary-gold);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.bonus-deposits-breakdown h4 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.bonus-deposits-breakdown ul {
    list-style: none;
    padding: 0;
}

.bonus-deposits-breakdown li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-claim-bonus,
.btn-read-review {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.btn-claim-bonus {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.btn-claim-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 176, 55, 0.3);
}

.btn-read-review {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn-read-review:hover {
    background: rgba(201, 176, 55, 0.1);
}

/* Bonus Terms Preview */
.bonus-terms-preview {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 176, 55, 0.1);
}

.terms-link {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more-bonuses {
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-load-more-bonuses:hover {
    background: rgba(201, 176, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 176, 55, 0.2);
}

/* How to Claim Section */
.how-to-claim-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.claim-steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-progress {
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% - 100px);
    background: rgba(201, 176, 55, 0.1);
}

.timeline-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--gradient-gold);
    animation: timeline-fill 5s ease-in-out infinite;
}

@keyframes timeline-fill {
    0%, 100% { height: 0%; }
    50% { height: 100%; }
}

.claim-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.claim-step:hover .step-number {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    padding: 1rem;
}

.step-content h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 176, 55, 0.05);
    border-left: 3px solid var(--primary-gold);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-tip i {
    color: var(--primary-gold);
}

/* Optimized Comparison Table Section */
.detailed-comparison-section {
    padding: 3rem 0 4rem;
    background: var(--bg-primary);
}

/* Table Tips */
.table-tips {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tip-box {
    background: rgba(201, 176, 55, 0.08);
    border-left: 3px solid var(--primary-gold);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tip-box i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.tip-box p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.tip-box strong {
    color: var(--primary-gold);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    max-width: 1400px;
}

.modern-comparison-table {
    width: 100%;
    background: var(--bg-card);
    border-collapse: separate;
    border-spacing: 0;
}

.modern-comparison-table thead {
    background: rgba(201, 176, 55, 0.08);
}

.modern-comparison-table th {
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.7rem;
    border-bottom: 2px solid rgba(201, 176, 55, 0.3);
    white-space: nowrap;
}

.modern-comparison-table th:first-child {
    text-align: left;
    padding-left: 2rem;
}

.modern-comparison-table th:last-child {
    text-align: center;
}

.modern-comparison-table tbody tr {
    transition: all 0.3s ease;
    position: relative;
}

.modern-comparison-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(201, 176, 55, 0.08);
}

.modern-comparison-table tbody tr:hover {
    background: rgba(201, 176, 55, 0.04);
}

.modern-comparison-table tbody tr.featured-row {
    background: rgba(201, 176, 55, 0.06);
}

.modern-comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    vertical-align: middle;
    font-size: 0.85rem;
}

.modern-comparison-table td:first-child {
    text-align: left;
    padding-left: 2rem;
}

.modern-comparison-table td:last-child {
    padding-right: 2rem;
}

.casino-cell {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.casino-rank {
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.casino-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.bonus-percentage {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 2px 5px rgba(201, 176, 55, 0.2);
}

.bonus-max {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Highlight best values */
.free-spins {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
}

.free-spins.highlight {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.wagering {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.wagering.best {
    color: #4CAF50;
    font-weight: 700;
    font-size: 0.9rem;
}

.rating-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--primary-gold);
}

.rating-cell i {
    font-size: 0.8rem;
}

.rating-cell span {
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-table-claim {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #FFD700, var(--primary-gold));
    color: #000;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(201, 176, 55, 0.3);
    white-space: nowrap;
}

.btn-table-claim:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(201, 176, 55, 0.4);
}

/* Make first row CTA more prominent */
.featured-row .btn-table-claim {
    font-size: 0.85rem;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, var(--primary-gold));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 3px 12px rgba(201, 176, 55, 0.4);
}

.featured-row .btn-table-claim:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px rgba(201, 176, 55, 0.6);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced featured row with better badge positioning */
.featured-row td:first-child {
    position: relative;
}

.featured-row td:first-child::before {
    content: '🔥 MÁS POPULAR';
    position: absolute;
    top: -8px;
    left: 2rem;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    z-index: 2;
    white-space: nowrap;
}

/* Wagering Guide Section */
.wagering-guide-section {
    padding: 5rem 0;
    background: linear-gradient(135deg,
        rgba(201, 176, 55, 0.03) 0%,
        transparent 100%);
}

.guide-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.guide-card:hover::after {
    transform: translateX(0);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.15);
}

.guide-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.guide-card h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.guide-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.example-box,
.warning-box {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.example-box {
    background: rgba(201, 176, 55, 0.05);
    border-left: 3px solid var(--primary-gold);
    color: var(--text-secondary);
}

.warning-box {
    background: rgba(161, 30, 30, 0.1);
    border-left: 3px solid #A11E1E;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.warning-box i {
    color: #A11E1E;
    font-size: 1.2rem;
}

.contribution-list {
    list-style: none;
    padding: 0;
}

.contribution-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.contribution-list i {
    color: var(--primary-gold);
    width: 20px;
}

.time-tips {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(201, 176, 55, 0.05);
    border-radius: 6px;
}

.tip i {
    color: var(--primary-gold);
}

/* FAQ Section */
.welcome-faq-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Accordion Styles */
.faq-item {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 176, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 176, 55, 0.1);
}

.faq-item.active {
    border-color: var(--primary-gold);
    background: rgba(201, 176, 55, 0.05);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px; /* Fallback max-height */
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

/* Expert Tips Section */
.expert-tips-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.tips-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.15);
    border-color: var(--primary-gold);
}

.tip-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(201, 176, 55, 0.1);
}

.tip-card h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.welcome-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg,
        rgba(201, 176, 55, 0.1) 0%,
        rgba(11, 61, 46, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.welcome-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(201, 176, 55, 0.1) 0%,
        transparent 70%);
    animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.cta-feature span {
    color: var(--text-primary);
    font-weight: 500;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(201, 176, 55, 0.3);
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(201, 176, 55, 0.4);
}

/* Header with Centered Logo and Hamburger Menu */
.main-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.hamburger-menu {
    flex: 0 0 auto;
}

.centered-logo {
    flex: 0 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-spacer {
    flex: 0 0 auto;
    width: 50px; /* Same width as hamburger button for balance */
}

.hamburger-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 50px;
    height: 50px;
    z-index: 1002;
}

.hamburger-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-toggle:hover span {
    background: #FFD700;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hamburger Navigation Menu */
.hamburger-nav {
    display: none;
    position: fixed;
    top: 70px; /* Below header */
    left: 0;
    width: 300px;
    height: calc(100vh - 70px);
    background: var(--bg-secondary);
    border-right: 2px solid var(--primary-gold);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.hamburger-nav.active {
    display: block;
    transform: translateX(0);
}

.hamburger-nav ul {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
}

.hamburger-nav li {
    border-bottom: 1px solid rgba(201, 176, 55, 0.1);
}

.hamburger-nav .nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-nav .nav-link:hover {
    background: rgba(201, 176, 55, 0.1);
    color: var(--primary-gold);
    padding-left: 2.5rem;
}

.hamburger-nav .nav-link.active {
    color: var(--primary-gold);
    background: rgba(201, 176, 55, 0.05);
}

.hamburger-nav .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gold);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hide original navigation */
.main-nav:not(.hamburger-nav) {
    display: none;
}

/* Additional Table Spacing Adjustments */
.modern-comparison-table {
    font-size: 0.82rem;
}

.modern-comparison-table tbody tr {
    height: 65px;  /* Consistent row height */
}

.modern-comparison-table td,
.modern-comparison-table th {
    padding: 1rem 1.2rem;  /* More consistent padding */
}

/* ============================================
   NEW SECTIONS STYLING - SEO Optimized
   ============================================ */

/* Section CTA Button */
.section-cta {
    text-align: center;
    margin: 3rem 0 0;
    padding: 2rem 0;
}

.btn-section-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #FFD700, var(--primary-gold));
    color: #000;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(201, 176, 55, 0.3);
    animation: pulse-cta 2s infinite;
}

.btn-section-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(201, 176, 55, 0.5);
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Bonus Types Section */
.bonus-types-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-type-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.bonus-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.2);
    border-color: var(--primary-gold);
}

.bonus-type-card.featured {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(201, 176, 55, 0.15);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.type-icon.crypto { background: linear-gradient(135deg, #F7931A, #FDB833); }
.type-icon.spins { background: linear-gradient(135deg, #9C27B0, #BA68C8); }
.type-icon.cashback { background: linear-gradient(135deg, #4CAF50, #66BB6A); }
.type-icon.hybrid { background: linear-gradient(135deg, #FFD700, #FFA500); }
.type-icon.vip { background: linear-gradient(135deg, #212121, #757575); color: var(--primary-gold); }
.type-icon.bitcoin { background: linear-gradient(135deg, #F7931A, #FF9800); }

.bonus-type-card h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.type-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(201, 176, 55, 0.2);
    color: var(--primary-gold);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.type-badge.rare { background: rgba(161, 30, 30, 0.2); color: #ff6b6b; }
.type-badge.best { background: var(--gradient-gold); color: #000; }

.type-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.type-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.type-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.type-features i {
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

.type-example {
    background: rgba(201, 176, 55, 0.05);
    border-left: 3px solid var(--primary-gold);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.key-takeaway-box {
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.takeaway-icon {
    font-size: 3rem;
    color: var(--primary-gold);
}

.takeaway-content h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.takeaway-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.takeaway-content strong {
    color: var(--text-primary);
}

/* Common Mistakes Section */
.common-mistakes-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mistake-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(161, 30, 30, 0.2);
    border-color: #ff6b6b;
}

.mistake-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ff4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(161, 30, 30, 0.3);
}

.mistake-icon {
    width: 60px;
    height: 60px;
    background: rgba(161, 30, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.mistake-card h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.problem, .consequence {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.consequence i {
    color: #ff6b6b;
}

.solution {
    display: flex;
    gap: 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.solution i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.solution strong {
    color: var(--primary-gold);
}

.mistakes-stats-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.mistakes-stats-box h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(201, 176, 55, 0.05);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.stats-footer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
}

/* Best Games Section */
.best-games-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.games-category {
    margin-bottom: 3rem;
}

.category-title {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-item {
    background: var(--bg-card);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto 2fr;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.game-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

.game-item.featured {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(201, 176, 55, 0.15);
}

.game-rank {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.game-name {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.game-provider {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.game-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.game-rtp {
    padding: 0.5rem 1rem;
    background: rgba(201, 176, 55, 0.1);
    border-radius: 20px;
    font-weight: 700;
    color: var(--primary-gold);
}

.game-rtp.best {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.game-volatility {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-volatility.low { background: rgba(76, 175, 80, 0.2); color: #4CAF50; }
.game-volatility.medium { background: rgba(255, 193, 7, 0.2); color: #FFC107; }
.game-volatility.high { background: rgba(161, 30, 30, 0.2); color: #ff6b6b; }

.game-contribution {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-description {
    grid-column: 2 / -1;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.strategy-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strategy-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.2);
}

.strategy-card.warning {
    border-color: #ff6b6b;
    background: rgba(161, 30, 30, 0.05);
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.strategy-card.warning .strategy-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff4444);
    color: white;
}

.strategy-card h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.strategy-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.strategy-tip {
    background: rgba(201, 176, 55, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.strategy-tip i {
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

.contribution-table {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
}

.contribution-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1.5fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(201, 176, 55, 0.1);
}

.contribution-row.header {
    background: rgba(201, 176, 55, 0.1);
    font-weight: 700;
    color: var(--primary-gold);
}

.contribution-row.best {
    background: rgba(76, 175, 80, 0.05);
}

.contribution-row.good {
    background: rgba(139, 195, 74, 0.05);
}

.contribution-row.excluded {
    background: rgba(161, 30, 30, 0.05);
}

.contribution-game {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.contribution-game i {
    color: var(--primary-gold);
}

.contribution-percent {
    font-weight: 700;
    color: var(--primary-gold);
}

.contribution-example {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contribution-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.contribution-status i {
    font-size: 1.1rem;
}

.games-tips-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.games-tips-box h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.tip-item {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    padding: 0.75rem;
    background: rgba(201, 176, 55, 0.05);
    border-radius: 8px;
}

.tip-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.calculation-example {
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.calculation-example h4 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calc-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.calc-step {
    background: rgba(201, 176, 55, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
}

.calc-step.highlight {
    background: var(--gradient-gold);
}

.step-label {
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.calc-step.highlight .step-label,
.calc-step.highlight .step-value {
    color: var(--text-dark);
}

.step-value {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.calc-arrow {
    font-size: 2rem;
    color: var(--primary-gold);
}

.calc-note {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-card {
    background: var(--bg-card);
    border: 2px solid rgba(201, 176, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.2);
}

.payment-card.best {
    border-color: #4CAF50;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.15);
}

.payment-card.good {
    border-color: var(--primary-gold);
}

.payment-card.warning {
    border-color: #FFC107;
}

.payment-card.excluded {
    border-color: #ff6b6b;
    background: rgba(161, 30, 30, 0.05);
}

.payment-header {
    padding: 2rem;
    background: rgba(201, 176, 55, 0.05);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-card.best .payment-icon {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.payment-card.excluded .payment-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff4444);
    color: white;
}

.payment-header h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.payment-status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.payment-status.qualify {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.payment-status.maybe {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.payment-status.no-qualify {
    background: rgba(161, 30, 30, 0.2);
    color: #ff6b6b;
}

.payment-details {
    padding: 2rem;
}

.payment-pros, .payment-cons {
    margin-bottom: 1.5rem;
}

.payment-pros h4, .payment-cons h4 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.payment-pros li, .payment-cons li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.payment-pros li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: 700;
}

.payment-cons li::before {
    content: "⚠";
    color: #FFC107;
}

.payment-limits {
    background: rgba(201, 176, 55, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.limit-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 176, 55, 0.1);
}

.limit-item:last-child {
    border-bottom: none;
}

.limit-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.limit-value {
    color: var(--primary-gold);
    font-weight: 700;
}

.exclusion-warning {
    background: rgba(161, 30, 30, 0.1);
    border-left: 3px solid #ff6b6b;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.payment-recommendation-box {
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.payment-recommendation-box h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.recommendation-content {
    margin-bottom: 1.5rem;
}

.rec-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 176, 55, 0.1);
}

.rec-item:last-child {
    border-bottom: none;
}

.rec-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.rec-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.rec-text strong {
    color: var(--primary-gold);
}

.rec-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Player Types Section */
.player-types-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.player-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.player-profile-card {
    background: var(--bg-card);
    border: 2px solid rgba(201, 176, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.player-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.2);
}

.player-profile-card.featured {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(201, 176, 55, 0.15);
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0 auto 1rem;
}

.profile-header h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.profile-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.profile-badge.beginner { background: rgba(76, 175, 80, 0.2); color: #4CAF50; }
.profile-badge.casual { background: rgba(33, 150, 243, 0.2); color: #2196F3; }
.profile-badge.slots { background: rgba(156, 39, 176, 0.2); color: #9C27B0; }
.profile-badge.vip { background: var(--gradient-gold); color: var(--text-dark); }
.profile-badge.table { background: rgba(255, 87, 34, 0.2); color: #FF5722; }
.profile-badge.crypto { background: rgba(255, 152, 0, 0.2); color: #FF9800; }

.profile-characteristics {
    margin-bottom: 2rem;
}

.profile-characteristics h4 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.profile-characteristics ul {
    list-style: none;
    padding: 0;
}

.profile-characteristics li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.profile-characteristics li::before {
    content: "•";
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.profile-recommendation h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonus-rec-card {
    background: rgba(201, 176, 55, 0.05);
    border: 1px solid rgba(201, 176, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.bonus-rec-card.best {
    background: rgba(76, 175, 80, 0.05);
    border-color: #4CAF50;
}

.bonus-rec-card.warning {
    background: rgba(255, 193, 7, 0.05);
    border-color: #FFC107;
}

.bonus-rec-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.bonus-rec-details {
    margin-bottom: 1rem;
}

.rec-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.rec-detail i {
    color: var(--primary-gold);
}

.bonus-rec-why {
    background: rgba(201, 176, 55, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.bonus-rec-why strong {
    color: var(--primary-gold);
}

.player-finder-box {
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.player-finder-box h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.finder-questions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.finder-q strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.finder-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.finder-opt {
    padding: 0.75rem;
    background: rgba(201, 176, 55, 0.05);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design - Optimized for Mobile Conversions */
@media (max-width: 1200px) {
    .comparison-table-wrapper {
        margin: 0 1rem;
    }

    .modern-comparison-table td,
    .modern-comparison-table th {
        padding: 0.8rem 0.8rem;
        font-size: 0.75rem;
    }

    .btn-table-claim {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    /* Simplified Hero */
    .highlight-text {
        font-size: 2rem;
    }

    .subtitle-text {
        font-size: 1.1rem;
    }

    .offer-card-hero {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .bonus-amount {
        font-size: 2.5rem;
    }

    .value-props {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .trust-badge-row {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Sticky Bar Mobile */
    .sticky-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .sticky-cta {
        width: 100%;
        padding: 0.8rem;
    }

    /* Bonus Cards */
    .welcome-bonuses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offer-big {
        font-size: 2.5rem;
    }

    .btn-claim-big {
        padding: 1rem;
        font-size: 1rem;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        margin-bottom: 0.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /* NEW SECTIONS - Mobile Responsive */
    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-title-modern {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    /* Bonus Types */
    .bonus-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonus-type-card {
        padding: 1.5rem;
    }

    .type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Mistakes */
    .mistakes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mistake-card {
        padding: 1.5rem;
    }

    .mistake-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .key-takeaway-box {
        flex-direction: column;
        padding: 1.5rem;
    }

    .takeaway-icon {
        font-size: 2rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Games Section */
    .game-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .game-rank {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .game-description {
        grid-column: 1;
    }

    .game-stats {
        flex-wrap: wrap;
    }

    .contribution-table {
        overflow-x: auto;
        display: block;
    }

    .contribution-row {
        min-width: 700px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .strategy-cards-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .calc-step {
        padding: 1rem;
    }

    /* Payment Methods */
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .payment-header,
    .payment-details {
        padding: 1.5rem;
    }

    .payment-recommendation-box {
        padding: 1.5rem;
    }

    /* Player Types */
    .player-profiles-grid {
        grid-template-columns: 1fr;
    }

    .profile-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .player-finder-box {
        padding: 1.5rem;
    }

    /* CTA Button */
    .btn-section-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Navigation */
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Optimized table for mobile - prioritize CTA visibility */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .modern-comparison-table {
        min-width: 650px;
        font-size: 0.7rem;
    }

    .modern-comparison-table td,
    .modern-comparison-table th {
        padding: 0.6rem 0.4rem;
    }

    /* Make Casino and Acción columns more prominent on mobile */
    .modern-comparison-table td:nth-child(1),
    .modern-comparison-table th:nth-child(1) {
        min-width: 140px;
        padding-left: 0.5rem;
    }

    .modern-comparison-table td:nth-child(2),
    .modern-comparison-table th:nth-child(2) {
        min-width: 100px;
    }

    .casino-rank {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .casino-name {
        font-size: 0.75rem;
    }

    .btn-table-claim {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .welcome-hero-title .title-main {
        font-size: 2rem;
    }

    .calculator-wrapper {
        padding: 1.5rem;
    }

    .result-cards {
        grid-template-columns: 1fr;
    }

    .modern-comparison-table {
        font-size: 0.85rem;
    }

    .modern-comparison-table th,
    .modern-comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ============================================
   CASINO CARDS GRID LAYOUT
   ============================================ */

.casino-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.casino-card {
    position: relative;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(201, 176, 55, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.casino-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(201, 176, 55, 0.4);
}

.casino-card.featured-card {
    border-color: var(--primary-gold);
    border-width: 3px;
    background: linear-gradient(180deg, #2a1f0f 0%, #1a1a1a 100%);
}

.card-rank {
    position: absolute;
    top: -15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), #b8941e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(201, 176, 55, 0.5);
    z-index: 10;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-badge.popular {
    background: linear-gradient(90deg, #ff6b6b, #ff8787);
    color: #fff;
}

.card-badge.exclusive {
    background: linear-gradient(90deg, #6b66ff, #8783ff);
    color: #fff;
}

.card-badge.cashback {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    color: #fff;
}

.card-logo {
    margin: 2rem 0 1.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
}

.card-logo img {
    max-width: 180px;
    max-height: 70px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.card-bonus-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(201, 176, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(201, 176, 55, 0.2);
}

.bonus-row {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.bonus-item {
    flex: 1;
    text-align: center;
}

.bonus-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
    display: block;
}

.bonus-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-casino-cta {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), #b8941e);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 176, 55, 0.3);
    border: none;
    cursor: pointer;
}

.btn-casino-cta:hover {
    background: linear-gradient(135deg, #e6c84d, var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 176, 55, 0.5);
}

.btn-casino-cta i {
    margin-right: 0.5rem;
}

.btn-casino-review {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid rgba(201, 176, 55, 0.3);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-casino-review:hover {
    border-color: var(--primary-gold);
    background: rgba(201, 176, 55, 0.1);
}

/* Show/hide button text based on expanded state */
.btn-casino-review .btn-text-close {
    display: none;
}

.casino-card.expanded .btn-casino-review .btn-text-open {
    display: none;
}

.casino-card.expanded .btn-casino-review .btn-text-close {
    display: inline;
}

.card-terms {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 1rem;
}

.card-terms a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.card-terms a:hover {
    color: #e6c84d;
}

/* Responsive Design for Cards */
@media (max-width: 992px) {
    .casino-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .casino-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .casino-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .casino-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }

    .card-logo img {
        max-width: 150px;
        max-height: 60px;
    }

    .bonus-value {
        font-size: 1.2rem;
    }

    .bonus-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .casino-card {
        padding: 1.5rem 1rem;
    }

    .card-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .bonus-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Expanded Details Section */
.card-details-expanded {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(201, 176, 55, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(201, 176, 55, 0.3);
    position: relative;
    animation: slideDown 0.3s ease-out;
}

.casino-card.expanded .card-details-expanded {
    display: block;
}

.casino-card.expanded {
    transform: scale(1.02);
    z-index: 100;
}

.details-title {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.details-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

.detail-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.detail-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.detail-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive for details */
@media (max-width: 768px) {
    .card-details-expanded {
        padding: 1rem;
    }

    .details-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .detail-item i {
        font-size: 1.2rem;
    }

    .detail-item strong {
        font-size: 0.9rem;
    }

    .detail-item p {
        font-size: 0.85rem;
    }
}