/* ============================================
   REDDY BOOK SPORTS BETTING PAGE STYLES
   All classes prefixed with .rb-sports-
   ============================================ */

/* 1. HERO SECTION */
.rb-sports-hero {
    background: linear-gradient(rgba(10, 10, 30, 0.85), rgba(30, 10, 20, 0.9)), 
                url('sports-bg.jpg') center/cover no-repeat;
    padding: 100px 0 80px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rb-sports-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rb-sports-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.rb-sports-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rb-sports-hero-subtitle {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.rb-sports-hero-subtitle strong {
    color: #ffcc00;
}

.rb-sports-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.rb-sports-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rb-sports-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #c10930;
    line-height: 1;
}

.rb-sports-stat-label {
    font-size: 16px;
    color: #cccccc;
    margin-top: 8px;
}

.rb-sports-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rb-sports-cta {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #c10930, #e11245);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rb-sports-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(193, 9, 48, 0.4);
    background: linear-gradient(135deg, #e11245, #c10930);
}

.rb-sports-register {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background: transparent;
    color: white;
    border: 2px solid #c10930;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rb-sports-register:hover {
    background: #c10930;
    transform: translateY(-3px);
}

.rb-sports-hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: #cccccc;
    margin-top: 30px;
}

.rb-sports-hero-note i {
    color: #4CAF50;
}

/* 2. INTRODUCTION SECTION */
.rb-sports-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-sports-intro .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.rb-sports-intro-content h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c10930;
    margin: 15px auto 30px;
    border-radius: 2px;
}

.rb-sports-intro-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a1c28;
    margin-bottom: 20px;
    text-align: center;
}

.rb-sports-intro-content p strong {
    color: #c10930;
}

.rb-sports-intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.rb-sports-highlight {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.rb-sports-highlight:hover {
    transform: translateY(-5px);
}

.rb-sports-highlight i {
    font-size: 40px;
    color: #c10930;
    margin-bottom: 20px;
}

.rb-sports-highlight h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

.rb-sports-highlight p {
    font-size: 15px;
    color: #5b6b7a;
    margin-bottom: 0;
}

/* 3. CRICKET SECTION */
.rb-sports-cricket {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9f9 0%, #fff5f5 100%);
}

.rb-sports-cricket .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.rb-sports-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rb-sports-section-header h2 i {
    color: #c10930;
}

.rb-sports-section-header p {
    font-size: 18px;
    color: #7a2a3c;
    font-style: italic;
}

.rb-sports-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.rb-sports-content-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 20px;
}

.rb-sports-content-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a1c28;
    margin-bottom: 25px;
}

.rb-sports-feature-list {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #c10930;
}

.rb-sports-feature-list h4 {
    font-size: 20px;
    font-weight: 600;
    color: #c10930;
    margin-bottom: 15px;
}

.rb-sports-feature-list ul {
    list-style-type: none;
    padding-left: 0;
}

.rb-sports-feature-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #4a1c28;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.rb-sports-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c10930;
    font-weight: bold;
}

.rb-sports-tournaments h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-sports-tournament-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rb-sports-tournament-tag {
    background-color: #c10930;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.rb-sports-visual-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #c10930;
}

.rb-sports-visual-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 25px;
    text-align: center;
}

.rb-sports-market-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.rb-sports-market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.rb-sports-market-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rb-sports-market-name {
    font-size: 15px;
    font-weight: 500;
    color: #4a1c28;
}

.rb-sports-market-odds {
    font-size: 15px;
    font-weight: 600;
    color: #c10930;
}

.rb-sports-market-link {
    display: block;
    text-align: center;
    color: #c10930;
    font-weight: 600;
    text-decoration: none;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.rb-sports-market-link:hover {
    text-decoration: underline;
}

.rb-sports-tips {
    background-color: #fffaf0;
    border-radius: 10px;
    padding: 25px;
    border-left: 5px solid #ff9900;
}

.rb-sports-tips h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-sports-tips h4 i {
    color: #ff9900;
}

.rb-sports-tips p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
    margin-bottom: 0;
}

/* 4. FOOTBALL SECTION */
.rb-sports-football {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-sports-football .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-content-grid.reversed {
    grid-template-columns: 1fr 1.2fr;
}

.rb-sports-league-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rb-sports-league-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.rb-sports-league-item:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
}

.rb-sports-league-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.rb-sports-league-item span {
    font-size: 14px;
    font-weight: 500;
    color: #4a1c28;
}

