/* General Styles */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7c52e;
    --accent-color: #2ed9c3;
    --dark-color: #1e2124;
    --darker-color: #121314;
    --light-color: #f8f9fa;
    --gray-color: #e9ecef;
    --text-color: #212529;
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Badge Colors */
    --primary-badge: #ff6b35;
    --sports-badge: #4361ee;
    --crypto-badge: #3a86ff;
    --freespins-badge: #f72585;
    --cashback-badge: #7209b7;
    --reload-badge: #4cc9f0;
    --popular-badge: #f7c52e;
    --new-badge: #2ec4b6;
    --exclusive-badge: #9d4edd;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #e45626;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e45626;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #e5b41d;
    color: var(--dark-color);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.payment-icons {
    background: var(--dark-color);
    padding: 10px;
    border-radius: 5px; 
    margin-bottom: 20px;
}

.payment-icons img {
    width: 64px;
}

/* Header Styles */
header {
    background-color: var(--dark-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    font-weight: 500;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

.header-cta {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    color: white;
    padding: 100px 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.bonus-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bonus-badge.primary {
    background-color: var(--primary-badge);
    color: white;
}

.bonus-badge.sports {
    background-color: var(--sports-badge);
    color: white;
}

.bonus-badge.crypto {
    background-color: var(--crypto-badge);
    color: white;
}

.bonus-badge.freespins {
    background-color: var(--freespins-badge);
    color: white;
}

.bonus-badge.cashback {
    background-color: var(--cashback-badge);
    color: white;
}

.bonus-badge.reload {
    background-color: var(--reload-badge);
    color: white;
}

.bonus-list {
    margin: 20px 0 30px;
}

.bonus-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.bonus-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Bonuses Section */
.bonuses-section {
    background-color: #fff;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.bonus-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-color);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.bonus-card.highlighted {
    border: 2px solid var(--freespins-badge);
}

.bonus-card h3 {
    margin-top: 12px;
    font-size: 1.3rem;
}

.bonus-spotlight {
    background-color: var(--dark-color);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.bonus-spotlight ul {
    margin: 20px 0;
    display: inline-block;
    text-align: left;
}

.bonus-spotlight ul li {
    margin-bottom: 10px;
}

/* Games Section */
.games-section {
    background-color: #f5f7fa;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.game-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-color);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-button {
    opacity: 1;
}

.play-icon {
    color: white;
    font-size: 20px;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.game-badge.popular {
    background-color: var(--popular-badge);
    color: var(--dark-color);
}

.game-badge.new {
    background-color: var(--new-badge);
    color: white;
}

.game-badge.exclusive {
    background-color: var(--exclusive-badge);
    color: white;
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.game-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

.provider {
    font-size: 0.8rem;
    color: #777;
}

.games-cta {
    text-align: center;
    margin-top: 30px;
}

/* Part 2 of CSS file */

/* Author card and Casino Review continued */
.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.author-title {
    color: #777;
    margin-bottom: 15px;
}

.rating {
    margin-top: 20px;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.half-star {
    position: relative;
    display: inline-block;
}

.half-star::after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #e0e0e0;
}

.rating-text {
    font-weight: 600;
    margin-left: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: #f5f7fa;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    padding-bottom: 25px;
}

/* License Section */
.license-section {
    background-color: white;
}

.license-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start;
}

.license-image {
    text-align: center;
}

.license-image img {
    max-width: 200px;
    margin-bottom: 15px;
}

.verification-text {
    font-size: 0.9rem;
    color: #777;
}

.license-link {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Player Reviews Section */
.player-reviews {
    background-color: #f5f7fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.reviewer-name {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.review-date {
    font-size: 0.85rem;
    color: #777;
}

.review-rating .stars {
    font-size: 1.2rem;
}

.empty-star {
    color: #e0e0e0;
}

.review-body {
    margin-bottom: 20px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #f0f0f0;
    font-size: 0.8rem;
    color: #555;
}

/* Support Section */
.support-section {
    background-color: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.support-card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.support-icon {
    margin-bottom: 20px;
}

.support-icon img {
    width: 60px;
    height: 60px;
}

.support-hours {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
}

/* Responsible Gambling Section */
.responsible-section {
    background-color: #f5f7fa;
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer {
    padding: 20px;
    background-color: #fff3cd;
    border-radius: var(--border-radius);
    border-left: 5px solid #ffc107;
    margin-bottom: 30px;
}

.responsible-features {
    margin: 30px 0;
}

.responsible-features ul {
    padding-left: 20px;
}

.responsible-features ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.responsible-features ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.help-resources {
    margin: 30px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.resource-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.resource-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.age-verification {
    display: flex;
    align-items: center;
    background-color: #d1e7dd;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.age-icon {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 10px;
    background-color: #198754;
    color: white;
    border-radius: 5px;
    margin-right: 15px;
}

.age-verification p {
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
}

.cta-content h3 {
    color: #ffd700;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

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

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Reviewed By Section */
.reviewed-section {
    background-color: white;
    padding: 60px 0;
}

.review-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.review-logos img {
    height: 40px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
}

.review-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #adb5bd;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-info img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-info .disclaimer {
    max-width: 700px;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9rem;
}

.footer-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links ul li a {
    color: #adb5bd;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #32383e;
}

.copyright, .responsible-text {
    font-size: 0.9rem;
}

/* Enhanced Table Styles for Betsbunny Casino */

/* Container for both tables */
.tables-container {
    max-width: 800px;
    margin: 40px auto;
    gap: 40px;
}

/* Individual table wrapper */
.table-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.table-wrapper:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Table headings */
.table-wrapper h3 {
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

/* Banking table */
.banking-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 10px;
}

/* Table headers */
.banking-table th {
    background-color: #ffede6; /* Light orange background */
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 16px 20px;
    text-align: left;
    position: relative;
    border-bottom: 2px solid var(--primary-color);
}

.banking-table th:first-child {
    border-top-left-radius: 8px;
}

.banking-table th:last-child {
    border-top-right-radius: 8px;
}

/* Table cells */
.banking-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    transition: background-color 0.2s ease;
}

/* Payment method column - first column */
.banking-table td:first-child {
    font-weight: 600;
    color: #333;
}

/* Min/Max amounts - other columns */
.banking-table td:not(:first-child) {
    color: #555;
}

/* Hover effect on rows */
.banking-table tr:hover td {
    background-color: #f9f9f9;
}

/* Zebra striping for better readability */
.banking-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Last row */
.banking-table tr:last-child td {
    border-bottom: none;
}

.banking-table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.banking-table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

/* Crypto payment methods highlighting */
.banking-table tr td:first-child:contains("Bitcoin"), 
.banking-table tr td:first-child:contains("Ethereum"),
.banking-table tr td:first-child:contains("Litecoin"),
.banking-table tr td:first-child:contains("USDT"),
.banking-table tr td:first-child:contains("USDC") {
    color: var(--crypto-badge);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tables-container {
        padding: 0 15px;
    }
    
    .banking-table th,
    .banking-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .table-wrapper {
        padding: 15px;
        overflow-x: auto;
    }
    
    .banking-table {
        min-width: 450px; /* Ensure table doesn't get too squeezed */
    }
    
    .banking-table th,
    .banking-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.85rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .review-content, .license-content {
        grid-template-columns: 1fr;
    }
    
    .license-image {
        grid-row: 1;
        margin-bottom: 30px;
    }
    
    .tables-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .banking-table {
        font-size: 0.9rem;
    }
    
    .banking-table th,
    .banking-table td {
        padding: 8px 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
}