:root {
    --primary: #1a1f2c;
    --primary-alt: #1e3a8a;
    --accent: #00c6ff;
    --cta: #facc15;
    --light-bg: #dbeafe;
    --light-text: #1e40af;
    --hero-gradient: linear-gradient(to right, #007bff, #00c6ff);
    --card-bg: rgba(255, 255, 255, 0.08);
    --text: #e2e8f0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.display-flex {
    display: flex;
}

nav[aria-label=breadcrumb] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid #e2e8f0;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    position: relative;
}

nav[aria-label=breadcrumb]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9 0%, #3b82f6 50%, #8b5cf6 100%);
}

.middle-screen {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.breadcrumb-item {
    position: relative
}

.breadcrumb-item:not(:last-child):after {
    content: " \\";
    margin-left: .5rem
}

.breadcrumb-item.active:after {
    content: ""
}

.breadcrumb-item {
    margin-right: .5rem
}

.breadcrumb-item a {
    color: #0ea5e9;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.breadcrumb-item a:hover {
    color: #0369a1;
    background: #f0f9ff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ce112b
}

.breadcrumb-item.active {
    color: #1e293b;
    font-weight: 600;
    background: #f8fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.general-template-content h1,
.general-template-content h2,
.general-template-content h3,
.general-template-content h4,
.general-template-content h5,
.general-template-content h6 {
    color: #0ea5e9;
    margin-bottom: 1rem;
}

/*
 * STYLING FOR THE NEW RIGHT-SIDE METADATA
 */

/* Container for the group of three items */
.page-meta-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
}

/* Styling for each individual item (e.g., the "Written By" block) */



/* The top line of each item (icon + label) */


/* Style for the SVG icons */
.meta-item-label svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: #4b5563;
    transition: color 0.2s ease;
}

/* The bottom line of each item (the name or date) */
.meta-item-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0ea5e9;
    transition: all 0.2s ease;
    display: block;
    text-align: center;
}

.meta-item:hover .meta-item-value {
    color: #0ea5e9;
}

/* Make the links underlined */
a.meta-item-value {
    text-decoration: underline;
    color: #0ea5e9;
}

a.meta-item-value:hover {
    text-decoration: none;
    color: #0369a1;
}

/* Enhanced meta item styling */
.meta-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    transition: all 0.2s ease;
}

.meta-item:hover {
    transform: translateY(-1px);
}

.meta-item-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    /* Small font size */
    font-weight: 600;
    color: #4b5563;
    /* Muted gray text color */
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.meta-item:hover .meta-item-label {
    color: #374151;
}