.rb-sports-special {
    background-color: #e8f4ff;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.rb-sports-special h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-sports-special h4 i {
    color: #ffcc00;
}

.rb-sports-special p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
    margin-bottom: 0;
}

/* 5. TENNIS SECTION */
.rb-sports-tennis {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5fff5 0%, #f0fff0 100%);
}

.rb-sports-tennis .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-tennis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.rb-sports-tennis-tournaments h3,
.rb-sports-tennis-markets h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 25px;
}

.rb-sports-tournament-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rb-sports-tournament-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #c10930;
    position: relative;
}

.rb-sports-tournament-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

.rb-sports-tournament-card p {
    font-size: 14px;
    color: #5b6b7a;
    margin-bottom: 15px;
    line-height: 1.5;
}

.rb-sports-tournament-status {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
}

.rb-sports-tournament-status.active {
    background-color: #4CAF50;
    color: white;
}

.rb-sports-tournament-status.upcoming {
    background-color: #2196F3;
    color: white;
}

.rb-sports-tournament-status.completed {
    background-color: #9E9E9E;
    color: white;
}

.rb-sports-market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rb-sports-market-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #c10930;
    transition: transform 0.3s ease;
}

.rb-sports-market-card:hover {
    transform: translateY(-3px);
}

.rb-sports-market-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 8px;
}

.rb-sports-market-card p {
    font-size: 14px;
    color: #5b6b7a;
    margin-bottom: 0;
    line-height: 1.5;
}

.rb-sports-tennis-tips {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 25px;
}

.rb-sports-tennis-tips h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-sports-tennis-tips h4 i {
    color: #2196F3;
}

.rb-sports-tennis-tips p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
    margin-bottom: 0;
}

/* 6. OTHER SPORTS SECTION */
.rb-sports-other {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-sports-other .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rb-sports-other-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.rb-sports-other-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #c10930;
}

.rb-sports-other-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rb-sports-other-icon i {
    color: #c10930;
    font-size: 32px;
}

.rb-sports-other-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-sports-other-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 20px;
}

