/* ============================================
   REDDY BOOK CASINO PAGE STYLES
   Red & White Theme - No Blue Colors
   All classes prefixed with .rb-casino-
   ============================================ */

/* 1. HERO SECTION */
.rb-casino-hero {
    background: linear-gradient(rgba(193, 9, 48, 0.9), rgba(156, 7, 39, 0.95)), 
                url('casino-bg.jpg') center/cover no-repeat;
    padding: 100px 0 80px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

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

.rb-casino-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rb-casino-live-pulse {
    width: 10px;
    height: 10px;
    background-color: #ffcc00;
    border-radius: 50%;
    animation: casinoPulse 1.5s infinite;
}

@keyframes casinoPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

.rb-casino-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-casino-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.rb-casino-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rb-casino-hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rb-casino-hero-feature i {
    font-size: 28px;
    color: #ffcc00;
}

.rb-casino-hero-feature span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.rb-casino-hero-games {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.rb-casino-hero-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.rb-casino-hero-game:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.rb-casino-hero-game i {
    font-size: 36px;
    color: #ffcc00;
}

.rb-casino-hero-game span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

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

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

.rb-casino-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #ff9900, #ffcc00);
}

.rb-casino-register {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffcc00;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rb-casino-register:hover {
    background: #ffcc00;
    color: #1c2b36;
    transform: translateY(-3px);
}

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

.rb-casino-hero-note i {
    color: #ffcc00;
}

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

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

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

.rb-casino-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

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

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

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

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

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

.rb-casino-intro-text p strong {
    color: #c10930;
}

.rb-casino-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.rb-casino-stat {
    text-align: center;
    padding: 25px 20px;
    background-color: #fff5f7;
    border-radius: 12px;
    border-top: 5px solid #c10930;
}

.rb-casino-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #c10930;
    line-height: 1;
    display: block;
}

.rb-casino-stat-label {
    font-size: 16px;
    color: #7a2a3c;
    margin-top: 10px;
    display: block;
    font-weight: 600;
}

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

.rb-casino-visual-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.rb-casino-visual-header h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin: 0;
}

.rb-casino-feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rb-casino-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.rb-casino-feature-item i {
    color: #c10930;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.rb-casino-feature-item span {
    font-size: 16px;
    color: #4a1c28;
    line-height: 1.5;
}

/* 3. LIVE CASINO SECTION */
.rb-casino-live {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.rb-casino-live-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.rb-casino-live-intro h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 20px;
}

.rb-casino-live-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a1c28;
    margin-bottom: 40px;
}

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

.rb-casino-benefit {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-top: 5px solid #c10930;
}

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

.rb-casino-benefit h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

.rb-casino-benefit p {
    font-size: 15px;
    color: #5b6b7a;
    margin-bottom: 0;
    line-height: 1.5;
}

.rb-casino-live-tables h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 30px;
}

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

.rb-casino-table-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 5px solid #c10930;
}

.rb-casino-table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rb-casino-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff5f7;
    border-bottom: 1px solid #f0f0f0;
}

.rb-casino-table-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin: 0;
}

.rb-casino-table-status {
    background-color: #c10930;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.rb-casino-table-info {
    padding: 20px;
}

.rb-casino-table-dealer,
.rb-casino-table-limits,
.rb-casino-table-variant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.rb-casino-table-dealer:last-child,
.rb-casino-table-limits:last-child,
.rb-casino-table-variant:last-child {
    border-bottom: none;
}

.rb-casino-table-dealer span:first-child,
.rb-casino-table-limits span:first-child,
.rb-casino-table-variant span:first-child {
    font-size: 14px;
    color: #7a2a3c;
    font-weight: 500;
}

.rb-casino-table-dealer span:last-child,
.rb-casino-table-limits span:last-child,
.rb-casino-table-variant span:last-child {
    font-size: 14px;
    color: #1c2b36;
    font-weight: 600;
}

.rb-casino-join-table {
    width: 100%;
    background-color: #c10930;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rb-casino-join-table:hover {
    background-color: #9e0726;
}

