/* Casino Affiliate Theme - Custom Styles */

/* Disable native smooth scroll to avoid conflicts */
html {
    scroll-behavior: auto;
}

/* Casino Logo Styling */
.casino-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.casino-logo-image:hover {
    transform: scale(1.05);
}

.casino-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 2em;
    border-radius: 8px;
    min-height: 60px;
}

/* Enhanced Casino Cards - Matching Image Design */
.casino-card-enhanced {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}


.casino-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.casino-card-main {
    display: flex;
    flex-direction: row;
    order: 1;
}

/* Left Panel - Branding */
.casino-card-left {
    flex: 0 0 200px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.casino-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #48bb78;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.casino-logo-large {
    width: 100px;
    height: 60px;
    margin: 0 auto 15px auto;
    position: relative;
}

.casino-logo-large img,
.casino-logo-large .casino-logo-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.casino-name-large {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.1;
}

.casino-name-large a {
    color: white;
    text-decoration: none;
}

.casino-name-large a:hover {
    color: #e2e8f0;
}


/* Right Panel - Information */
.casino-card-right {
    flex: 1;
    background: white;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Top Section - Rating and RTP */
.casino-top-section {
    background: white;
    padding: 15px 20px;
}

.rating-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.rating-stars {
    color: #fbbf24;
    font-size: 18px;
}

.rating-number {
    font-weight: 600;
    color: #2d3748;
    font-size: 16px;
}

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

.rtp-label {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.rtp-bar {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rtp-segments {
    display: flex;
    gap: 2px;
}

.rtp-segment {
    width: 12px;
    height: 8px;
    border-radius: 2px;
}

.rtp-segment.red { background: #e53e3e; }
.rtp-segment.green { background: #38a169; }
.rtp-segment.grey { background: #a0aec0; }

.rtp-arrows {
    display: flex;
    gap: 5px;
}

.rtp-arrow-down, .rtp-arrow-up {
    font-size: 12px;
    color: #4a5568;
}

/* Bonus Section */
.casino-bonus-section {
    background: white;
    padding: 15px 20px;
}

.bonus-boxes {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.bonus-box {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    min-width: 120px;
}

.bonus-box.spins {
    background: #f8f9fa;
}

.bonus-label {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 700;
    color: #00b0b0;
}

.bonus-box.spins .bonus-amount {
    color: #6a1b9a;
}

/* Action Buttons */
.casino-actions {
    background: white;
    padding: 15px 20px;
    text-align: center;
}

.casino-get-bonus {
    background: #00b0b0;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 10px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-get-bonus:hover {
    background: #009999;
    color: white;
}

.casino-review-link {
    color: #2d3748;
    text-decoration: underline;
    font-size: 14px;
    display: block;
    margin-top: 10px;
}

.casino-review-link:hover {
    color: #667eea;
}

/* Bottom Section - Details and Payment Methods */
.casino-bottom-section {
    background: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.casino-details {
    flex: 1;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 5px;
}

.detail-label {
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: #2d3748;
}

/* Payment Methods Carousel */
.payment-methods-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-nav {
    display: flex;
    gap: 5px;
}

.payment-arrow {
    background: none;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.payment-arrow:hover {
    background: #e2e8f0;
}

.payment-methods-container {
    overflow: hidden;
    width: 120px;
}

.payment-methods-scroll {
    display: flex;
    transition: transform 0.3s ease;
    gap: 10px;
}

.payment-methods-scroll img {
    width: 30px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

/* Show More Toggle */
.show-more-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.show-more-toggle:hover {
    color: #2d3748;
}

.toggle-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.show-more-toggle.active .toggle-arrow {
    transform: rotate(90deg);
}

.casino-top-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.casino-features {
    margin-bottom: 20px;
}

.casino-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-features li {
    padding: 4px 0;
    color: #2d3748;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.casino-features li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-section .rating-stars {
    color: #fbbf24;
    font-size: 16px;
}

.rating-section .rating-number {
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.info-icon {
    font-size: 16px;
}

.info-text {
    color: #4a5568;
    font-weight: 500;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.info-icon {
    font-size: 16px;
}

.info-label {
    color: #6b7280;
}

.info-value {
    font-weight: 600;
    color: #2d3748;
}

.casino-bonus-offers {
    display: flex;
    gap: 15px;
    padding: 25px 30px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.bonus-box {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.bonus-label {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 700;
    color: #00b0b0;
}

.bonus-amount.spins {
    color: #6a1b9a;
}

.casino-actions {
    padding: 25px 30px;
    background: #ffffff;
}

.casino-get-bonus {
    background: #00b0b0;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 10px;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.casino-get-bonus:hover {
    background: #009999;
    color: white;
}

.casino-review-link {
    color: #2d3748;
    text-decoration: underline;
    font-size: 14px;
}

.casino-review-link:hover {
    color: #667eea;
}

.show-more-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 15px 30px;
    background: #f5f5f5;
    border-top: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.show-more-toggle:hover {
    background: #e2e8f0;
}

.toggle-text {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.toggle-arrow {
    color: #4a5568;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.show-more-toggle.active .toggle-arrow {
    transform: rotate(90deg);
}
/* Payment Methods Carousel - KOMPLET FIX */
.payment-methods-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.payment-arrow {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    flex-shrink: 0;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.payment-arrow:hover:not(:disabled) {
    background: #e0e0e0;
    color: #333;
}

.payment-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f5f5f5;
}

.payment-methods-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 250px;
}

.payment-methods-scroll {
    display: flex;
    transition: transform 0.3s ease;
    gap: 12px;
}

/* VIGTIGT: Kun ikoner, ingen tekst */
.payment-methods-scroll .payment-icon {
    height: 32px;
    width: auto;
    max-width: 70px;
    min-width: 50px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    border-radius: 4px;
}

.payment-methods-scroll .payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    height: 32px;
    min-width: 50px;
    max-width: 70px;
    text-align: center;
    line-height: 1.2;
}

/* Skjul alt tekst efter ikoner */
.payment-methods-scroll img + *:not(img),
.payment-methods-scroll .payment-icon + *:not(.payment-icon):not(.payment-badge) {
    display: none !important;
}

/* Legacy payment methods display */
.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-methods .payment-icon {
    height: 24px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.payment-methods .payment-icon:hover {
    transform: scale(1.1);
}

.payment-methods .payment-badge {
    background: #e2e8f0;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.payment-more {
    background: #cbd5e0;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}
/* Expanded Details */
.casino-details-expanded {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    animation: slideDown 0.3s ease-out;
    width: 100%;
    flex: 0 0 auto;
    order: 2;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.details-tabs {
    padding: 0;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: #2d3748;
    border-bottom-color: #00b0b0;
    background: #f8f9fa;
}

.tab-btn:hover {
    color: #2d3748;
    background: #f8f9fa;
}

.tab-content {
    padding: 20px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.detail-label {
    font-weight: 500;
    color: #4a5568;
}

.detail-value {
    font-weight: 600;
    color: #2d3748;
}

.detail-value.no {
    color: #e53e3e;
    font-size: 18px;
}

/* Footer Information */
.casino-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
}

.casino-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #f5f5f5;
    border-top: 1px solid #e2e8f0;
}

.license-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.license-icon {
    font-size: 18px;
}

.license-text {
    font-size: 13px;
    color: #4a5568;
}

.payment-methods-container {
    flex: 1;
    max-width: 300px;
    margin-left: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.info-icon {
    font-size: 16px;
}

.info-label {
    color: #718096;
}

.info-value {
    font-weight: 600;
    color: #2d3748;
}

.rating-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-right: 5px;
}

.rating-number {
    font-weight: 700;
    color: #2d3748;
}

.payment-methods-carousel {
    flex: 1;
    min-width: 150px;
}

.payment-methods-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.payment-methods-scroll::-webkit-scrollbar {
    display: none;
}

.payment-methods-scroll .payment-icon {
    width: 32px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.show-more-toggle {
    cursor: pointer;
    color: #667eea;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    user-select: none;
}

.show-more-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #5a67d8;
}

.toggle-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.show-more-toggle.active .toggle-arrow {
    transform: rotate(90deg);
}


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

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

.details-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

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

.detail-label {
    color: #718096;
    font-size: 13px;
    flex: 1;
}

.detail-value {
    font-weight: 600;
    color: #2d3748;
    font-size: 13px;
    text-align: right;
    min-width: 80px;
}

/* Legacy Casino Cards (for backward compatibility) */
.casino-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

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

.casino-logo {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    position: relative;
}

.casino-logo img,
.casino-logo .casino-logo-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.casino-info {
    flex-grow: 1;
}

.casino-name {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.casino-name a {
    color: #2d3748;
    text-decoration: none;
}

.casino-name a:hover {
    color: #667eea;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

.casino-rank {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.casino-card-body {
    margin-bottom: 15px;
}

.casino-bonus {
    background: #f7fafc;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.bonus-label {
    font-weight: 600;
    color: #2d3748;
}

.bonus-value {
    color: #667eea;
    font-weight: 500;
}

.casino-payment-methods {
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.payment-icon {
    width: 24px;
    height: 16px;
    object-fit: contain;
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
}

.payment-badge {
    background: #e2e8f0;
    color: #4a5568;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.payment-more {
    background: #cbd5e0;
    color: #4a5568;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.casino-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.casino-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.casino-stats {
    font-size: 12px;
    color: #999;
}

.casino-actions {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-secondary:hover {
    background: #cbd5e0;
    color: #4a5568;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-large {
    padding: 12px 24px;
    font-size: 16px;
}

/* Single Casino Page */
.single-casino-content {
    max-width: 800px;
    margin: 0 auto;
}

.casino-header {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.casino-logo-large {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    position: relative;
}

.casino-logo-large img,
.casino-logo-large .casino-logo-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.casino-main-info {
    flex-grow: 1;
}

.casino-main-info h1 {
    margin: 0 0 15px 0;
    color: #2d3748;
}

.casino-rating-large {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-number {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
}

.casino-bonus-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bonus-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.bonus-value {
    font-size: 18px;
    font-weight: 600;
}

.casino-quick-facts {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.casino-quick-facts h2 {
    margin: 0 0 20px 0;
    color: #2d3748;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.fact-item strong {
    color: #4a5568;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.pros, .cons {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pros h3, .cons h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
}

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

.pros li, .cons li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

.casino-full-review {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.casino-full-review h2 {
    margin: 0 0 20px 0;
    color: #2d3748;
}

.casino-cta-bottom {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Comparison Table */
.casino-comparison-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

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

.comparison-table th {
    background: #f7fafc;
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.casino-row:hover {
    background: #f7fafc;
}

.rank {
    text-align: center;
    font-weight: 600;
    color: #667eea;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-logo-small {
    width: 40px;
    height: 30px;
    flex-shrink: 0;
}

.casino-logo-small img,
.casino-logo-small .casino-logo-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.casino-details h4 {
    margin: 0;
    font-size: 14px;
}

.casino-details a {
    color: #2d3748;
    text-decoration: none;
}

.casino-details a:hover {
    color: #667eea;
}

.rating-stars {
    margin-bottom: 5px;
}

.rating-number {
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

/* Archive Grid */
.casino-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.post-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-title {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.post-title a {
    color: #2d3748;
    text-decoration: none;
}

.post-title a:hover {
    color: #667eea;
}

.post-meta {
    color: #999;
    font-size: 12px;
    margin-bottom: 10px;
}

.post-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #667eea;
    color: white;
}

/* Content Sidebar Navigation Layout */
.content-sidebar-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex-direction: row;
}

.content-sidebar {
    flex: 0 0 280px;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    order: 1;
    z-index: 10;
    overflow-y: auto;
}

.content-main {
    flex: 1;
    min-width: 0;
    order: 2;
}

/* Sidebar Navigation Styling */
.content-sidebar-navigation {
    padding: 20px;
}

.sidebar-navigation-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-navigation-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-navigation-menu .nav-item {
    margin-bottom: 0;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-navigation-menu .nav-item:last-child {
    border-bottom: none;
}

.sidebar-navigation-menu .nav-link {
    display: block;
    padding: 12px 0;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-navigation-menu .nav-link:hover {
    color: #667eea;
    padding-left: 8px;
}

.sidebar-navigation-menu .nav-link.active {
    color: #667eea;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 6px;
    padding: 12px 8px;
    margin: 0 -8px;
}

/* Different heading levels styling */
.nav-level-1 .nav-link {
    font-weight: 700;
    color: #2d3748;
    font-size: 15px;
    padding: 14px 0;
}

.nav-level-2 .nav-link {
    font-weight: 500;
    color: #4a5568;
    font-size: 14px;
    padding: 12px 0;
    padding-left: 16px;
    border-left: 2px solid #e2e8f0;
    margin-left: 8px;
}

/* Active state indicator */
.sidebar-navigation-menu .nav-link.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* No headings message */
.sidebar-navigation-menu .no-headings {
    color: #718096;
    font-style: italic;
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Page content with sidebar */
.page-content-with-sidebar,
.single-content-with-sidebar {
    padding: 40px 0;
}

/* Hybrid Layout Styling */
.page-content-hybrid,
.single-content-hybrid {
    padding: 0;
}

/* Intro Section - Full Width */
.page-intro-section,
.single-intro-section {
    padding: 60px 0;
}

.page-intro-content,
.single-intro-content {
    padding: 40px;
    border-radius: 12px;
    margin-top: 20px;
}

/* Main Section with Sidebar */
.page-main-section,
.single-main-section {
    padding: 40px 0;
}

.page-main-content,
.single-main-content {
    padding: 0;
}

/* Enhanced intro section styling */
.page-intro-section .page-title,
.single-intro-section .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.page-intro-section .entry-meta,
.single-intro-section .entry-meta {
    text-align: center;
    margin-bottom: 30px;
    color: #718096;
}

.page-intro-section .entry-thumbnail,
.single-intro-section .entry-thumbnail {
    text-align: center;
    margin-bottom: 30px;
}

.page-intro-section .entry-thumbnail img,
.single-intro-section .entry-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .casino-header {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-logo-large {
        width: 150px;
        height: 90px;
        margin: 0 auto;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 5px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .casino-actions {
        flex-direction: column;
    }
    
    .casino-card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .casino-rank {
        position: static;
        align-self: center;
    }
    
    /* Enhanced Casino Cards Responsive */
    .casino-card-enhanced {
        flex-direction: column;
        min-height: auto;
    }
    
    .casino-card-left {
        flex: none;
        padding: 20px;
        min-height: 150px;
    }
    
    .casino-logo-large {
        width: 80px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .casino-name-large {
        font-size: 20px;
    }
    
    .casino-card-right {
        padding: 20px;
    }
    
    .casino-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-methods-carousel {
        width: 100%;
        min-width: auto;
    }
    
    .show-more-toggle {
        margin-left: 0;
        align-self: flex-start;
    }
    
    /* Sidebar Navigation Responsive */
    .content-sidebar-layout {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .content-sidebar {
        flex: none;
        position: static;
        order: -1;
        max-height: none;
        overflow-y: visible;
    }
    
    .content-sidebar-navigation {
        margin-bottom: 20px;
    }
    
    .sidebar-navigation-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .sidebar-navigation-menu .nav-link {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .nav-level-3 .nav-link,
    .nav-level-4 .nav-link,
    .nav-level-5 .nav-link,
    .nav-level-6 .nav-link {
        font-size: 12px;
    }
    
    .sidebar-navigation-menu .nav-link.active::before {
        display: none;
    }
    
    /* Hybrid Layout Responsive */
    .page-intro-section,
    .single-intro-section {
        padding: 40px 0;
    }
    
    .page-intro-content,
    .single-intro-content {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .page-intro-section .page-title,
    .single-intro-section .entry-title {
        font-size: 2rem;
    }
    
    .page-main-section,
    .single-main-section {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .content-sidebar-layout {
        padding: 15px 10px;
    }
    
    .content-sidebar-navigation {
        padding: 15px;
    }
    
    .sidebar-navigation-menu .nav-link {
        font-size: 12px;
        padding: 8px 0;
    }
    
    /* Hybrid Layout Mobile */
    .page-intro-section,
    .single-intro-section {
        padding: 30px 0;
    }
    
    .page-intro-content,
    .single-intro-content {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .page-intro-section .page-title,
    .single-intro-section .entry-title {
        font-size: 1.75rem;
    }
}

/* Casino Licenses Styling */
.casino-licenses {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.license-flag {
    height: 20px;
    width: auto;
    max-width: 32px;
    min-width: 28px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.license-flag:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.license-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
}

/* License display in info sections */
.casino-license-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-license-info .casino-licenses {
    flex: 1;
}

.license-label {
    font-size: 13px;
    color: #718096;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .license-flag {
        height: 16px;
        max-width: 28px;
        min-width: 24px;
    }
}


/* Casino Comparison Table - Komplet Styling */

.casino-comparison-wrapper {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.casino-comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

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

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th.col-rank {
    width: 50px;
    text-align: center;
}

.comparison-table th.col-casino {
    min-width: 180px;
}

.comparison-table th.col-rating {
    width: 120px;
}

.comparison-table th.col-bonus {
    min-width: 150px;
}

.comparison-table th.col-deposit {
    width: 100px;
}

.comparison-table th.col-license {
    width: 120px;
}

.comparison-table th.col-payment {
    min-width: 180px;
}

.comparison-table th.col-actions {
    min-width: 180px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f7fafc;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 20px 12px;
    vertical-align: middle;
    font-size: 14px;
}

/* Rank Column */
.comparison-table .rank {
    text-align: center;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
}

/* Casino Info Column */
.casino-info-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.casino-logo-small {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 5px;
    overflow: hidden;
}

.casino-logo-small img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-logo-fallback {
    font-size: 20px;
}

.casino-details {
    flex: 1;
}

.casino-name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.casino-name a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
}

.casino-name a:hover {
    color: #667eea;
}

/* Rating Column */
.rating-display-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 16px;
    line-height: 1;
}

.rating-number {
    font-weight: 600;
    color: #667eea;
    font-size: 13px;
}

.no-rating {
    color: #cbd5e0;
    font-size: 18px;
}

/* Bonus Column */
.bonus-text {
    display: block;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.4;
}

.no-bonus {
    color: #cbd5e0;
    font-size: 18px;
}

/* Deposit Column */
.deposit-amount {
    font-weight: 600;
    color: #2d3748;
}

.no-deposit {
    color: #cbd5e0;
    font-size: 18px;
}

/* License Column */
.casino-licenses-table {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.casino-licenses-table .license-flag {
    height: 18px;
    width: auto;
    max-width: 28px;
}

.no-license {
    color: #cbd5e0;
    font-size: 18px;
}

/* Payment Methods Column */
.payment-methods-table {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.payment-methods-table .payment-icon {
    height: 24px;
    width: auto;
    max-width: 45px;
}

.payment-methods-table .payment-badge {
    font-size: 10px;
    padding: 4px 6px;
    height: 24px;
}

.no-payment {
    color: #cbd5e0;
    font-size: 18px;
}

/* Actions Column */
.action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    min-width: 80px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .casino-comparison-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 1000px;
    }
}

@media (max-width: 768px) {
    .casino-comparison-wrapper {
        margin: 20px -15px;
        border-radius: 0;
    }
    
    .casino-comparison-table {
        border-radius: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .rank-badge {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .casino-logo-small {
        width: 50px;
        height: 38px;
    }
    
    .casino-name {
        font-size: 13px;
    }
    
    .rating-stars {
        font-size: 14px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
        min-width: 70px;
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Mobile Card View (under 600px) */
@media (max-width: 600px) {
    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr {
        display: block;
    }
    
    .comparison-table {
        min-width: 0;
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .casino-row {
        margin-bottom: 20px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .casino-row:hover {
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .comparison-table td:last-child {
        border-bottom: none;
    }
    
    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #4a5568;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.5px;
        margin-right: 10px;
    }
    
    .comparison-table td.rank::before {
        content: 'Rang';
    }
    
    .comparison-table td.casino-info::before {
        content: '';
    }
    
    .comparison-table td.rating::before {
        content: 'Rating';
    }
    
    .comparison-table td.bonus::before {
        content: 'Bonus';
    }
    
    .comparison-table td.min-deposit::before {
        content: 'Min. Deposit';
    }
    
    .comparison-table td.license::before {
        content: 'Licens';
    }
    
    .comparison-table td.payment-methods::before {
        content: 'Betalingsmetoder';
    }
    
    .comparison-table td.actions::before {
        content: '';
    }
    
    .comparison-table td.casino-info {
        background: #f7fafc;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .comparison-table td.actions {
        padding: 15px;
        background: #f7fafc;
    }
    
    .action-buttons {
        width: 100%;
    }
    
    .action-buttons .btn {
        flex: 1;
    }
}
/* Payment Methods Carousel - KOMPLET FIX */
.payment-methods-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.payment-arrow {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    flex-shrink: 0;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.payment-arrow:hover {
    background: #e0e0e0;
    color: #333;
}

.payment-methods-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 250px;
}

.payment-methods-scroll {
    display: flex;
    transition: transform 0.3s ease;
    gap: 12px;
}

/* VIGTIGT: Kun ikoner, ingen tekst */
.payment-methods-scroll .payment-icon {
    height: 32px;
    width: auto;
    max-width: 70px;
    min-width: 50px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    border-radius: 4px;
}

.payment-methods-scroll .payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    height: 32px;
    min-width: 50px;
    max-width: 70px;
    text-align: center;
    line-height: 1.2;
}

/* Skjul alt tekst efter ikoner */
.payment-methods-scroll img + *:not(img),
.payment-methods-scroll .payment-icon + *:not(.payment-icon):not(.payment-badge) {
    display: none !important;
}

/* Legacy payment methods display */
.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-methods .payment-icon {
    height: 24px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.payment-methods .payment-icon:hover {
    transform: scale(1.1);
}

.payment-methods .payment-badge {
    background: #e2e8f0;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.payment-more {
    background: #cbd5e0;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

/* Casino Card Bottom Section - Fixed Widths */
.casino-bottom-section {
    background: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Details area - fills remaining space */
.casino-details {
    flex: 1;
    min-width: 0; /* Allows flex item to shrink */
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 5px;
}

.detail-label {
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: #2d3748;
}

/* Payment Methods Carousel - Fixed 80px width */
.payment-methods-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 80px;
    flex-shrink: 0;
}

.payment-arrow {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    flex-shrink: 0;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.payment-arrow:hover {
    background: #e0e0e0;
    color: #333;
}

.payment-methods-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: calc(80px - 24px - 24px - 16px); /* Total width minus arrows and gaps */
}

.payment-methods-scroll {
    display: flex;
    transition: transform 0.3s ease;
    gap: 8px;
}

.payment-methods-scroll .payment-icon {
    height: 24px;
    width: auto;
    max-width: 40px;
    min-width: 30px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    border-radius: 3px;
}

.payment-methods-scroll .payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    height: 24px;
    min-width: 30px;
    max-width: 40px;
    text-align: center;
    line-height: 1.2;
}

/* Show More Toggle - Fixed 100px width */
.show-more-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #4a5568;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    width: 100px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.show-more-toggle:hover {
    color: #2d3748;
}

.toggle-text {
    white-space: nowrap;
}

.toggle-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.show-more-toggle.active .toggle-arrow {
    transform: rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .casino-bottom-section {
        flex-wrap: wrap;
    }
    
    .casino-details {
        flex: 1 1 100%;
        order: 1;
    }
    
    .payment-methods-carousel {
        order: 2;
        width: auto;
        flex: 1;
    }
    
    .show-more-toggle {
        order: 3;
        width: auto;
    }
}

@media (max-width: 768px) {
    .casino-bottom-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .casino-details {
        order: 1;
    }
    
    .payment-methods-carousel {
        order: 2;
        width: 100%;
    }
    
    .payment-methods-container {
        max-width: calc(100% - 48px - 16px);
    }
    
    .show-more-toggle {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}
