/* ===== FILTER BAR STYLES ===== */
.cl-filter-bar-inline {
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cl-filter-bar-inline .cl-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* Sort always to the right */
.cl-filter-bar-inline .cl-sort-dropdown {
    margin-left: auto;
}

.cl-filter-bar-inline .cl-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cl-tab {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cl-tab:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.cl-tab.active {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

/* Custom Sort Dropdown */
.cl-sort-dropdown {
    position: relative;
}

.cl-sort-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.cl-sort-trigger:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.cl-sort-icon {
    display: none;
}

.cl-sort-chevron {
    opacity: 0.5;
    transition: transform 0.2s;
}

.cl-sort-dropdown.open .cl-sort-chevron {
    transform: rotate(180deg);
}

.cl-sort-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 100%;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.cl-sort-dropdown.open .cl-sort-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cl-sort-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #9ca3af;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.cl-sort-option:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.cl-sort-option.active {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

@media (max-width: 768px) {
    .cl-filter-bar-inline .cl-filter-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .cl-filter-bar-inline .cl-filter-tabs {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex: 1;
        min-width: 0;
        justify-content: flex-start;
    }

    .cl-filter-bar-inline .cl-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .cl-tab {
        padding: 8px 12px;
        font-size: 11px;
        flex-shrink: 0;
    }

    .cl-sort-dropdown {
        flex-shrink: 0;
        margin-left: auto;
    }

    .cl-sort-label-full {
        display: none;
    }

    .cl-sort-icon {
        display: block;
        opacity: 0.8;
    }

    .cl-sort-trigger {
        padding: 8px 10px;
        gap: 4px;
    }

    .cl-sort-chevron {
        width: 10px;
        height: 10px;
    }
}

/* Load More Button Styles */
.load-more-btn {
    cursor: pointer;
    border: none;
    position: relative;
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.load-more-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: load-more-spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes load-more-spin {
    to { transform: rotate(360deg); }
}

/* Casino Compact Grid - 4 columns, 900px width */
.casino-grid-compact {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.compact-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.compact-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.compact-card-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    gap: 10px;
    flex: 1;
}

.compact-card-logo {
    width: 56px;
    height: 38px;
    min-width: 56px;
    border-radius: 10px;
    background: #e0e0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
}

.compact-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.compact-card-logo span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
}

.compact-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.compact-card-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    transition: color 0.2s ease;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-card-top:hover .compact-card-name {
    color: #FFD700;
}

.compact-card-date {
    font-size: 0.65rem;
    color: #6b7280;
    text-align: left;
}

.compact-card-btn {
    display: block;
    padding: 8px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    color: #000;
    font-weight: 700;
    font-size: 0.7rem;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    margin-top: auto;
}

.compact-card-btn:hover {
    background: linear-gradient(135deg, #FFE333, #FFD700);
}

@media (max-width: 768px) {
    .casino-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .compact-card-logo {
        width: 48px;
        height: 32px;
        min-width: 48px;
    }

    .compact-card-name {
        font-size: 0.75rem;
    }
}

/* Fix button widths - override mobile styles on desktop */
.view-all-btn {
    display: inline-block !important;
    width: auto !important;
    padding: 10px 28px !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.08em !important;
    border-radius: 6px !important;
}

/* Section title - no underline, centered */
.top-casinos-section .section-title {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 5px;
    display: flex !important;
    justify-content: center !important;
    width: 100%;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: left;
    margin: 0 0 20px 0;
}

.hero-btn {
    width: auto !important;
}

.cta-btn {
    width: auto !important;
}

.details-btn {
    width: auto !important;
}

/* Left align content, center buttons */
.top-casinos-section .container {
    text-align: left;
}

.top-casinos-section .section-subtitle {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: 100%;
}

.top-casinos-section .view-all-btn {
    display: block !important;
    margin: 30px auto 0 !important;
    width: fit-content !important;
}

.casinos-grid {
    text-align: left;
}

/* ===== CASINO TABLE LIST ===== */
.casino-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.casino-table-header {
    display: grid;
    grid-template-columns: 80px 1fr 140px 120px;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.casino-table-header .casino-table-col {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.casino-table-row {
    display: grid;
    grid-template-columns: 80px 1fr 140px 120px;
    gap: 15px;
    padding: 15px 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease;
}

.casino-table-row:last-child {
    border-bottom: none;
}


.casino-table-logo {
    width: 70px;
    height: 47px;
    background: #e0e0e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
}

.casino-table-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.casino-table-logo span {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.casino-table-name {
    font-size: 1rem;
    font-weight: 600;
    color: #FFD700;
    text-decoration: none;
}

.casino-table-date {
    font-size: 0.9rem;
    color: #9ca3af;
}

.casino-table-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #FFD700;
    color: #000;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
}

.casino-table-btn:hover {
    background: #ffdf33;
}

.casino-table-btn-secondary {
    background: #3a3a4a;
    color: #fff;
}

.casino-table-btn-secondary:hover {
    background: #4a4a5a;
}

@media (max-width: 768px) {
    .casino-table-header {
        display: none;
    }

    .casino-table-row {
        display: grid;
        grid-template-columns: 58px 1fr auto;
        grid-template-rows: auto auto;
        grid-template-areas:
            "logo name action"
            "logo date action";
        gap: 0px 12px;
        padding: 12px;
        align-items: center;
    }

    .casino-table-col-logo {
        grid-area: logo;
        align-self: center;
    }

    .casino-table-col-name {
        grid-area: name;
        align-self: end;
    }

    .casino-table-name {
        font-size: 0.85rem;
    }

    .casino-table-col-date {
        grid-area: date;
        align-self: start;
    }

    .casino-table-date {
        font-size: 0.65rem;
    }

    .casino-table-col-action {
        grid-area: action;
        align-self: center;
    }

    .casino-table-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
    }

    .casino-table-logo {
        width: 58px;
        height: 40px;
        border-radius: 8px;
        padding: 4px;
    }
}

/* Additional styles for index page sections */
.content-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.03);
}

.section-text-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
}

.section-text-content p {
    margin-bottom: 1rem;
}

.section-text-content strong {
    color: #FFD700;
}

.richtext-content {
    max-width: 900px;
    margin: 0 auto;
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
}

.richtext-content h2, .richtext-content h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    text-align: center;
}

.richtext-content p {
    margin-bottom: 1rem;
    text-align: center;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
    .trust-section [style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .trust-section [style*="grid"] {
        grid-template-columns: 1fr !important;
    }
}

/* ===== FEATURED CASINO STRIP ===== */
.featured-strip-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.strip-title {
    text-align: center;
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.casino-strip {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
}

.casino-strip::-webkit-scrollbar {
    height: 6px;
}

.casino-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.casino-strip::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

.strip-casino {
    flex: 0 0 auto;
    width: calc(33.333% - 10px);
    min-width: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.strip-casino:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

.strip-casino-logo {
    width: 80px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

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

.strip-casino-logo span {
    color: #000;
    font-weight: 800;
    font-size: 14px;
}

.strip-casino-info {
    flex: 1;
    min-width: 0;
}

.strip-casino-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.strip-casino-bonus {
    display: block;
    font-size: 13px;
    color: #FFD700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.strip-arrow {
    color: rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.strip-casino:hover .strip-arrow {
    color: rgba(255, 215, 0, 0.7);
}

.featured-strip-section .view-all-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

/* ===== RESPONSIBLE GAMING SECTION ===== */
.responsible-gaming-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-top: 3px solid rgba(255, 215, 0, 0.3);
    border-bottom: 3px solid rgba(255, 215, 0, 0.3);
}

.responsible-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.responsible-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
}

.responsible-text {
    flex: 1;
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
}

.responsible-text h2, .responsible-text h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.responsible-text p {
    margin-bottom: 15px;
}

.responsible-text a {
    color: #FFD700;
    text-decoration: underline;
}

/* Bonus Grid Adjustments */
.bonus-grid .casino-card {
    min-height: 260px;
}

.bonus-wagering {
    font-size: 12px;
    color: rgba(255, 215, 0, 0.7);
    margin-bottom: 15px;
}

/* Games Grid - card style with big images */
.games-grid {
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.games-grid .game-card-link {
    display: block;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(30,35,50,0.9) 0%, rgba(20,25,40,0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 10px;
}

.games-grid .casino-logo {
    width: 92%;
    height: 120px;
    margin: 8px auto 10px;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    overflow: hidden;
}

.games-grid .casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.games-grid .casino-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin: 0 8px 4px;
    line-height: 1.2;
}

.games-grid .casino-bonuses {
    font-size: 0.65rem;
    color: #6b7280;
    margin: 0 8px 8px;
}

.games-grid .details-btn {
    display: block;
    margin: 0 8px;
    padding: 6px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    color: #000;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    text-align: center;
    border-radius: 5px;
}

@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .games-grid .casino-logo {
        height: 115px;
    }

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-title {
        font-size: 28px;
    }

    .trust-card {
        padding: 25px 20px;
    }

    .strip-casino {
        width: calc(80% - 10px);
        min-width: 260px;
    }

    .responsible-content {
        flex-direction: column;
        text-align: center;
    }

    .responsible-icon {
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .games-grid .casino-logo {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .strip-casino {
        width: 100%;
        min-width: unset;
    }
}

/* ===== BANKING METHODS SECTION ===== */
.banking-methods-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.banking-method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.banking-method-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.banking-method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    overflow: hidden;
}

.banking-method-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.banking-method-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.banking-method-type {
    font-size: 0.8rem;
    color: #FFD700;
    opacity: 0.8;
}

/* ===== AUTHORS/TEAM SECTION ===== */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.author-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.author-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.author-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.author-role {
    display: block;
    font-size: 0.85rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .banking-methods-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .authors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .banking-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .authors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .banking-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .authors-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== EXPERTS/AUTHORS SECTION ===== */
.experts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c1220 0%, #141e30 100%);
    position: relative;
}

.experts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.experts-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.experts-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.experts-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}

.experts-subtitle {
    font-size: 16px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.expert-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.expert-card:hover {
    border-color: rgba(255, 215, 0, 0.25);
}

.expert-avatar-link {
    display: block;
    text-decoration: none;
}

.expert-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 3px solid rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-avatar span {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFD700;
}

.expert-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.expert-name a {
    color: #fff;
    text-decoration: none;
}

.expert-role {
    display: block;
    font-size: 0.85rem;
    color: #FFD700;
    margin-bottom: 16px;
}

.expert-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.expert-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    transition: all 0.3s ease;
}

.expert-socials a:hover {
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.08);
}

.experts-section .view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .experts-title {
        font-size: 28px;
    }

    .expert-card {
        padding: 24px 16px;
    }

    .expert-avatar {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 480px) {
    .experts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.newsletter-content {
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 1rem;
    color: #9ca3af;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.newsletter-form input[type="email"] {
    width: 280px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input[type="email"]::placeholder {
    color: #6b7280;
}

.newsletter-form button {
    padding: 14px 30px;
    background: linear-gradient(135deg, #FFD700, #d4af37);
    border: none;
    border-radius: 8px;
    color: #030712;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ===== NEWSLETTER STATES ===== */
.newsletter-state {
    display: none;
    align-items: center;
    gap: 40px;
}

.newsletter-state-default {
    display: flex;
}

.newsletter-state-success {
    justify-content: center;
}

.newsletter-wrapper-success .newsletter-state-default {
    display: none;
}

.newsletter-wrapper-success .newsletter-state-success {
    display: flex;
}

.newsletter-icon-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.3), rgba(40, 167, 69, 0.1)) !important;
    border-color: rgba(40, 167, 69, 0.5) !important;
    color: #4CAF50 !important;
}

/* Input wrapper for error positioning */
.newsletter-input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.newsletter-error {
    position: absolute;
    bottom: -22px;
    left: 0;
    font-size: 0.8rem;
    color: #ff6b6b;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.newsletter-error.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button states */
#newsletter-btn {
    position: relative;
    min-width: 140px;
}

#newsletter-btn .btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(3, 7, 18, 0.3);
    border-top-color: #030712;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#newsletter-btn.loading .btn-text {
    opacity: 0;
}

#newsletter-btn.loading .btn-loader {
    display: block;
}

#newsletter-btn.loading {
    pointer-events: none;
}

/* Error state for input */
.newsletter-form input.error {
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 107, 107, 0.05);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 900px) {
    .newsletter-state {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 20px;
    }

    .newsletter-input-wrapper {
        width: 100%;
    }

    .newsletter-error {
        position: static;
        margin-top: 8px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }
}