/* 4. INDIAN CASINO GAMES */
.rb-casino-indian {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.rb-casino-indian-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.rb-casino-indian-game {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.rb-casino-indian-game.spotlight {
    border: 2px solid #c10930;
}

.rb-casino-game-visual {
    background: linear-gradient(135deg, #c10930, #e11245);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.rb-casino-game-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.rb-casino-game-icon i {
    font-size: 50px;
    color: #ffffff;
}

.rb-casino-game-visual h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rb-casino-game-popularity {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.rb-casino-game-details {
    padding: 40px 30px;
}

.rb-casino-game-details h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 20px;
}

.rb-casino-game-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a1c28;
    margin-bottom: 25px;
}

.rb-casino-game-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rb-casino-game-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-casino-game-feature i {
    color: #c10930;
    font-size: 20px;
}

.rb-casino-game-feature span {
    font-size: 15px;
    color: #5b6b7a;
    font-weight: 500;
}

.rb-casino-game-rules {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #c10930;
}

.rb-casino-game-rules h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-casino-game-rules ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.rb-casino-game-rules li {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.rb-casino-game-rules li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c10930;
    font-size: 20px;
    line-height: 1;
}

.rb-casino-game-actions {
    display: flex;
    gap: 20px;
}

.rb-casino-indian-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.rb-casino-indian-game-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-top: 5px solid #c10930;
    transition: all 0.3s ease;
}

.rb-casino-indian-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rb-casino-game-card-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-casino-game-card-icon i {
    color: #c10930;
    font-size: 32px;
}

.rb-casino-indian-game-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-casino-indian-game-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 20px;
}

.rb-casino-game-card-tag {
    display: inline-block;
    background-color: #fff5f7;
    color: #c10930;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.rb-casino-game-variants {
    margin-bottom: 25px;
}

.rb-casino-game-variants h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-casino-variants-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rb-casino-variant {
    background-color: #f9f9f9;
    color: #5b6b7a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.rb-casino-game-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.rb-casino-game-stat {
    text-align: center;
    padding: 15px 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.rb-casino-game-stat span {
    display: block;
    font-size: 13px;
    color: #7a2a3c;
    margin-bottom: 5px;
}

.rb-casino-game-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #c10930;
}

/* 5. INTERNATIONAL CASINO GAMES */
.rb-casino-international {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.rb-casino-international-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.rb-casino-game-category {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.rb-casino-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: #fff5f7;
    border-bottom: 1px solid #f0f0f0;
}

.rb-casino-category-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-casino-category-header h3 i {
    color: #c10930;
}

.rb-casino-category-count {
    background-color: #c10930;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
}

.rb-casino-category-games {
    padding: 25px;
}

.rb-casino-variant {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.rb-casino-variant:last-child {
    margin-bottom: 0;
}

.rb-casino-variant h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 8px;
}

.rb-casino-variant p {
    font-size: 14px;
    color: #5b6b7a;
    margin-bottom: 10px;
    line-height: 1.5;
}

.rb-casino-variant-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff5f7;
    color: #c10930;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.rb-casino-game-stats-overview {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.rb-casino-game-stats-overview h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 30px;
    text-align: center;
}

.rb-casino-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.rb-casino-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 5px solid #c10930;
}

.rb-casino-stat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rb-casino-stat-icon i {
    color: #c10930;
    font-size: 28px;
}

.rb-casino-stat-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 5px;
}

.rb-casino-stat-details p {
    font-size: 14px;
    color: #5b6b7a;
    margin-bottom: 0;
    line-height: 1.5;
}

/* 6. SLOTS SECTION */
.rb-casino-slots {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.rb-casino-slots-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.rb-casino-slots-intro h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 20px;
}

.rb-casino-slots-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a1c28;
}

.rb-casino-slots-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.rb-casino-slots-category {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.rb-casino-slots-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: #fff5f7;
    border-bottom: 1px solid #f0f0f0;
}

.rb-casino-slots-category-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-casino-slots-category-header h4 i {
    color: #c10930;
}

.rb-casino-slots-count {
    background-color: #c10930;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
}

.rb-casino-slots-list {
    padding: 25px;
}

.rb-casino-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
}

.rb-casino-slot:last-child {
    margin-bottom: 0;
}

.rb-casino-slot-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 5px;
}

.rb-casino-slot-info p {
    font-size: 14px;
    color: #5b6b7a;
    margin-bottom: 0;
}

.rb-casino-slot-info p strong {
    color: #c10930;
}