.rb-sports-other-leagues {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.rb-sports-other-leagues span {
    background-color: #f0f0f0;
    color: #5b6b7a;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* 7. LIVE BETTING SECTION */
.rb-sports-live {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c1c2e 0%, #2a1a2a 100%);
    color: #ffffff;
}

.rb-sports-live .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-live-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.rb-sports-live-features h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.rb-sports-live-feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rb-sports-live-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.rb-sports-live-feature i {
    color: #c10930;
    font-size: 24px;
    margin-top: 5px;
}

.rb-sports-live-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.rb-sports-live-feature p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 0;
}

.rb-sports-live-demo {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.rb-sports-live-match {
    background-color: rgba(10, 10, 20, 0.7);
    border-radius: 10px;
    overflow: hidden;
}

.rb-sports-live-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(193, 9, 48, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rb-sports-live-match-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.rb-sports-live-badge {
    background-color: #FF5722;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.rb-sports-live-match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

.rb-sports-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.rb-sports-team span {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.rb-sports-team strong {
    font-size: 18px;
    color: #cccccc;
}

.rb-sports-vs {
    padding: 0 20px;
    font-size: 14px;
    color: #cccccc;
    font-weight: 600;
}

.rb-sports-live-markets {
    padding: 0 20px 20px;
}

.rb-sports-live-market {
    margin-bottom: 20px;
}

.rb-sports-live-market span {
    display: block;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
}

.rb-sports-live-odds {
    display: flex;
    gap: 10px;
}

.rb-sports-odd-btn {
    flex: 1;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rb-sports-odd-btn:hover {
    background-color: rgba(193, 9, 48, 0.5);
    border-color: #c10930;
}

.rb-sports-live-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #999999;
}

.rb-sports-live-note i {
    color: #4CAF50;
}

/* 8. FEATURES SECTION */
.rb-sports-features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rb-sports-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rb-sports-feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.rb-sports-feature-card:hover {
    transform: translateY(-5px);
}

.rb-sports-feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.rb-sports-feature-icon i {
    color: #c10930;
    font-size: 36px;
}

.rb-sports-feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-sports-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 0;
}

/* 9. GUIDE SECTION */
.rb-sports-guide {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-sports-guide .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-guide-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.rb-sports-guide-step {
    display: flex;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #c10930;
}

.rb-sports-step-number {
    width: 50px;
    height: 50px;
    background-color: #c10930;
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.rb-sports-step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

.rb-sports-step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 0;
}

.rb-sports-guide-tips {
    background-color: #fffaf0;
    border-radius: 12px;
    padding: 35px;
    border: 2px solid #ffcc00;
}

.rb-sports-guide-tips h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-sports-guide-tips h4 i {
    color: #ffcc00;
}

.rb-sports-guide-tips ul {
    list-style-type: none;
    padding-left: 0;
}

.rb-sports-guide-tips li {
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.rb-sports-guide-tips li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c10930;
    font-size: 24px;
    line-height: 1;
}

/* 10. FAQ SECTION */
.rb-sports-faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rb-sports-faq .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-sports-faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rb-sports-faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rb-sports-faq-item summary {
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 60px;
    transition: background-color 0.2s ease;
}

.rb-sports-faq-item summary:hover {
    background-color: #f9f9f9;
}

.rb-sports-faq-item summary::-webkit-details-marker {
    display: none;
}

.rb-sports-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #c10930;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.rb-sports-faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.rb-sports-faq-item p {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a1c28;
    margin: 0;
}

/* 11. CTA SECTION */
.rb-sports-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #c10930 0%, #9e0726 100%);
    color: #ffffff;
    text-align: center;
}

.rb-sports-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.rb-sports-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
}

.rb-sports-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rb-sports-cta-main {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    background-color: #ffffff;
    color: #c10930;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rb-sports-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: #ffcc00;
    color: #1c2b36;
}

.rb-sports-whatsapp {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-sports-whatsapp:hover {
    background-color: #ffffff;
    color: #c10930;
    transform: translateY(-3px);
}

.rb-sports-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.rb-sports-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.rb-sports-cta-feature i {
    color: #ffcc00;
}

/* FOOTER STYLES */
.site-footer {
    background-color: #2a0d14;
    color: #ffffff;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #e5a3b2;
    margin-bottom: 0;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #c10930;
    transform: translateY(-3px);
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .rb-sports-hero h1 {
        font-size: 42px;
    }
    
    .rb-sports-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rb-sports-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .rb-sports-hero {
        padding: 80px 0 60px;
    }
    
    .rb-sports-hero h1 {
        font-size: 36px;
    }
    
    .rb-sports-hero-subtitle {
        font-size: 18px;
    }
    
    .rb-sports-intro-highlights {
        grid-template-columns: 1fr;
    }
    
    .rb-sports-content-grid,
    .rb-sports-content-grid.reversed,
    .rb-sports-tennis-content,
    .rb-sports-live-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rb-sports-guide-steps {
        grid-template-columns: 1fr;
    }
    
    .rb-sports-cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .rb-sports-hero {
        padding: 60px 0 40px;
    }
    
    .rb-sports-hero h1 {
        font-size: 32px;
    }
    
    .rb-sports-hero-subtitle {
        font-size: 16px;
    }
    
    .rb-sports-hero-stats {
        gap: 20px;
    }
    
    .rb-sports-stat-number {
        font-size: 36px;
    }
    
    .rb-sports-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rb-sports-cta,
    .rb-sports-register {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    
    .rb-sports-section-header h2 {
        font-size: 30px;
        flex-direction: column;
        gap: 10px;
    }
    
    .rb-sports-tournament-grid,
    .rb-sports-market-grid,
    .rb-sports-league-list {
        grid-template-columns: 1fr;
    }
    
    .rb-sports-other-grid {
        grid-template-columns: 1fr;
    }
    
    .rb-sports-features-grid {
        grid-template-columns: 1fr;
    }
    
    .rb-sports-guide-step {
        flex-direction: column;
        text-align: center;
    }
    
    .rb-sports-step-number {
        margin: 0 auto 15px;
    }
    
    .rb-sports-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rb-sports-cta-main,
    .rb-sports-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .rb-sports-cta-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .rb-sports-hero h1 {
        font-size: 28px;
    }
    
    .rb-sports-stat-number {
        font-size: 32px;
    }
    
    .rb-sports-section-header h2 {
        font-size: 26px;
    }
    
    .rb-sports-content-text h3,
    .rb-sports-tennis-tournaments h3,
    .rb-sports-tennis-markets h3,
    .rb-sports-live-features h3 {
        font-size: 24px;
    }
    
    .rb-sports-cta-content h2 {
        font-size: 30px;
    }
    
    .rb-sports-faq-item summary {
        font-size: 16px;
        padding: 20px 50px 20px 20px;
    }
    
    .rb-sports-faq-item p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}