/* Responsive Design for Breadcrumb and Meta Info */
@media (max-width: 768px) {
    nav[aria-label=breadcrumb] {
        padding: 0.75rem 0;
        margin-bottom: 1.5rem;
    }

    .middle-screen {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .breadcrumb {
        font-size: 11px;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .breadcrumb-item {
        margin-right: 0.25rem;
    }

    .breadcrumb-item:not(:last-child):after {
        margin-left: 0.25rem;
    }

    .page-meta-info {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        min-width: auto;
        padding: 0;
    }

    .meta-item {
        flex: 1;
        min-width: 120px;
        max-width: none;
        padding: 0.75rem 1rem;
    }

    .meta-item-label {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .meta-item-label svg {
        width: 14px;
        height: 14px;
    }

    .meta-item-value {
        font-size: 0.85rem;
        flex: 1;
    }
}

@media (max-width: 480px) {
    nav[aria-label=breadcrumb] {
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }

    .middle-screen {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .breadcrumb {
        font-size: 10px;
        gap: 0.2rem;
    }

    .breadcrumb-item {
        margin-right: 0.2rem;
    }

    .breadcrumb-item:not(:last-child):after {
        margin-left: 0.2rem;
    }

    .page-meta-info {
        gap: 0;
        padding: 0;
    }

    .meta-item {
        padding: 0;
        min-width: 100px;
        max-width: none;
        width: 100%;
        text-align: center;
    }

    .meta-item-label {
        font-size: 0.5rem;
        gap: 0.1rem;
    }

    .meta-item-label svg {
        width: 12px;
        height: 12px;
    }

    .meta-item-value {
        font-size: 0.65rem;
    }
}

@media (min-width: 1200px) {
    nav[aria-label=breadcrumb] {
        padding: 1.25rem 0;
        margin-bottom: 2.5rem;
    }

    .middle-screen {
        gap: 2rem;
    }

    .breadcrumb {
        font-size: 13px;
    }

    .page-meta-info {
        gap: 3rem;
    }

    .meta-item-label {
        font-size: 0.75rem;
    }

    .meta-item-label svg {
        width: 18px;
        height: 18px;
    }

    .meta-item-value {
        font-size: 1rem;
    }
}

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0ea5e9;
    text-decoration: none;
}

.logo-dark {
    color: #1a1f2c;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav a:hover {
    color: #0ea5e9;
}

.nav a.active {
    color: #0ea5e9;
    font-weight: 600;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0ea5e9;
    border-radius: 1px;
}

.menu-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.menu-link:hover {
    color: #0ea5e9;
}

.menu-link.active {
    color: #0ea5e9;
    font-weight: 600;
}

.menu-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0ea5e9;
    border-radius: 1px;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Ensure button-like links never show underline */
a.btn,
.btn,
.btn:hover,
.btn-gold,
.btn-gold:hover,
.btn-outline-white,
.btn-outline-white:hover,
.btn-primary,
.btn-primary:hover,
.btn-outline,
.btn-outline:hover,
.btn-blue-outline,
.btn-blue-outline:hover,
.visit-btn,
.visit-btn:hover,
.review-btn,
.review-btn:hover,
.cta-button,
.cta-button:hover,
.cta-button-bonus,
.cta-button-bonus:hover,
.bonus-btn,
.bonus-btn:hover,
.start-button,
.start-button:hover,
.get-bonus-button,
.get-bonus-button:hover {
    text-decoration: none !important;
}

.btn-primary {
    background: linear-gradient(to right, #0ea5e9, #3b82f6);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid #d1d5db;
    background: transparent;
    color: #374151;
}

.btn-outline:hover {
    background: #f3f4f6;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1f2c 0%, #1e3a8a 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffc700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-gold {
    background: #ffc700;
    color: #1a1f2c;
}

.btn-gold:hover {
    background: #eab308;
}

.btn-outline-white {
    border: 1px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-feature {
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-feature svg {
        width: 16px;
        height: 16px;
    }

    .hero-feature span {
        font-size: 0.875rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .casino-box {
        order: -1;
        display: flex;
    }

    .casino-card {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    .casino-title {
        font-size: 1.125rem;
    }

    .casino-image {
        height: 120px;
    }

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

    .btn-casino {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.875rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .hero-feature {
        gap: 0.375rem;
    }

    .hero-feature svg {
        width: 14px;
        height: 14px;
    }

    .hero-feature span {
        font-size: 0.8rem;
    }

    .hero-actions {
        gap: 0.5rem;
    }

    .btn-lg {
        max-width: 260px;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .casino-card {
        max-width: 280px;
        padding: 0.75rem;
    }

    .casino-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .casino-image {
        height: 100px;
        margin-bottom: 0.5rem;
    }

    .rating-section {
        padding: 0 0.25rem;
        margin-bottom: 0.125rem;
    }

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

    .star {
        width: 14px;
        height: 14px;
    }

    .bonus-section {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .bonus-text {
        font-size: 0.7rem;
    }

    .bonus-amount {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .btn-casino {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }

    .disclaimer {
        font-size: 0.7rem;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 5rem 0;
    }

    .hero-grid {
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-features {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-feature {
        gap: 0.75rem;
    }

    .hero-feature svg {
        width: 20px;
        height: 20px;
    }

    .hero-feature span {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 1rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .casino-card {
        width: 18rem;
        padding: 1.5rem;
    }

    .casino-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .casino-image {
        height: 140px;
        margin-bottom: 1rem;
    }

    .rating-section {
        padding: 0 0.75rem;
        margin-bottom: 0.5rem;
    }

    .rating-label {
        font-size: 1rem;
    }

    .star {
        width: 18px;
        height: 18px;
    }

    .bonus-section {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .bonus-text {
        font-size: 0.875rem;
    }

    .bonus-amount {
        font-size: 1rem;
        line-height: 1.3;
    }

    .btn-casino {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .disclaimer {
        font-size: 0.875rem;
    }
}

/* Top Rated Casino Box */
.casino-box {
    display: none;
    justify-content: center;
    align-items: center;
}

.casino-card {
    background: rgba(30, 58, 138, 0.4);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    width: 16rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.casino-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hot-pick-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #e11d48;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.casino-inner {
    background: rgba(30, 64, 175, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: none;
}

.casino-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.casino-image {
    aspect-ratio: 16/9;
    background: rgba(31, 41, 55, 0.8);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.casino-image img {
    border-radius: 0.5rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}

.casino-image:hover img {
    transform: scale(1.1);
}

.rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    padding: 0 0.5rem;
}

.rating-label {
    font-weight: 600;
    font-size: 0.875rem;
}

.stars {
    display: flex;
}

.star {
    width: 0.75rem;
    height: 0.75rem;
    color: #ffc700;
    fill: currentColor;
}

.bonus-section {
    background: linear-gradient(to right,
            rgba(255, 199, 0, 0.1),
            rgba(255, 199, 0, 0.2));
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin: 0.5rem 0 0.75rem 0;
    border: none;
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.bonus-text {
    text-align: center;
    font-size: 0.75rem;
    color: white;
    font-weight: bold;
}

.bonus-amount {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.claim-section {
    text-align: center;
}

.btn-casino {
    width: 100%;
    background: #ffc700;
    color: #1a1f2c;
    font-weight: bold;
    font-size: 0.875rem;
    padding: 0.25rem;
    animation: pulse 2s infinite;
}

.btn-casino:hover {
    background: #eab308;
    animation: none;
}

.disclaimer {
    font-size: 0.75rem;
    color: #d1d5db;
    margin-top: 0.25rem;
}

.content-grid {
    display: grid;
    gap: 2rem;
    margin-top: 50px;
}


.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1a1f2c;
    margin-bottom: 1.5rem;
    margin-top: 50px;
    text-align: center;
}

.section-text {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Cards */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.top-pick-banner {
    background: #ffc700;
    color: #1a1f2c;
    padding: 0.25rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.casino-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.casino-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.casino-rating .star {
    width: 1rem;
    height: 1rem;
    color: #ffc700;
    fill: currentColor;
}

.casino-rating .star.empty {
    color: #d1d5db;
    fill: none;
}

.rating-text {
    font-size: 0.875rem;
    color: #4b5563;
    padding-left: 10px;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.feature-badge {
    background: #f1f5f9;
    color: #1a1f2c;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    border: 1px solid #e2e8f0;
}

.casino-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
}

.bonus-info {
    margin-bottom: 1rem;
}

.bonus-label {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.bonus-value {
    color: #e11d48;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-green {
    background: #10b981;
    color: white;
}

.btn-green:hover {
    background: #059669;
}

.btn-blue-outline {
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
    background: transparent;
}

.btn-blue-outline:hover {
    background: #0ea5e9;
    color: white;
}

/* How We Rate Section */
.rating-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.rating-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rating-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.rating-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-icon {
    padding: 0.75rem;
    margin-right: 1rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #0ea5e9;
    border-radius: 50%;
    background: rgba(219, 234, 254, 1);
}

.rating-card:hover .rating-icon {
    transform: scale(1.05);
    border-color: #18a9f1;
    background: #e2f0fe;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.rating-icon-2 {
    background: rgba(219, 234, 254, 1);
    padding: 0.75rem;
    border-radius: 50%;
    margin: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
}

.rating-icon-3 {
    background: rgba(220, 252, 231, 1);
    padding: 0.75rem;
    border-radius: 50%;
    margin: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
}

.rating-icon-4 {
    background: rgba(243, 232, 255, 1);
    padding: 0.75rem;
    border-radius: 50%;
    margin: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
}

.rating-icon-5 {
    background: rgba(255, 237, 213, 1);
    padding: 0.75rem;
    border-radius: 50%;
    margin: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
}

.rating-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #0ea5e9;
}

.rating-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(199deg) brightness(104%) contrast(97%);
    transition: all 0.3s ease;
}

.rating-card:hover .rating-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(199deg) brightness(104%) contrast(97%) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transform: scale(1.1);
}

.rating-card h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.rating-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive Design for Rating Grid */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 1rem;
    }

    .section-text {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }

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

    .rating-card {
        padding: 1.25rem;
    }

    .rating-card-header {
        margin-bottom: 0.75rem;
    }

    .rating-icon {
        width: 45px;
        height: 45px;
        padding: 0.625rem;
        margin-right: 0.75rem;
    }

    .rating-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .rating-icon img {
        width: 20px;
        height: 20px;
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(199deg) brightness(104%) contrast(97%);
    }

    .rating-card h3 {
        font-size: 1rem;
    }

    .rating-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.25rem;
        margin-top: 20px;
        margin-bottom: 0.75rem;
    }

    .section-text {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        max-width: 95%;
        line-height: 1.5;
    }

    .rating-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .rating-card {
        padding: 1rem;
    }

    .rating-card-header {
        margin-bottom: 0.5rem;
    }

    .rating-icon {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
        margin-right: 0.5rem;
    }

    .rating-icon svg {
        width: 1rem;
        height: 1rem;
    }

    .rating-icon img {
        width: 18px;
        height: 18px;
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(199deg) brightness(104%) contrast(97%);
    }

    .rating-card h3 {
        font-size: 0.875rem;
    }

    .rating-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (min-width: 1200px) {
    .section-title {
        font-size: 2.25rem;
        margin-top: 60px;
        margin-bottom: 2rem;
    }

    .section-text {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        max-width: 900px;
        line-height: 1.8;
    }

    .rating-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .rating-card {
        padding: 2rem;
    }

    .rating-card-header {
        margin-bottom: 1.5rem;
    }

    .rating-icon {
        width: 60px;
        height: 60px;
        padding: 1rem;
        margin-right: 1.25rem;
    }

    .rating-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .rating-icon img {
        width: 28px;
        height: 28px;
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(199deg) brightness(104%) contrast(97%);
    }

    .rating-card h3 {
        font-size: 1.25rem;
    }

    .rating-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Icon fallback and enhancement */
/* .rating-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
} */

/* Animation for rating cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rating-card {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger animation for multiple cards */
.rating-card:nth-child(1) {
    animation-delay: 0.1s;
}

.rating-card:nth-child(2) {
    animation-delay: 0.2s;
}

.rating-card:nth-child(3) {
    animation-delay: 0.3s;
}

.rating-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Focus states for accessibility */
.rating-card:focus {
    outline: 2px solid #0284C7;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .rating-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .rating-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Pros and Cons */
.pros-cons-grid {
    display: grid;
    gap: 2rem;
    display: flex;
}

.pros-cons-section {
    background: #dcfce7;
    /* Light green background */
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    width: 50%;
}

.pros-cons-section-1 {
    background: #fee2e2;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    width: 50%;
}

.pros-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #10b981;
    gap: 10px;
}

.pros-header img {
    width: 20px !important;
    height: 20px !important;
}

.list-item img {
    width: 20px !important;
    height: 20px !important;
}

@media (min-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cons-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ef4444;
    gap: 7px;
}

.cons-header img {
    width: 20px !important;
    height: 20px !important;
}

.pros-cons-list .list-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #222;
}

.cons-list .list-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #333;
}

.cons-list .list-item svg {
    flex-shrink: 0;
    color: #e11d48;
    /* Red color for X icon */
}

.rating-icon img {
    height: 30px !important;
}

.margin-icon {
    margin-top: 6px;
}

.pros-cons-list .list-item svg {
    flex-shrink: 0;
}

.pros-cons-list {
    list-style: none;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pros-cons-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.375rem;
    width: 1rem;
    height: 1rem;
    background-size: contain;
}

.pros-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E");
}

.cons-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 18L18 6M6 6l12 12'%3E%3C/path%3E%3C/svg%3E");
}

/* Step by Step Guide */
.steps-container {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item::before {
    content: "";

    position: absolute;

    left: 17px;

    top: 36px;

    width: 2px;

    height: calc(100% - 26px);

    background-color: #d0d0d0;
}

.step-item:last-child::before {
    display: none;
}

.step-number {
    background: #0ea5e9;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #6b7280 !important;
    /* gray-500 */
    transition: color 0.3s ease;
}

.social-link.twitter:hover {
    color: #1da1f2 !important;
}

.social-link.linkedin:hover {
    color: #1da1f2 !important;
}

.social-link.link:hover {
    color: #1da1f2 !important;
    /* Tailwind's indigo-500 */
}

.step-content h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1f2c;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
}

.pro-tip {
    margin-top: 2rem;
    padding: 1rem;
    background: rgb(210, 227, 252);
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
}

.pro-tip-content {
    display: flex;
    align-items: flex-start;
}

.pro-tip svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #0ea5e9;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pro-tip p {
    color: #374151;
}

.pro-tip-highlight {
    font-weight: 500;
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.payment-method {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.payment-method:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.payment-method img {
    height: 3rem;
    width: auto;
    margin: 0 auto 0.75rem auto;
    object-fit: contain;
}

.payment-method h4 {
    font-weight: 500;
}

/* Author Box */
.author-section {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.author-section:hover {
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.author-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-avatar {
    position: relative;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #cbd5e1;
    color: #1e293b;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    display: flex;
}

.author-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.author-bio {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #0ea5e9;
    text-decoration: none;
    font-size: 0.875rem;
}

.social-link:hover {
    text-decoration: underline;
}

/* Responsive Design for Author Section */
@media (max-width: 768px) {
    .author-section {
        padding: 1.5rem;
    }

    .author-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .author-avatar {
        width: 64px;
        height: 64px;
    }

    .avatar-fallback {
        font-size: 20px;
    }

    .author-info h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .author-role {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .author-bio {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .author-meta {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .author-social {
        justify-content: center;
        gap: 0.75rem;
    }

    .social-link {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    .author-content {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .author-info {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .author-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .author-content {
        gap: 0.75rem;
    }

    .author-avatar {
        width: 56px;
        height: 56px;
    }

    .avatar-fallback {
        font-size: 18px;
    }

    .author-info h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .author-role {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .author-bio {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

    .author-meta {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .author-social {
        gap: 0.5rem;
    }

    .social-link {
        font-size: 0.75rem;
    }
}

@media (min-width: 1200px) {
    .author-section {
        padding: 2.5rem;
    }

    .author-content {
        gap: 2rem;
    }

    .author-avatar {
        width: 120px;
        height: 120px;
    }

    .avatar-fallback {
        font-size: 32px;
    }

    .author-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .author-role {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .author-bio {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .author-meta {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .author-social {
        gap: 1.25rem;
    }

    .social-link {
        font-size: 0.9rem;
    }
}

/* Animation for author section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.author-section {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Focus states for accessibility */
.author-section:focus-within {
    outline: 2px solid #0284C7;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .author-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .author-section:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Related Pages */
.related-grid {
    display: grid;
    gap: 1.5rem;
}

.related-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.related-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.related-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
}

.related-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1a1f2c;
}

.related-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
}

.related-link:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 5rem;
}

.sidebar-section {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.toc-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
}

.toc-link {
    color: #374151;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.toc-link:hover {
    color: #0ea5e9;
}

/* Featured Casino Sidebar */
.featured-casino {
    background: linear-gradient(135deg, #1a1f2c 0%, #1e3a8a 100%);
    color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.featured-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.featured-header svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffc700;
    margin-right: 0.5rem;
}

.featured-header h3 {
    font-size: 1.125rem;
    font-weight: bold;
}

.featured-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.featured-image {
    margin-bottom: 0.75rem;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

.featured-name {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.featured-rating {
    display: flex;
    margin-bottom: 0.5rem;
}

.featured-rating .star {
    width: 1rem;
    height: 1rem;
    color: #ffc700;
    fill: currentColor;
}

.featured-bonus {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.featured-bonus-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.featured-bonus-amount {
    color: #ffc700;
    font-weight: bold;
    font-size: 1.125rem;
}

.featured-cta {
    width: 100%;
    background: #ffc700;
    color: #1a1f2c;
    font-weight: bold;
}

.featured-disclaimer {
    font-size: 0.75rem;
    color: #d1d5db;
}

/* Popular Games Sidebar */
.games-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.game-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    transition: background-color 0.2s;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.game-item:hover {
    background: #f9fafb;
}

.game-image {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 0.25rem;
    margin-right: 0.75rem;
}

.game-info h4 {
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.game-count {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #1a1f2c;
    color: white;
    padding: 3rem 0 1.5rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #374151;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact {
    display: flex;
    align-items: center;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.footer-contact:hover {
    color: white;
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #d1d5db;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: white;
}

.footer-disclaimer {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #9ca3af;
    border-left: 4px solid #0ea5e9;
    padding-left: 1rem;
    padding-top: 0.5rem;
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
}

.disclaimer-content svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.disclaimer-link {
    color: #0ea5e9;
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    background: #1e3a8a;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
}

.trust-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffc700;
    margin-right: 0.5rem;
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ...................................section cards........................ */

.content-wrapper {
    /* New class for the main content styling */
    background: linear-gradient(to right, #007bff, #0056b3);
    /* Blue gradient */
    border-radius: 15px;
    padding: 30px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    /* Allow items to wrap on smaller screens */
    gap: 30px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    align-items: flex-start;
    /* Align items to the top */
    justify-content: center;
    align-items: center;
}

.advice-section {
    /* Renamed from tips-section */
    flex: 2;
    /* Takes more space */
    min-width: 300px;
    /* Minimum width before wrapping */
    box-sizing: border-box;
}

.advice-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.advice-section h2 svg {
    width: 24px;
    height: 24px;
    fill: #ffd700;
    /* Gold color for icon */
}

.advice-list {
    /* Renamed from tip-list */
    list-style: none;
    padding: 0;
    margin: 0;
}

.advice-item {
    /* Renamed from tip-item */
    display: flex;
    align-items: flex-start;
    /* Align number and text to top */
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.5;
}

.advice-number {
    /* Renamed from tip-number */
    background-color: #ffd700;
    /* Gold background for number */
    color: #0056b3;
    /* Dark blue text for number */
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
    flex-shrink: 0;
    /* Prevent shrinking */
    margin-right: 15px;
}

.subscription-section {
    flex: 1;
    min-width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.subscription-section h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.subscription-section p {
    font-size: 1em;
    margin-bottom: 25px;
    line-height: 1.6;
    color: white;
}

.cta-button {
    /* Renamed from subscribe-button */
    background-color: #ffd700;
    /* Gold button */
    color: #0056b3;
    /* Dark blue text */
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ffc107;
    /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        /* Apply padding to the new content-wrapper */
        flex-direction: column;
        /* Stack sections vertically */
        padding: 20px;
    }

    .advice-section,
    .subscription-section {
        /* Updated class names */
        min-width: unset;
        /* Remove min-width to allow full width */
        width: 100%;
    }

    .advice-section h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .advice-item {
        font-size: 1em;
        margin-bottom: 10px;
    }

    .advice-number {
        width: 24px;
        height: 24px;
        font-size: 0.8em;
        margin-right: 10px;
    }

    .subscription-section h3 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .subscription-section p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .content-wrapper {
        /* Apply padding to the new content-wrapper */
        padding: 15px;
    }

    .advice-section h2 {
        font-size: 1.3em;
    }

    .advice-item {
        font-size: 0.9em;
    }

    .advice-number {
        width: 22px;
        height: 22px;
        font-size: 0.75em;
    }

    .subscription-section h3 {
        font-size: 1.1em;
    }

    .subscription-section p {
        font-size: 0.85em;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

.page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
}

.card-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: 20px;

    width: 100%;
    text-align: center;
}

h2 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-grid-2 {
    display: grid;
    gap: 2rem;
}

p {
    font-size: 16px;
    /* color: #666666; */
    line-height: 1.6;
    /* text-align: center; */
    margin-bottom: 30px;
}

.list-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.2;
    /* text-align: center; */
    margin-bottom: 0px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease,
        color 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.button.primary {
    background-color: #28a745;
    color: #ffffff;
    border: 2px solid #28a745;
}

.button.primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.button.secondary {
    background-color: #ffffff;
    color: #007bff;
    border: 2px solid #007bff;
}

.button.secondary:hover {
    background-color: #e7f5ff;
    /* Light blue background on hover */
    color: #0056b3;
    /* Darker blue text on hover */
    border-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-box {
        padding: 30px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .card-box {
        padding: 20px;
        /* Adjust padding for small screens */
    }

    h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .buttons {
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 10px;
        /* Less gap when stacked */
    }

    .button {
        width: 100%;
        /* Full width for stacked buttons */
        max-width: 280px;
        /* Limit max width */
        margin-left: auto;
        /* Center stacked buttons */
        margin-right: auto;
    }
}

/* .................................,,,nd.................................. */


.guide-header-section {
    text-align: left;
    margin-bottom: 40px;
    margin-top: 50px;
}

.guide-header-section h2 {
    font-size: 24px;
    /* 36px */
    font-weight: 700;
    color: #212529;
    /* Darker heading color */
    margin-bottom: 10px;
    text-align: center;
}

.guide-header-section p {
    font-size: 1rem;
    /* 16px */
    color: #6c757d;
    /* Muted text color */
    max-width: 600px;
}

.guide-card-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit,
            minmax(400px, 1fr));
    /* Adjusted minmax for card width */
}

.guide-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Slightly softer shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* Indicate interactivity */
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    /* More prominent shadow on hover */
}

.guide-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    /* Adjusted aspect ratio to match screenshot more closely */
    overflow: hidden;
}

.guide-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.guide-card-label-top-left {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ffc107;
    /* Yellow background for "FEATURED" */
    color: #333;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    /* 12px */
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.guide-card-label-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    /* Dark background for stars */
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;

    z-index: 10;
}

.guide-card-label-top-right .fa-star {
    color: #ffc107;
    /* Yellow stars */
    font-size: 0.7rem;
}

.guide-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guide-card-category {
    font-size: 0.85rem;
    /* 14px */
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

.guide-card-title {
    font-size: 1.15rem;
    /* Slightly smaller title to match screenshot */
    font-weight: 600;
    color: #212529;
    /* Darker title color */
    margin-bottom: 10px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.guide-card:hover .guide-card-title {
    color: #007bff;
    /* Blue color on hover to match common link hover */
}

.guide-card-description {
    font-size: 0.9rem;
    /* 14px */
    color: #495057;
    /* Slightly darker description */
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.guide-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    /* Add some padding above footer */
    border-top: 1px solid #e9ecef;
    /* Light border at the top of footer */
}

.guide-read-time {
    font-size: 0.8rem;
    /* 13px */
    color: #888;
}

.guide-read-guide-button {
    background-color: transparent;
    /* Transparent button background */
    color: #007bff;
    /* Blue text color */
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease, background-color 0.3s ease;
    border: 1px solid transparent;
    /* Transparent border initially */
}

.guide-read-guide-button:hover {
    color: #0056b3;
    /* Darker blue on hover */
    background-color: #e9ecef;
    /* Light background on hover */
    border-color: #e9ecef;
    /* Match border color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guide-card-container {
        grid-template-columns: 1fr;
        /* Single column on smaller screens */
    }

    .guide-header-section {
        text-align: center;
    }
}

/* ..............................guide page.......................... */
.text-h {
    font-size: 33px;
    font-weight: 700;
    color: rgb(26 31 44);
    margin-bottom: 16px;
    margin-top: 50px;
}

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

.mb-12 {
    margin-bottom: 48px;
    /* mb-12 */
}

.mb-4 {
    margin-bottom: 16px;
    /* mb-4 */
}

.text-3xl {
    font-size: 1.875rem;
    /* 30px */
    line-height: 2.25rem;
    /* 36px */
}

.text-4xl {
    font-size: 2.25rem;
    /* 36px */
    line-height: 2.5rem;
    /* 40px */
}

.font-bold {
    font-weight: 700;
}

.text-gray-800 {
    color: #1f2937;
}

.text-base {
    font-size: 1rem;
    /* 16px */
    line-height: 1.5rem;
    /* 24px */
}

.text-lg {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.75rem;
    /* 28px */
}

.text-gray-600 {
    color: #4b5563;
}

.max-w-2xl {
    max-width: 42rem;
    /* 672px */
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    /* Default to 1 column on small screens */
    gap: 24px;
    /* gap-6 */
}

@media (min-width: 640px) {

    /* sm breakpoint */
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on sm screens */
    }

    .text-3xl {
        font-size: 2.25rem;
        /* md:text-4xl */
    }
}

@media (min-width: 1024px) {

    /* lg breakpoint */
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns on lg screens */
    }
}

.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    padding: 24px;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    margin: auto;
    background-color: green;
}

/* Specific icon background colors and text colors */
.icon-beginner {
    background-color: #e0e7ff;
    color: #4f46e5;
    margin-bottom: 15px;
}

.icon-game {
    background-color: #dcfce7;
    /* Light green */
    color: #22c55e;
    /* Darker green */
    margin-bottom: 15px;
}

.icon-safety {
    background-color: #fee2e2;
    /* Light red */
    color: #ef4444;
    /* Darker red */
    margin-bottom: 15px;
}

.icon-bankroll {
    background-color: #ede9fe;
    /* Light purple */
    color: #a855f7;
    /* Darker purple */
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    /* font-semibold */
    color: #1f2937;
    /* text-gray-800 */
    margin-bottom: 8px;
    /* mb-2 */
}

.card p {
    color: #4b5563;
    /* text-gray-600 */
    font-size: 0.875rem;
    /* text-sm */
    margin-bottom: 16px;
    /* mb-4 */
}

.guides-available {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    /* font-medium */
    margin-top: 8px;
    margin-bottom: 24px;
    /* mb-6 */
    text-decoration: none;
    /* Remove underline by default */
}

.guides-available:hover {
    text-decoration: underline;
    /* Add underline on hover */
}

.text-blue-600 {
    color: #2563eb;
}

.text-green-600 {
    color: #16a34a;
}

.text-red-600 {
    color: #dc2626;
}

.text-purple-600 {
    color: #9333ea;
}

.explore-button {
    border: 1px solid #e5e7eb;
    /* Border color */
    color: #374151;
    /* Text color */
    padding: 8px 16px;
    /* py-2 px-4 */
    border-radius: 8px;
    font-weight: 600;
    /* font-semibold */
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    width: 100%;
    /* w-full */
    background-color: transparent;
    /* Ensure no default button background */
    cursor: pointer;
    margin-top: 10px;
}

.explore-button:hover {
    background-color: #f3f4f6;
    /* Light gray on hover */
}

/* SVG icon styling */
.icon-container svg {
    width: 32px;
    /* h-8 w-8 */
    height: 32px;
    stroke-width: 2;
}

.height-sett {
    min-height: 44px;
}

/* .........................newwwwww card............................. */

.card-container {
    background: linear-gradient(to right, #007bff, #00c6ff);
    /* Blue gradient */
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.tip-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tip-item:last-child {
    margin-bottom: 0;
}

.icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #ffd700;
    /* Gold color for icons */
}

.start-button {
    background-color: #ffd700;
    /* Gold button */
    color: #333;
    /* Dark text for contrast */
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 25px;
    /* Space above button */
    align-self: flex-end;
    /* Align button to the right */
}

.start-button:hover {
    background-color: #e6c200;
    /* Darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .card-container {
        flex-direction: row;
        align-items: center;
        padding: 40px;
    }

    .tips-section {
        flex-grow: 1;
        margin-right: 30px;
        /* Space between tips and button */
    }

    .start-button {
        margin-top: 0;
        align-self: center;
        /* Center button vertically in row layout */
    }
}

@media (max-width: 767px) {
    .card-container {
        padding: 20px;
    }

    .tip-item {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .icon {
        font-size: 1.3rem;
        margin-right: 10px;
    }

    .start-button {
        width: 100%;
        /* Full width button on small screens */
        text-align: center;
        padding: 10px 20px;
    }
}

/* ..........................mmmmmmmmmmm./......................... */

.card-guide {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
}

.card-title-1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2c3e50;
    /* Dark blue/gray */
    margin-bottom: 10px;
}

.card-description {
    font-size: 1.1em;
    color: #7f8c8d;
    /* Gray text */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.provider-item {
    background-color: #f8f9fa;
    /* Very light gray */
    color: #34495e;
    /* Slightly darker gray for text */

    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    /* Ensure consistent height */
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    /* Subtle shadow */
    transition: transform 0.2s ease-in-out;
}

.provider-item:hover {
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 1.8em;
    }

    .card-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

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

    .provider-item {
        padding: 20px 10px;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 25px 15px;
    }

    .card-title {
        font-size: 1.5em;
    }

    .card-description {
        font-size: 0.9em;
        margin-bottom: 25px;
    }

    .providers-grid {
        grid-template-columns: repeat(2,
                1fr);
        /* Two columns on very small screens */
        gap: 10px;
    }

    .provider-item {
        font-size: 0.9em;
        padding: 15px 10px;
        min-height: 50px;
    }
}

/* ........................................................casino reviews page.................................................... */

.hello-first {
    font-size: 77px;
}

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

.gold-text {
    color: rgba(255, 199, 0, 0.8) !important;
    font-weight: 700;
}

.trust-badge-1 {
    display: flex;
    align-items: center;
    background-color: #ffffff1a;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    gap: 10px;
}

.text-set {
    color: #e5e7ea;
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
    width: 70%;
    margin: auto;
}

.heading-text {
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.2;
    text-align: center;
    max-width: 70%;
    margin: 10px auto 20px auto;
}

.casino-card-1 {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.casino-card-1-header {
    background: #ffc700;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    color: #222;
}

.casino-card-1-body {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left,
.middle,
.right {
    flex: 1 1 300px;
}

.left {
    text-align: center;
}

.left img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
}

.casino-name-2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.75rem;
}

.stars-2 {
    color: #ffc700;
    font-size: 6px !important;
    margin: auto;
}

.left-info {
    text-align: left;
    /* margin-top: 1rem; */
    font-size: 0.95rem;
}

.text-black {
    font-size: 16px;
    color: black;
    font-weight: 500;
    margin-left: 5px;
}

.left-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.middle h4 {
    margin-bottom: 1rem;
    font-weight: bold;
}

.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.buttons {
    margin-top: 1.5rem;
}

.visit-btn {
    background: #10b981;
    color: white;
    padding: 0.6rem;
    border: none;
    width: 100%;
    font-weight: bold;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    text-decoration: none;
}

.review-btn {
    background: white;
    color: #10b981;
    padding: 0.6rem;
    border: 2px solid #10b981;
    width: 100%;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

.right h4 {
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
}

.pros h4 {
    color: green;
}

.cons h4 {
    color: red;
    margin-top: 1rem;
}

.pros ul,
.cons ul {
    padding-left: 1rem;
    font-size: 0.95rem;
}

.pros li {
    color: green;
    margin-bottom: 5px;
}

.cons li {
    color: red;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .casino-card-body {
        flex-direction: column;
    }

    .left,
    .middle,
    .right {
        flex: 1 1 100%;
    }
}

.cta-section {
    background: linear-gradient(to right,
            #0ea5e9,
            #2563eb);
    /* Tailwind: from-sky-500 to-blue-600 */
    color: white;
    text-align: center;
    padding: 2.5rem 1rem;
    border-radius: 12px;
    max-width: 1200px;
    margin: 2rem auto;
}

.cta-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.cta-button-bonus {
    display: flex;
    background-color: #facc15;
    /* yellow-400 */
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin: auto;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.cta-button-bonus:hover {
    background-color: #fbbf24;
    /* yellow-500 */
}

.cta-button {
    display: inline-flex;
    background-color: #facc15;
    /* yellow-400 */
    color: #000;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #fbbf24;
    /* yellow-500 */
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.bonus-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.bonus-banner {
    background-color: #facc15;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding: 10px;
}

.bonus-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.bonus-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 150px;
    text-align: center;
}

.bonus-left img {
    width: 90%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.casino-name {
    font-weight: 700;
    margin-top: 8px;
}

.stars {
    color: #facc15;
    margin-top: 4px;
    font-size: 0.9rem;
}

.bonus-middle {
    background-color: #f5f3ff;
    border-radius: 10px;
    padding: 1rem;
    flex: 2 1 360px;
}

.bonus-middle h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 700;
}

.bonus-middle p {
    margin: 4px 0;
    font-size: 0.9rem;
}

.bonus-middle span {
    font-weight: bold;
}

.bonus-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 1 1 160px;
}

.bonus-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.claim-btn {
    background-color: #10b981;
    color: white;
    border: none;
}

.review-btn {
    background-color: white;
    color: #4694f4;
    border: 2px solid #4694f4;
}

/* Heading */
.bonus-section h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #222;
}

/* Grid Layout */
.bonus-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Columns */
.bonus-column {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Column Headings */
.bonus-column h2 {
    font-size: 24px;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Specific Colors */
.do-column h2 {
    color: green;
}

.dont-column h2 {
    color: red;
}

/* List Styling */
.bonus-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-column li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* Badge Styling */
.badge {
    width: 24px;
    height: 24px;
    background: #4caf50;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

.dont-column .badge {
    background: #f44336;
}

.text-style {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 30px;
}

.bonus-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bonus-column {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Headings */
.bonus-column h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Bonus Items */
.bonus-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
    gap: 10px;
}

/* Icon styles */
.icon-check {
    color: rgb(16 185 129);
    /* green */
    flex-shrink: 0;
}

.icon-cross {
    color: #f44336;
    /* red */
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bonus-grid {
        flex-direction: column;
    }

    .bonus-column {
        padding: 1.2rem;
    }

    .bonus-item {
        font-size: 0.95rem;
    }

    .icon-check,
    .icon-cross {
        width: 18px;
        height: 18px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .bonus-grid {
        flex-direction: column;
    }

    .bonus-section h1 {
        font-size: 1.5rem;
    }

    .bonus-column {
        padding: 1.2rem;
    }

    .bonus-column h2 {
        font-size: 1.2rem;
    }

    .bonus-column li {
        font-size: 0.95rem;
    }

    .badge {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .cta-section h2 {
        font-size: 1.25rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .bonus-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .bonus-right {
        width: 100%;
        align-items: stretch;
        flex: none;
    }

    .bonus-btn {
        width: 100%;
    }

    .bonus-middle,
    .bonus-left {
        width: 100%;
    }

    .bonus-left {
        /* flex-direction: row; */
        justify-content: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .bonus-middle {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .casino-header {
        padding: 25px 20px;
    }

    .casino-header h1 {
        font-size: 24px;
    }

    .casino-body {
        padding: 30px 20px;
    }

    .casino-col h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .casino-row {
        margin-bottom: 15px;
        padding: 10px 0;
    }

    .casino-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .casino-header h1 {
        font-size: 20px;
    }

    .casino-body {
        padding: 20px 15px;
    }

    .casino-col h2 {
        font-size: 24px;
    }

    .casino-text {
        font-size: 14px;
    }

    .casino-badge {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        font-size: 10px;
    }
}

/* ........................................................casino reviews page end.................................................... */

/* ....................................start ................................ */

.flex-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* Section Title and Description */
.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Category Card */
.category-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    /* Only transform and box-shadow transitions for hover, no JS-related transitions */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    /* Lifts the card on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    /* More pronounced shadow on hover */
}

.card-image-wrapper {
    height: 180px;
    /* Consistent height for all image sections */
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.slot-games .card-image {
    background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?auto=format&fit=crop&w=400&h=250");
}

.live-casino .card-image {
    background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=400&h=250");
}

.table-games .card-image {
    background-image: url("https://images.unsplash.com/photo-1581090464777-f3220bbe1b8b?auto=format&fit=crop&w=400&h=250");
}

.jackpot-games .card-image {
    background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=400&h=250");
}

/* --- Color Overlays for each card (using pseudo-elements) --- */
.card-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Adjust overlay opacity on hover to reveal more of the background image */
.category-card:hover .card-image::before {
    opacity: 0.7;
}

/* Specific gradient colors for each card's overlay */
.slot-games .card-image::before {
    background: linear-gradient(to right, #8a2be2, #a020f0);
    /* Deep Purple */
}

.live-casino .card-image::before {
    background: linear-gradient(to right, #00bfff, #1e90ff);
    /* Deep Sky Blue */
}

.table-games .card-image::before {
    background: linear-gradient(to right,
            #3cb371,
            #2e8b57);
    /* Medium Sea Green */
}

.jackpot-games .card-image::before {
    background: linear-gradient(to right,
            #ff8c00,
            #ffd700);
    /* Dark Orange to Gold */
}

.count {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    align-self: flex-start;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Count pulse/scale effect on card hover */
.category-card:hover .count {
    transform: scale(1.05);
    color: #ffeb3b;
}

.card-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon {
    font-size: 2em;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

/* Icon lift effect on card hover */
.category-card:hover .card-icon {
    transform: translateY(-5px);
}

/* Specific icon colors, matching the theme of each card */
.slot-games .card-icon {
    color: #8a2be2;
}

.live-casino .card-icon {
    color: #00bfff;
}

.table-games .card-icon {
    color: #3cb371;
}

.jackpot-games .card-icon {
    color: #ff8c00;
}

.card-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.card-description {
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.5;
}

.explore-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #f0f0f0;
    /* Default button background */
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    /* Smooth transitions for hover/active */
    border: 1px solid #ddd;
    align-self: center;
    /* Centers the button horizontally */
}

.explore-button:hover {
    background-color: #e0e0e0;
    /* Darker background on hover */
    color: #000;
    transform: translateY(-2px);
    /* Slight lift on hover */
}

.explore-button:active {
    transform: translateY(0);
    /* Returns to original position on click */
    background-color: #d0d0d0;
    /* Even darker on click */
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .section-description {
        font-size: 1em;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        /* Cards stack vertically on smaller screens */
    }
}

/* .......................................end............................................ */

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.section-description {
    color: #4b5563;
    /* Equivalent to text-gray-600 */
    margin-bottom: 2rem;
    /* Equivalent to mb-8 */
}

.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Equivalent to grid-cols-1 */
    gap: 2rem;
    /* Equivalent to gap-8 */
}

@media (min-width: 640px) {

    /* sm breakpoint */
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Equivalent to sm:grid-cols-2 */
    }
}

@media (min-width: 1024px) {

    /* lg breakpoint */
    .game-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Equivalent to lg:grid-cols-4 */
    }
}

.game-card {
    background-color: #ffffff;
    /* Equivalent to bg-white */
    border-radius: 0.75rem;
    /* Equivalent to rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Equivalent to shadow-lg */
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.game-card:hover {
    transform: translateY(-5px);
    /* Lift effect on hover */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    /* Enhanced shadow */
}

.game-card-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    /* Rounded corners for image container */
    height: 12rem;
    /* Equivalent to h-48 */
}

.game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: #ffc700;
    color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    /* Fully rounded button */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 180px;
}

.game-card-image-container:hover .game-card-image {
    background-color: black;
    transform: scale(1.05);
    /* Slight zoom effect */
}

.game-card-image-container:hover .play-button {
    opacity: 1;
    /* Button appears on hover */
}

.game-card-content {
    padding: 1.25rem;
    /* Equivalent to p-5 */
}

.game-title {
    font-size: 1.25rem;
    /* Equivalent to text-xl */
    font-weight: 700;
    /* Equivalent to font-semibold */
    color: #1f2937;
    /* Equivalent to text-gray-800 */
    margin-bottom: 0.5rem;
    /* Equivalent to mb-2 */
}

.game-provider {
    font-size: 0.875rem;
    /* Equivalent to text-sm */
    color: #6b7280;
    /* Equivalent to text-gray-500 */
    margin-bottom: 0.75rem;
    /* Equivalent to mb-3 */
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    /* Equivalent to gap-2 */
}

.game-info-flex {
    display: flex;
    justify-content: space-between;
    /* Optional */
    align-items: center;
    flex-wrap: wrap;
    /* Keeps responsive */
    gap: 1rem;
}

.tag {
    font-size: 0.75rem;
    /* Equivalent to text-xs */
    font-weight: 500;
    /* Equivalent to font-medium */
    padding: 0.25rem 0.625rem;
    /* Equivalent to px-2.5 py-0.5 */
    border-radius: 9999px;
    /* Equivalent to rounded-full */
}

/* Specific tag colors */
.tag-blue {
    background-color: #dbeafe;
    /* Equivalent to bg-blue-100 */
    color: #1e40af;
    /* Equivalent to text-blue-800 */
}

.tag-green {
    background-color: #d1fae5;
    /* Equivalent to bg-green-100 */
    color: #065f46;
    /* Equivalent to text-green-800 */
}

.tag-purple {
    background-color: #ede9fe;
    /* Equivalent to bg-purple-100 */
    color: #5b21b6;
    /* Equivalent to text-purple-800 */
}

.tag-red {
    background-color: #fee2e2;
    /* Equivalent to bg-red-100 */
    color: #991b1b;
    /* Equivalent to text-red-800 */
}

.game-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    /* Equivalent to text-sm */
    color: #374151;
    /* Equivalent to text-gray-700 */
}

.game-details.mt-2 {
    margin-top: 0.5rem;
    /* Equivalent to mt-2 */
}

.game-details .font-semibold {
    font-weight: 600;
    /* Equivalent to font-semibold */
}

/* Star rating styles */
.star-rating .fa-star {
    color: #ffc107;
    /* Gold color for stars */
}

.rtp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.rtp-row span {
    font-size: 13px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    /* optional spacing */
}

.info-row span {
    font-size: 13px;
}

/* ..............................new,,,,,,,,,,,,,,,,,,,,,,,,,,, */

/* Responsive Design */
@media (max-width: 767px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }
}

@media (min-width: 768px){
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }

    .header-actions {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

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

    .casino-box {
        display: flex;
    }

    .content-grid {
        grid-template-columns: 2fr 1fr;
    }

    .rating-grid {
        grid-template-columns: repeat(2, 1fr);

    }

    .pros-cons-grid {
        grid-template-columns: 1fr 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Icons as SVG */
.icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 40;
    max-height: 700px;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.show {
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-item {
    border-bottom: 1px solid #f3f4f6;
}

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

.mobile-menu-item-container,
.mobile-child-menu-item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.mobile-menu-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    flex: 1;
    transition: color 0.2s;
}

.mobile-menu-link:hover {
    color: #0ea5e9;
}

.mobile-menu-link.active {
    color: #0ea5e9;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1) 0%, transparent 100%);
    border-left: 3px solid #0ea5e9;
    padding-left: 0.75rem;
}

.mobile-dropdown-toggle,
.mobile-grandchild-dropdown-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-dropdown-toggle:hover,
.mobile-grandchild-dropdown-toggle:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
}

.mobile-dropdown-toggle.open,
.mobile-grandchild-dropdown-toggle.open {
    transform: rotate(180deg);
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
}

.mobile-child-menu,
.mobile-grandchild-menu {
    max-height: 0;
    overflow: auto;
    background: #f9fafb;
    margin: 0 -1rem;
    padding: 0 1rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-child-menu.show,
.mobile-grandchild-menu.show {
    max-height: 300px;
    padding: 0.5rem 1rem;
    border-left-color: #0ea5e9;
}

.mobile-grandchild-menu.show{
    padding: 0.5rem 1.5rem;
}

.mobile-child-menu-item,
.mobile-grandchild-menu-item {
    display: block;
    color: #6b7280;
    text-decoration: none;
    padding: 0.5rem 0;
    padding-left: 1rem;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.mobile-child-menu-item:hover,
.mobile-grandchild-menu-item:hover {
    color: #0ea5e9;
    border-left-color: #0ea5e9;
}

.mobile-child-menu-item.active,
.mobile-grandchild-menu-item.active {
    flex: 1;
    color: #0ea5e9;
    border-left-color: #0ea5e9;
    font-weight: 600;
    background: rgba(14, 165, 233, 0.05);
}

/* Parent mobile menu active when child is active */
.mobile-menu-item.has-dropdown:has(.mobile-child-menu-item.active) .mobile-menu-link,
.mobile-menu-item.has-dropdown:has(.mobile-child-menu .mobile-grandchild-menu .mobile-grandchild-menu-item.active) .mobile-menu-link {
    color: #0ea5e9;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1) 0%, transparent 100%);
    border-left: 3px solid #0ea5e9;
    padding-left: 0.75rem;
}

/* Fallback for browsers that don't support :has() */
.mobile-menu-item.has-dropdown .mobile-menu-link.parent-active {
    color: #0ea5e9;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1) 0%, transparent 100%);
    border-left: 3px solid #0ea5e9;
    padding-left: 0.75rem;
}

.nav .menu-item.dropdown .menu-link.parent-active {
    color: #0ea5e9;
    font-weight: 600;
}

.nav .menu-item.dropdown .menu-link.parent-active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0ea5e9;
    border-radius: 1px;
}

.mobile-header-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .mobile-menu-content {
        padding: 0.75rem;
    }

    .mobile-menu-item-container {
        padding: 1rem 0;
    }

    .mobile-menu-link {
        font-size: 1.1rem;
    }

    .mobile-dropdown-toggle,
    .mobile-grandchild-dropdown-toggle {
        padding: 0.5rem;
        min-width: 44px;
        /* Touch target size */
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-child-menu-item,
    .mobile-grandchild-menu-item {
        padding: 0.75rem 0;
        padding-left: 1.5rem;
        font-size: 1rem;
    }
}

/* Desktop dropdown styles for existing menu */
@media (min-width: 768px) {
    .nav .menu-item.dropdown {
        position: relative;
    }

    .nav .menu-item-container {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .nav .dropdown-arrow {
        font-size: 0.75rem;
        transition: transform 0.2s ease;
        cursor: pointer;
        padding: 0.25rem;
    }

    .nav .menu-item.dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav .grandchild-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.2s ease;
        z-index: 50;
        font-size: 0.875rem;
    }

    .nav .child-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 0.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        min-width: 200px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.2s ease;
        z-index: 50;
    }

    .nav .menu-item.dropdown:hover .child-menu,
    .nav .child-menu-item.dropdown:hover .grandchild-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav .child-menu-item,
    .nav .grandchild-menu-item {
        display: block;
        padding: 0.5rem 1rem;
        color: #374151;
        text-decoration: none;
        transition: all 0.2s;
    }

    .nav .child-menu-item:hover,
    .nav .child-menu-item.active,
    .nav .grandchild-menu-item:hover,
    .nav .grandchild-menu-item.active {
        background: #f3f4f6;
        color: #0ea5e9;
    }

    .nav .child-menu-item.active,
    .nav .grandchild-menu-item.active {
        font-weight: 600;
        border-left: 3px solid #0ea5e9;
        padding-left: 0.75rem;
    }

    /* Parent menu active when child is active */
    .nav .menu-item.dropdown:has(.child-menu-item.active) .menu-link {
        color: #0ea5e9;
        font-weight: 600;
    }

    .nav .menu-item.dropdown:has(.child-menu-item.active) .menu-link::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        right: 0;
        height: 2px;
        background: #0ea5e9;
        border-radius: 1px;
    }

    .child-menu-item-container {
        display: flex;
        justify-content: space-between;
    }
    
    .child-menu-item:hover .dropdown-arrow-wrapper {
        transform: translateY(-10px) rotate(180deg);
        transition-delay: 0.1s;
    }
}

/* Hidden utility class */
.hidden-auss {
    display: none;
}

/* Footer Responsive Styles */
.footer {
    background: #1a1f2c;
    color: white;
    padding: 3rem 0 1.5rem 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #374151;
    grid-template-columns: repeat(4, 1fr);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

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

.footer-contact-info {
    display: flex;
    align-items: center;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.footer-contact-info:hover {
    color: white;
}

.footer-contact-info svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    color: #d1d5db;
    transition: color 0.2s;
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: white;
}

.footer-update-info {
    display: flex;
    align-items: center;
    color: #d1d5db;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer-update-info svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.footer-disclaimer {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #9ca3af;
    border-left: 4px solid #0ea5e9;
    padding-left: 1rem;
    padding-top: 0.5rem;
}

.footer-disclaimer-content {
    display: flex;
    align-items: flex-start;
}

.footer-disclaimer-content svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-disclaimer a {
    color: #0ea5e9;
    text-decoration: underline;
}

.footer-additional-row {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    margin-top: 1rem;
}

.footer-additional-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-additional-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.footer-copyright {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 2rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive breakpoints for footer */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }

    .footer-container {
        padding: 0 0.75rem;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-additional-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        background: #1e3a8a;
        border-radius: 9999px;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .trust-badge svg {
        width: 1rem;
        height: 1rem;
        color: #ffc700;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    .trust-badge span {
        font-weight: 500;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-main-grid {
        gap: 1.25rem;
    }

    .footer-section h3 {
        font-size: 0.95rem;
    }

    .footer-contact-info {
        font-size: 0.875rem;
        flex-wrap: wrap;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        padding-left: 0.75rem;
        padding-top: 0.5rem;
    }

    .footer-additional-links {
        gap: 0.5rem;
    }

    .footer-additional-links a {
        font-size: 0.8rem;
        text-align: center;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .trust-badge {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .scroll-to-top svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

.blk-sec-x933 {
    background-color: white;
    padding: 100px;
}

/* 2-column layout for Our Story */
.split-grid-c1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 2rem;
}

.img-col-c1 img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.text-col-c1 p {
    max-width: 600px;
    line-height: 1.7;
    text-align: left;
    margin: 0;
    color: #666666;
}

@media (max-width: 768px) {
    .text-col-c1 p {
        text-align: center;
    }
}

.bg-class {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 20px;
}

.para-style {
    font-size: 16px;
    margin-top: 16px;
}

.grd-bx-212 {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.bx-fx-213 {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.bx-fx-213:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.bx-fx-213 h3 {
    color: black;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stp-lst-y77 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    counter-reset: step;
}

.stp-xa-009 {
    flex: 1 1 calc(25% - 1rem);
    background: var(--light-bg);
    color: var(--light-text);
    border-left: 5px solid var(--accent);
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

.stp-xa-009::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #fff;
}

/* ✅ Hover styles */
.stp-xa-009:hover {
    background: #1e3a8a;
    /* Deep blue background */
    color: #facc15;
    /* Yellow text */
}

.nm-box-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
}

.nm-box-cell {
    flex: 1 1 180px;
    background: var(--light-bg);
    color: var(--light-text);
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.nm-box-cell h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* .screen-middle-padding h1 {
    font-size: 2rem
}

.screen-middle-padding h2 {
    font-size: 1.75rem
} */

/* .screen-middle-padding h3 {
    font-size: 1.5rem
} */

.screen-middle-padding h4 {
    font-size: 1.25rem
}

.screen-middle-padding h5 {
    font-size: 1rem
}

.screen-middle-padding h6 {
    font-size: .75rem
}

.screen-middle-padding .load-more-casinos {
    text-decoration: none
}

.screen-middle-padding a {
    text-decoration: underline
}

.screen-middle-padding p {
    margin-bottom: 1rem
}

.screen-middle-padding h1,
.screen-middle-padding h2,
.screen-middle-padding h3,
.screen-middle-padding h4,
.screen-middle-padding h5,
.screen-middle-padding h6 {
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #0ea5e9;
}

.screen-middle-padding {
    /* padding: 1rem 0 */
}

.screen-middle,
.screen-middle-padding {
    max-width: 1280px;
    margin: 0 auto
}

.faq-section {
    color: #fff;
    background: #0EA5E9;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem
}

.faq-section h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #fff
}

.faq {
    border-bottom: 1px solid #fff;
    padding: 1rem 0
}

.faq-question h3 {
    font-size: 1.25rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500
}

.faq-question h3:after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='none' stroke='%23ffffff' stroke-width='2'/><line x1='12' y1='8' x2='12' y2='16' stroke='%23ffffff' stroke-width='2'/><line x1='8' y1='12' x2='16' y2='12' stroke='%23ffffff' stroke-width='2'/></svg>")
}

.faq-question h3:after,
.faq-question.active h3:after {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 6px;
    margin-right: 4px;
    min-width: 1.5rem;
    height: 1.5rem
}

.faq-question.active h3:after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='none' stroke='%23ffffff' stroke-width='2'/><line x1='8' y1='12' x2='16' y2='12' stroke='%23ffffff' stroke-width='2'/></svg>")
}

.faq-answer-wrapper {
    transition-duration: .3s;
    overflow: hidden;
    max-height: 0
}

.faq-answer {
    padding-top: .5rem
}

.faq-answer p {
    margin-bottom: 0
}

@media (max-width: 768px) {
    .stp-lst-y77 {
        flex-direction: column;
    }

    .stp-xa-009 {
        flex: 1 1 auto;
    }

    .blk-sec-x933 {
        background-color: white;
        padding: 10px;
    }
}



/*
CSS copied from assusies site:
 **/
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.close-icon,
.hamburger-icon {
    width: 2.5rem;
    height: 1.5rem;
}

.table-of-contents[data-htoc-state=open] .toc_warper {
    margin-top: 1em;
    opacity: 1;
    max-height: 9999px
}

.screen-middle-padding ul,
ol {
    padding-left: 2rem;
}

.screen-middle-padding ul li {
    list-style: circle
}

.screen-middle-padding ul li p {
    margin-bottom: 0.375rem !important;
}

.screen-middle-padding ol li {
    list-style: decimal;
    margin-bottom: 1rem
}

.screen-middle-padding ol li::marker {
    padding-left: 1rem
}

.screen-middle-padding a {
    text-decoration: underline;
    color: unset;
}

@media (max-width:1024px) {
    .hero-content {
        flex-direction: column;
        max-height: 100%
    }

    .casino-review-casino-left {
        max-width: 100%
    }

    .casino-review-bonus {
        padding-bottom: 2rem
    }

    .casino-review-casino-right {
        width: 100%;
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 2rem;
        padding-left: 0
    }

    .casino-review-casino-left img {
        width: 150px
    }

    .casino-review-bonus-type {
        display: none
    }

    .bonus-list,
    .casino-info-hidden,
    .content-casino-sides,
    .info-and-details {
        flex-direction: column
    }

    .card-provider-list li picture img {
        max-width: 50px
    }

    .content-casino-sides .content-casino-left {
        margin-right: 0
    }

    .casino-left {
        margin: 0
    }

    .bonus,
    .casino-info {
        margin-top: .5rem
    }

    .rewiew-proscons-ul {
        padding-left: 0 !important;
    }

    .casino-box {
        padding: 2rem
    }

    .stars {
        text-align: center
    }

    .bonus-deposit,
    .latest-update,
    .stars {
        width: 100%
    }

    .footer-column h4 {
        margin-top: 2rem
    }

    .menu-logo {
        margin-left: .5rem
    }
}

.content-casino-sides {
    display: flex
}

.content-casino-sides .content-casino-left {
    flex-basis: 75%;
    margin-right: 4rem
}

.content-casino-sides .content-casino-right {
    flex-basis: 35%
}

.pros-cons-casino {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem .5rem;
    box-shadow: 0 0 0 3px #e1e1e133
}

.proscons-item {
    margin-left: 1.5rem;
    list-style: disk;
    margin-bottom: .25rem;
    color: #46464a
}

.proscons-item-title li {
    list-style: none;
    margin-left: 0
}

.proscons-item-title {
    display: flex;
    font-size: 1.5rem;
    align-items: center;
    font-weight: 700;
    margin-bottom: .5rem
}

.pros-svg {
    background-color: #17a830
}

.cons-svg,
.pros-svg {
    padding: .125rem;
    color: #fff;
    border-radius: 9999px;
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
    display: block
}

.cons-svg {
    background-color: #dc2626
}

.rewiew-proscons-ul-cons {
    margin-top: 1rem;
    padding-top: 1rem;
    padding-left: 0 !important;
    border-top: 1px solid #ececec
}

.rewiew-proscons-ul {
    padding-left: 0 !important;
}


@media (max-width:768px) {
    .casino-top {
        flex-direction: column
    }

    .rewiew-proscons-ul {
        padding-left: 1rem !important;
    }

    .bonus-text-top,
    .casino-review-bonus-deposit span {
        text-align: center
    }

    .bonus-text-top-type {
        text-align: center;
        width: 100%
    }

    .dropdown-arrow {
        content: "";
        display: inline-block;
        width: 12px;
        height: 6px;
        background: url(down_arrow.svg) no-repeat 50%;
        background-size: contain;
        margin-left: 5px;
        transition: transform .3s ease;
        padding: .75rem
    }

    .bottom-logo-images {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .footer-logo {
        margin-right: 0;
        margin-bottom: .5rem;
        width: 100%
    }

    .bottom-bonus-box {
        flex-direction: column
    }

    .bottom-bonus-box-left {
        margin-right: 0;
        margin-bottom: .5rem
    }
}

.table-of-content-top-part {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.toc_warper {
    transition: opacity .3s ease, max-height .3s ease
}

.table-of-contents[data-htoc-state=closed] .toc_warper {
    opacity: 0;
    max-height: 0;
    display: none
}

.table-of-contents[data-htoc-state=open] .toc_warper {
    margin-top: 1em;
    opacity: 1;
    max-height: 9999px
}

.bonus-box,
.details-box-insede {
    display: flex;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 0 3px #e1e1e133;
    flex-direction: column;
    border: 1px solid #ddd
}

.header-bonus-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #f9fafb;
    padding: .5rem 1rem;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem
}

.bonus-present-icon {
    width: 30px;
    color: #000;
    margin-right: 1rem
}

.header-bonus-box-left {
    flex-direction: row
}

.header-bonus-box-left,
.header-bonus-box-right {
    display: flex;
    align-items: center
}

.header-bonus-box-left-text {
    display: flex;
    flex-direction: column
}

.header-bonus-box-left-text-bottom {
    font-size: 1rem;
    color: var(--color-blue-dark);
    font-weight: 700
}

.header-bonus-box-left-text-top {
    font-size: .75rem
}

.header-bonus-box-right-text-dark-blue {
    padding: .25rem 1rem;
    box-shadow: 0 0 0 3px #e1e1e133;
    color: #fff;
    background: #0284C7;
    border-radius: 1rem;
    font-size: .8rem
}

.bottom-bonus-box {
    display: flex;
    flex-direction: row;
    padding: 1rem
}

.bottom-bonus-box-left {
    flex-basis: 60%;
    margin-right: 2rem;
    font-size: .8rem
}

.bottom-bonus-box-right {
    flex-basis: 40%;
    display: flex;
    flex-direction: column
}

.faq-arrow {
    width: 20px
}

.bonus-item {
    border-radius: .75rem;
    border: 1px solid #ebebeb;
    display: flex;
    flex-direction: column;
    padding: .25rem .5rem
}

.faq-box .bonus-item:not(:first-child) {
    margin-top: .5rem
}

.bonus-question {
    display: flex;
    justify-content: space-between
}

.bonus-question p {
    margin-bottom: 0
}

.bonus-list,
.info-and-details {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-bottom: 10px
}

.bonus-list .bonus-box {
    flex: 0 0 calc(50% - 10px);
    margin-left: 10px;
    margin-bottom: 10px
}


.how-to-get-bonus {
    text-align: center;
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 1rem;
    margin-top: .25rem
}

.how-to-get-bonus p {
    margin-bottom: 0
}

.bonus-button {
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
    font-weight: 700
}

.bonus-button a {
    /* text-decoration: none */
    color: #fff
}

.bonus-button a:hover {
    color: #fff f9fafb
}

.bonus-t-c {
    font-size: .7rem
}

.get-bonus-button {
    padding: .25rem 2.5rem;
    border-radius: 1rem;
    background: #4C90F5
}

.get-bonus-button:hover {
    background: #0284C7
}

.faq-answer.bonus-anwser {
    padding-top: .5rem;
    padding-left: 0;
    border-top: 1px solid #ededed;
    margin-top: .5rem
}

.details-box-insede {
    padding: 1rem
}

.details-box h5 {
    margin-bottom: .5rem;
    text-align: center
}

.card-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: .5rem 1rem;
    align-items: center;
    border-bottom: 1px solid #e5e7eb
}

.card-value {
    justify-self: end;
    text-align: right;
    font-size: 12px;
    display: flex
}

.card-checkmark-list,
.card-title {
    color: #000;
    font-size: .75rem;
    line-height: 20px;
    font-weight: 400;
    text-align: left
}

.card-table table,
.card-table table td,
.card-table table th {
    border: none;
    padding: 0;
    line-height: 2rem;
    margin-bottom: 0
}

.bonus-list,
.info-and-details {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-bottom: 10px
}

.bonus-list .bonus-box {
    flex: 0 0 calc(50% - 10px);
    margin-left: 10px;
    margin-bottom: 10px
}

.info-and-details .details-box {
    flex: 0 0 calc(33% - 10px);
    margin-left: 10px;
    margin-bottom: 10px
}

.casino-left-small img {
    max-width: 120px
}

.licence-flag-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.licence-flag {
    display: flex;
    flex-direction: column;
    align-items: center
}

.licence-flag img {
    width: 1rem;
    margin-right: 5px
}

.licence-flag span:not(:last-child) {
    margin-right: 5px
}

.card-provider ul {
    display: grid;
    gap: 1rem;
    grid-column: 1/span 2;
    margin-top: 0;
    padding: unset;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr))
}

.card-provider-list {
    list-style: none
}

.card-provider-list li {
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    transition: all 0.2s ease;
}

.card-provider-list li:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-provider-list li span {
    background: #f9fafb;
    width: 100%;
    font-size: 0.875rem;
    text-align: center;
    color: #374151;
    border-radius: 0 0 8px 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-provider-list li picture {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 45px;
}

.card-provider-list li picture img {
    max-width: 80px;
    max-height: 45px;
    height: auto;
    object-fit: contain;
}

.card-provider-list-casino-box {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    grid-column: 1/span 2;
    margin-top: 0;
    padding: unset;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr))
}

.card-provider-list-casino-box li {
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    transition: all 0.2s ease;
}

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

.card-provider-list-casino-box li picture {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 35px;
}

.card-provider-list-casino-box li picture img {
    max-width: 50px;
    max-height: 35px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.text-with-image-icon {
    display: flex;
    align-items: center;
}

.options-container,
.options-container-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
}

@media (max-width: 1023px) and (min-width: 768px) {
    .options-container-new > div {
        flex: 0 0 50% !important;
        max-width: 45%;
    }
}

@media (max-width: 767px) {
    .options-container-new > div {
        flex: 0 0 100% !important;
        max-width: 100%;
    }
}

.options-container-new > div > p{
    height: 100%;
}

.options-container-new div,
.options-container-new p {
    flex: 0 0 calc(20% - 30px);
    margin: 0 !important;
}

.options-container-new p a {
    flex: 0 0 calc(20% - 30px);
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 20px 30px;
    /* box-shadow: 0 4px 8px #0000001a; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: #025e8e;
    width: auto;
    height: auto;
    font-size: 14px;
    text-align: center;
}

.options-container-new p a img {
    margin-bottom: 1rem;
    margin-top: 1rem
}

/* content render */
/* Parent container styling */
.options-container-new>div {
    flex: 0 0 calc(20% - 30px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px #0000001a;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 700;
    color: #025e8e;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

/* Hover effect */
.options-container-new>div:hover {
    background-color: #fafafa;
}

.options-container-new > div > p > a {
    background-color: transparent;
    margin: 0 !important;
    height: 100%;
}

/* Image styling */
.options-container-new>div img {
    margin: 1rem 0;
    max-width: 80px;
    /* optional: resize for consistency */
    height: auto;
    /* display: block; */
}

/* Link styling */
.options-container-new>div a {
    text-decoration: none;
    color: #025e8e;
    font-weight: 700;
}

/* end content render */
.blue-box-rounded {
    background-color: #fff;
}

.blue-box-rounded {
    margin: 1rem 0;
    border: 1px solid #bbb;
    border-radius: 1rem;
    box-shadow: 0 4px 8px #0003;
}

.blue-box-rounded .top-section {
    border-top-left-radius: .95rem;
    border-top-right-radius: .95rem;
    background-color: #ceecfb;
    padding: 1rem 2rem;
}

.blue-box-rounded-text {
    padding: 2rem;
}

.blue-box-rounded-text p {
    padding: 0;
    margin-bottom: 1rem;
}

.blue-dark-box-rounrded-corners,
.blue-light-box-rounded-corners,
.gray-box-rounded-corners,
.white-box-rounded-corners {
    margin: 1rem 0;
    padding: 2rem;
    border: 1px solid #bbb;
    border-radius: 1rem;
    box-shadow: 0 4px 8px #0003
}

.white-box-rounded-corners {
    background-color: #fff
}

.blue-light-box-rounded-corners {
    background-color: #e4f1f8;
}

.gray-box-rounded-corners {
    background-color: #f9f9f9
}

.blue-dark-box-rounrded-corners {
    background-color: #0a426c;
    color: #fff
}

@media (max-width:768px) {
    .blue-dark-box-rounrded-corners,
    .blue-light-box-rounded-corners,
    .gray-box-rounded-corners,
    .white-box-rounded-corners {
        padding: 1.5rem
    }

    .blue-box-rounded-text {
        padding: 1rem
    }
}

.casino-review-section {
    margin-top: 50px;
}

.casino-review-section .casino-review-casino-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

/* Tiptap Table Styles */
.tiptap table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.tiptap table td,
.tiptap table th {
    min-width: 1em;
    border: 2px solid #ced4da;
    padding: 3px 5px;
    vertical-align: top;
    box-sizing: border-box;
    position: relative;
}

.tiptap table td>*,
.tiptap table th>* {
    margin-bottom: 0;
}

.tiptap table th {
    font-weight: bold;
    text-align: left;
    background-color: #f1f3f5;
}

.tiptap table .selectedCell:after {
    z-index: 2;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(200, 200, 255, 0.4);
    pointer-events: none;
}

.tiptap table .column-resize-handle {
    position: absolute;
    right: -2px;
    top: 0;
    bottom: -2px;
    width: 4px;
    background-color: #adf;
    pointer-events: none;
}

.tiptap table p {
    margin: 0;
}

.tableWrapper {
    padding: 1rem 0;
    overflow-x: auto;
}

.resize-cursor {
    cursor: ew-resize;
    cursor: col-resize;
}

/* Responsive improvements for provider cards */
@media (max-width: 768px) {
    .card-provider ul {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .card-provider-list li {
        min-height: 90px;
        padding: 0.5rem;
    }

    .card-provider-list li span {
        font-size: 0.8rem;
        padding: 0.4rem;
        min-height: 2.2rem;
    }

    .card-provider-list li picture img {
        max-width: 60px;
        max-height: 35px;
    }

    .card-provider-list-casino-box {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }

    .card-provider-list-casino-box li {
        min-height: 70px;
        padding: 0.4rem;
    }

    .card-provider-list-casino-box li picture img {
        max-width: 40px;
        max-height: 30px;
    }
}

@media (max-width: 480px) {
    .card-provider ul {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }

    .card-provider-list li {
        min-height: 80px;
        padding: 0.4rem;
    }

    .card-provider-list li span {
        font-size: 0.75rem;
        padding: 0.3rem;
        min-height: 2rem;
    }

    .card-provider-list li picture img {
        max-width: 50px;
        max-height: 30px;
    }

    .card-provider-list-casino-box {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.4rem;
    }

    .card-provider-list-casino-box li {
        min-height: 60px;
        padding: 0.3rem;
    }

    .card-provider-list-casino-box li picture img {
        max-width: 35px;
        max-height: 25px;
    }
}

/* Hero Section */
/* .hero {
    background: var(--color-blue-900);
    z-index: 2;
    background-image: url(bg-hero.jpg);
    background-position-x: right;
    background-repeat: no-repeat
} */

/* .hero-content {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-height: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center
} */

/* Author Block */
.author-block {
    display: flex;
    padding: 1rem 0;
    color: #fff
}

.author-block-small {
    display: flex
}

.author-block div,
.author-block-small div {
    flex-basis: 50%
}

/* Author Image */

.author-image img {
    width: 115px;
    height: 115px;
    border-radius: 1rem
}

/* Author Text */
.author-text {
    display: flex;
    flex-direction: column
}

.auth-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.author-text span {
    flex-grow: 1;
    align-content: center
}

.auth-right {
    display: flex;
    flex-direction: column
}

.auth-right span {
    flex-grow: 1;
    align-content: center
}

/* Author Icon */
.auth-icon svg {
    fill: #fff;
    margin-right: .5rem;
    height: 1rem
}

/* Author Page */
.author-page {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #ececec;
    border-radius: 1rem;
    box-shadow: 0 2px 4px #b3b3b333;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: row
}

/* Auto Header Date */
.auto-header-date {
    display: flex;
    justify-content: space-between;
    margin-bottom: .5rem
}

.auto-header-date h3 {
    display: flex
}

/* Auth Image */
.auth-image {
    -o-object-fit: contain;
    object-fit: contain;
    box-sizing: border-box;
    padding: .3rem;
    -o-object-position: center;
    object-position: center;
    width: 150px;
    height: 150px;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 1rem;
    box-shadow: 0 0 0 3px #e1e1e133;
    margin-right: 1rem
}

/* Auth Page Type */
.auth-page-type {
    padding: .25rem;
    border-radius: 1rem;
    background: #ddd;
    text-align: center;
    width: 100px
}

/* Auth Page Date */
.auth-page-date {
    margin-top: .5rem
}

/* Truncate */
.truncate {
    margin-bottom: .5rem
}

/* Screen Middle */
.screen-middle,
.screen-middle-padding {
    max-width: 1280px;
    margin: 0 auto
}

/* Text Center */
.text-center {
    text-align: center
}

/* Author Pages */
.author-pages {
    padding: 2rem
}

/* Responsive Design */
@media (max-width: 768px) {
    .author-block {
        flex-direction: row;
        padding: 2rem
    }

    .author-page {
        flex-direction: column;
        text-align: center
    }

    .author-pages {
        padding: 2rem
    }

    .hero-content {
        flex-direction: column;
        max-height: 100%
    }

    .hero-text-left {
        max-width: 100%;
        padding: 2rem
    }
}

/* Author name row with right-aligned badge */
.author-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.icon-flex {
    display: flex;
}

.main-flex-div {
    display: flex;
}

.author-name-row .author-name {
    margin: 0;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    background: #eff6ff;
    /* light blue */
    color: #0ea5e9;
    /* sky-500 */
}

.author-badge svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 480px) {
    .author-badge {
        width: 26px;
        height: 26px;
    }

    .author-badge svg {
        width: 16px;
        height: 16px;
    }
}


/* table */

.screen-middle-padding .table-responsive {
    overflow-x: auto;
}

.screen-middle-padding table {
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-spacing: 0
}

.screen-middle-padding table td,
.screen-middle-padding table th {
    padding: 1rem;
    border: 1px solid #bbb
}

.screen-middle-padding tbody td {
    background: #fff;
    text-align: center
}

.screen-middle-padding tbody td a {
    color: #025e8e;
    font-weight: 700
}

.screen-middle-padding table td p,
.screen-middle-padding table th p {
    margin-bottom: 0
}



/* infor detail review page  */

.info-and-details {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-bottom: 10px
}

.info-and-details .details-box {
    flex: 0 0 calc(33% - 10px);
    margin-left: 10px;
    margin-bottom: 10px
}

.details-box-insede {
    padding: 1rem
}

.details-box h5 {
    margin-bottom: .5rem;
    text-align: center
}

.card-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: .5rem 1rem;
    align-items: center;
    border-bottom: 1px solid #e5e7eb
}

.card-value {
    justify-self: end;
    text-align: right;
    font-size: 12px;
    display: flex
}

.card-title {
    color: #000;
    font-size: .75rem;
    line-height: 20px;
    font-weight: 400;
    text-align: left
}

.card-table table,
.card-table table td,
.card-table table th {
    border: none;
    padding: 0;
    line-height: 2rem;
    margin-bottom: 0
}

.licence-flag-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.licence-flag {
    display: flex;
    flex-direction: column;
    align-items: center
}

.licence-flag img {
    width: 1rem;
    margin-right: 5px
}

.licence-flag span:not(:last-child) {
    margin-right: 5px
}

@media (max-width:1024px) {
    .info-and-details {
        flex-direction: column
    }
}

.image-content-block {
    display: inline-block;
    width: 100%;
}

.image-content-block__image-wrapper img {
    width: 100%; /* Make image responsive within its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
}

.points {
    padding: 1rem 0
}

.points h2 {
    padding-bottom: 2rem
}

.points-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.point {
    background-color: #fff;
    border: 1px solid #09adde;
    border-radius: 1rem;
    padding: 2rem;
    position: relative
}

.point-number {
    position: absolute;
    top: calc(50% - 25px);
    text-align: center;
    left: -25px;
    background: #fff;
    color: #000;
    border: 1px solid #09adde;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    padding: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0
}

.point-number p {
    margin-bottom: 0 !important;
}

.point-text h4 {
    margin-bottom: 1rem
}

.point-text h4,
.point-text p {
    color: var(--color-blue-dark)
}

@media (max-width:1024px) {
    .points {
        padding: 1rem
    }
}