.rb-casino-slot-tag {
    background-color: #fff5f7;
    color: #c10930;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.rb-casino-slots-features {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.rb-casino-slots-features h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 40px;
}

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

.rb-casino-slots-feature {
    text-align: center;
    padding: 25px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border-top: 5px solid #c10930;
}

.rb-casino-slots-feature i {
    font-size: 36px;
    color: #c10930;
    margin-bottom: 20px;
}

.rb-casino-slots-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

.rb-casino-slots-feature p {
    font-size: 14px;
    color: #5b6b7a;
    margin-bottom: 0;
    line-height: 1.5;
}

/* 7. CASINO FEATURES */
.rb-casino-features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

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

.rb-casino-feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-top: 5px solid #c10930;
}

.rb-casino-feature-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-bottom: 25px;
}

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

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

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

.rb-casino-feature-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.rb-casino-feature-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

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

/* 8. BONUSES SECTION */
.rb-casino-bonuses {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.rb-casino-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.rb-casino-bonus-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.rb-casino-bonus-card.highlight {
    border: 2px solid #c10930;
}

.rb-casino-bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: #fff5f7;
    border-bottom: 1px solid #f0f0f0;
}

.rb-casino-bonus-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin: 0;
}

.rb-casino-bonus-tag {
    background-color: #c10930;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.rb-casino-bonus-details {
    padding: 30px 25px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.rb-casino-bonus-amount {
    text-align: center;
    flex-shrink: 0;
}

.rb-casino-bonus-amount span {
    display: block;
    font-size: 14px;
    color: #7a2a3c;
    margin-bottom: 5px;
}

.rb-casino-bonus-amount strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #c10930;
    line-height: 1;
}

.rb-casino-bonus-info {
    flex: 1;
}

.rb-casino-bonus-info p {
    font-size: 15px;
    color: #4a1c28;
    margin-bottom: 15px;
    line-height: 1.6;
}

.rb-casino-bonus-info ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.rb-casino-bonus-info li {
    font-size: 14px;
    color: #5b6b7a;
    margin-bottom: 5px;
    padding-left: 18px;
    position: relative;
}

.rb-casino-bonus-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c10930;
    font-size: 18px;
    line-height: 1;
}

.rb-casino-claim-bonus {
    width: 100%;
    background-color: #c10930;
    color: white;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rb-casino-claim-bonus:hover {
    background-color: #9e0726;
}

.rb-casino-bonus-terms {
    background-color: #fff5f7;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #c10930;
}

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

.rb-casino-bonus-terms h4 i {
    color: #c10930;
}

.rb-casino-bonus-terms p {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 0;
}

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

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

.rb-casino-guide-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.rb-casino-guide-step {
    display: flex;
    gap: 25px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #c10930;
}

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

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

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

.rb-casino-tips {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 2px solid #c10930;
}

.rb-casino-tips h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-casino-tips h3 i {
    color: #ffcc00;
}

.rb-casino-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.rb-casino-tip {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #c10930;
}

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

.rb-casino-tip p {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 0;
}

/* 10. RESPONSIBLE GAMING */
.rb-casino-responsible {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.rb-casino-responsible-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.rb-casino-responsible-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 20px;
}

.rb-casino-responsible-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a1c28;
    margin-bottom: 40px;
}

.rb-casino-responsible-tools h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 25px;
}

.rb-casino-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.rb-casino-tool {
    text-align: center;
    padding: 25px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-top: 5px solid #c10930;
}

.rb-casino-tool i {
    font-size: 32px;
    color: #c10930;
    margin-bottom: 15px;
}

.rb-casino-tool h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
}

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

.rb-casino-warning-card {
    background-color: #fff5f7;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #ff9900;
}

.rb-casino-warning-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-casino-warning-card h4 i {
    color: #ff9900;
}

.rb-casino-warning-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.rb-casino-warning-card li {
    font-size: 15px;
    line-height: 1.6;
    color: #5b6b7a;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.rb-casino-warning-card li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ff9900;
    font-weight: bold;
}

.rb-casino-help-resources {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
}

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

.rb-casino-help-resources p {
    font-size: 15px;
    color: #5b6b7a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.rb-casino-help-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rb-casino-help-link {
    display: block;
    background-color: #c10930;
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rb-casino-help-link:hover {
    background-color: #9e0726;
}

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

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

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

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

.rb-casino-faq-item[open] {
    border-color: #c10930;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rb-casino-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-casino-faq-item summary:hover {
    background-color: #f9f9f9;
}

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

.rb-casino-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-casino-faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

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

/* 12. CTA SECTION */
.rb-casino-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #c10930 0%, #9e0726 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rb-casino-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('casino-pattern.png') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.rb-casino-cta .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rb-casino-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 25px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.rb-casino-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-casino-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

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

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

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

.rb-casino-cta-main {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #1c2b36;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rb-casino-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #ff9900, #ffcc00);
}

.rb-casino-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-casino-whatsapp:hover {
    background-color: #ffffff;
    color: #c10930;
    transform: translateY(-3px);
}

.rb-casino-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ffcc00;
}

.rb-casino-cta-note i {
    color: #ffcc00;
    font-size: 20px;
    flex-shrink: 0;
}

.rb-casino-cta-note span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* 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;
    border-left: 4px solid #c10930;
}

.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-casino-hero h1 {
        font-size: 42px;
    }
    
    .rb-casino-tables-grid,
    .rb-casino-slots-categories,
    .rb-casino-slots-features-grid,
    .rb-casino-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rb-casino-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rb-casino-international-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .rb-casino-hero {
        padding: 80px 0 40px;
    }
    
    .rb-casino-hero h1 {
        font-size: 36px;
    }
    
    .rb-casino-hero-subtitle {
        font-size: 18px;
    }
    
    .rb-casino-hero-games {
        gap: 20px;
    }
    
    .rb-casino-hero-game {
        min-width: 100px;
        padding: 15px;
    }
    
    .rb-casino-intro-content,
    .rb-casino-responsible-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rb-casino-indian-game {
        grid-template-columns: 1fr;
    }
    
    .rb-casino-indian-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rb-casino-live-benefits,
    .rb-casino-bonuses-grid,
    .rb-casino-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .rb-casino-cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .rb-casino-hero {
        padding: 60px 0 30px;
    }
    
    .rb-casino-hero h1 {
        font-size: 32px;
    }
    
    .rb-casino-hero-subtitle {
        font-size: 16px;
    }
    
    .rb-casino-hero-features {
        gap: 20px;
    }
    
    .rb-casino-hero-games {
        gap: 15px;
    }
    
    .rb-casino-hero-game {
        min-width: 80px;
        padding: 12px;
    }
    
    .rb-casino-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rb-casino-cta,
    .rb-casino-register {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    
    .rb-casino-section-header h2 {
        font-size: 30px;
    }
    
    .rb-casino-tables-grid,
    .rb-casino-slots-categories,
    .rb-casino-slots-features-grid,
    .rb-casino-stats-grid,
    .rb-casino-indian-games-grid,
    .rb-casino-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .rb-casino-features-grid {
        grid-template-columns: 1fr;
    }
    
    .rb-casino-game-stats {
        grid-template-columns: 1fr;
    }
    
    .rb-casino-guide-step {
        flex-direction: column;
        text-align: center;
    }
    
    .rb-casino-step-number {
        margin: 0 auto 20px;
    }
    
    .rb-casino-game-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rb-casino-game-actions .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .rb-casino-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rb-casino-cta-main,
    .rb-casino-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .rb-casino-cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .rb-casino-cta-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rb-casino-hero h1 {
        font-size: 28px;
    }
    
    .rb-casino-hero-game {
        min-width: 70px;
        padding: 10px;
    }
    
    .rb-casino-hero-game i {
        font-size: 28px;
    }
    
    .rb-casino-hero-game span {
        font-size: 14px;
    }
    
    .rb-casino-section-header h2 {
        font-size: 26px;
    }
    
    .rb-casino-intro-text h3,
    .rb-casino-live-intro h3,
    .rb-casino-live-tables h3,
    .rb-casino-game-details h4,
    .rb-casino-responsible-info h3,
    .rb-casino-slots-intro h3 {
        font-size: 24px;
    }
    
    .rb-casino-cta-content h2 {
        font-size: 30px;
    }
    
    .rb-casino-faq-item summary {
        font-size: 16px;
        padding: 20px 50px 20px 20px;
    }
    
    .rb-casino-faq-item p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}