/**
 * SlotsGamblers Top Slots Table - Frontend Styles
 *
 * @package SlotsGamblersTopSlotsTable
 * @version 1.0.4
 */

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */
.slotsgamblerstopslotstable-section {
    /* SlotsGamblers Brand Colors */
    --slotsgamblerstopslotstable-color-purple: #9333EA;
    --slotsgamblerstopslotstable-color-purple-light: #F3E8FF;
    --slotsgamblerstopslotstable-color-orange: #FF8C42;
    --slotsgamblerstopslotstable-color-orange-light: #FFF4E6;
    --slotsgamblerstopslotstable-color-green: #10B981;
    --slotsgamblerstopslotstable-color-green-light: #D1FAE5;
    --slotsgamblerstopslotstable-color-red: #EF4444;
    --slotsgamblerstopslotstable-color-red-light: #FEE2E2;
    --slotsgamblerstopslotstable-color-white: #FFFFFF;
    --slotsgamblerstopslotstable-color-gray-light: #F7F7F7;
    --slotsgamblerstopslotstable-color-gray-medium: #E0E0E0;
    --slotsgamblerstopslotstable-color-gray-dark: #6B7280;
    --slotsgamblerstopslotstable-color-black: #1A1A1A;
    --slotsgamblerstopslotstable-text-primary: rgb(17, 17, 17);
    --slotsgamblerstopslotstable-text-secondary: rgb(75, 85, 99);
    --slotsgamblerstopslotstable-text-muted: #9CA3AF;
    --slotsgamblerstopslotstable-border-color: #E5E7EB;
    --slotsgamblerstopslotstable-brand-gradient: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    
    /* SlotsGamblers Typography Standard */
    --slotsgamblerstopslotstable-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --slotsgamblerstopslotstable-body-size-desktop: 16px;
    --slotsgamblerstopslotstable-body-lineheight-desktop: 27px;
    --slotsgamblerstopslotstable-body-size-mobile: 14px;
    --slotsgamblerstopslotstable-body-lineheight-mobile: 22px;
    --slotsgamblerstopslotstable-body-size-small: 13px;
    --slotsgamblerstopslotstable-body-lineheight-small: 20px;
    
    /* Spacing */
    --slotsgamblerstopslotstable-spacing-xs: 0.25rem;
    --slotsgamblerstopslotstable-spacing-sm: 0.5rem;
    --slotsgamblerstopslotstable-spacing-md: 1rem;
    --slotsgamblerstopslotstable-spacing-lg: 1.5rem;
    --slotsgamblerstopslotstable-spacing-xl: 2rem;
    --slotsgamblerstopslotstable-spacing-2xl: 3rem;
    
    /* Border Radius */
    --slotsgamblerstopslotstable-radius-sm: 0.25rem;
    --slotsgamblerstopslotstable-radius-md: 0.5rem;
    --slotsgamblerstopslotstable-radius-lg: 0.75rem;
    --slotsgamblerstopslotstable-radius-xl: 1rem;
    --slotsgamblerstopslotstable-radius-2xl: 1.5rem;
}

/* ========================================
   MAIN SECTION
   ======================================== */
.slotsgamblerstopslotstable-section {
    margin-top: var(--slotsgamblerstopslotstable-spacing-2xl);
    margin-bottom: var(--slotsgamblerstopslotstable-spacing-2xl);
    font-family: var(--slotsgamblerstopslotstable-font-family);
    font-size: var(--slotsgamblerstopslotstable-body-size-desktop);
    line-height: var(--slotsgamblerstopslotstable-body-lineheight-desktop);
    font-weight: 400;
    font-style: normal;
    color: var(--slotsgamblerstopslotstable-text-secondary);
    box-sizing: border-box;
}

.slotsgamblerstopslotstable-section *,
.slotsgamblerstopslotstable-section *::before,
.slotsgamblerstopslotstable-section *::after {
    box-sizing: inherit;
}

/* ========================================
   HEADER SECTION
   ======================================== */
.slotsgamblerstopslotstable-header {
    text-align: center;
    padding: var(--slotsgamblerstopslotstable-spacing-xl) var(--slotsgamblerstopslotstable-spacing-xl) var(--slotsgamblerstopslotstable-spacing-lg);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-bottom: 0.125rem solid var(--slotsgamblerstopslotstable-border-color);
    border-top-left-radius: var(--slotsgamblerstopslotstable-radius-xl);
    border-top-right-radius: var(--slotsgamblerstopslotstable-radius-xl);
}

.slotsgamblerstopslotstable-header-title {
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
    font-weight: 900;
    color: var(--slotsgamblerstopslotstable-text-primary);
    margin: 0 0 var(--slotsgamblerstopslotstable-spacing-md) 0;
    line-height: 1.2;
    background: var(--slotsgamblerstopslotstable-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slotsgamblerstopslotstable-header-description {
    font-size: var(--slotsgamblerstopslotstable-body-size-desktop);
    line-height: var(--slotsgamblerstopslotstable-body-lineheight-desktop);
    font-weight: 400;
    color: var(--slotsgamblerstopslotstable-text-secondary);
    max-width: 50rem;
    margin: 0 auto;
}

/* ========================================
   TABLE WRAPPER
   ======================================== */
.slotsgamblerstopslotstable-table-wrapper {
    overflow: hidden;
    border-radius: var(--slotsgamblerstopslotstable-radius-xl);
    border: 0.125rem solid var(--slotsgamblerstopslotstable-border-color);
    background: var(--slotsgamblerstopslotstable-color-white);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    position: relative;
}

.slotsgamblerstopslotstable-table-container {
    overflow-x: auto;
    position: relative;
}

/* ========================================
   TABLE STRUCTURE
   ======================================== */
.slotsgamblerstopslotstable-table {
    width: 100%;
    border-collapse: collapse;
}

/* Table Header */
.slotsgamblerstopslotstable-table thead {
    background: var(--slotsgamblerstopslotstable-color-gray-light);
    border-bottom: 0.125rem solid var(--slotsgamblerstopslotstable-border-color);
}

.slotsgamblerstopslotstable-table thead tr th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--slotsgamblerstopslotstable-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Column Widths */
.slotsgamblerstopslotstable-col-rank {
    width: 8%;
    text-align: center !important;
}

.slotsgamblerstopslotstable-col-slot {
    width: 25%;
}

.slotsgamblerstopslotstable-col-rtp {
    width: 12%;
    text-align: center !important;
}

.slotsgamblerstopslotstable-col-volatility {
    width: 15%;
    text-align: center !important;
}

.slotsgamblerstopslotstable-col-max-win {
    width: 15%;
    text-align: right !important;
}

.slotsgamblerstopslotstable-col-action {
    width: 25%;
    text-align: center !important;
}

/* ========================================
   TABLE BODY ROWS
   ======================================== */
.slotsgamblerstopslotstable-slot-row {
    border-bottom: 0.0625rem solid var(--slotsgamblerstopslotstable-border-color);
    transition: all 0.3s ease;
}

/* Zebra Striping */
.slotsgamblerstopslotstable-slot-row:nth-child(even) {
    background: rgba(247, 247, 247, 0.5);
}

.slotsgamblerstopslotstable-slot-row:hover {
    background: rgba(247, 247, 247, 0.5);
}

.slotsgamblerstopslotstable-slot-row:last-child {
    border-bottom: none;
}

.slotsgamblerstopslotstable-slot-row td {
    padding: 0.625rem 1rem;
}

/* ========================================
   RANK CELL
   ======================================== */
.slotsgamblerstopslotstable-rank-cell {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slotsgamblerstopslotstable-color-purple);
}

/* ========================================
   SLOT CELL
   ======================================== */
.slotsgamblerstopslotstable-slot-cell {
    padding: 0.625rem 1rem !important;
}

.slotsgamblerstopslotstable-slot-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slotsgamblerstopslotstable-slot-image {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    background: linear-gradient(135deg, var(--slotsgamblerstopslotstable-color-gray-light), #FAFAFA);
    border-radius: var(--slotsgamblerstopslotstable-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 0.125rem solid var(--slotsgamblerstopslotstable-border-color);
    transition: all 0.3s ease;
}

.slotsgamblerstopslotstable-slot-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.slotsgamblerstopslotstable-slot-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slotsgamblerstopslotstable-text-primary);
    line-height: 1.3;
    white-space: nowrap;
}

.slotsgamblerstopslotstable-slot-provider {
    font-size: var(--slotsgamblerstopslotstable-body-size-desktop);
    line-height: var(--slotsgamblerstopslotstable-body-lineheight-desktop);
    color: var(--slotsgamblerstopslotstable-text-secondary);
    font-weight: 400;
}

/* ========================================
   RTP CELL
   ======================================== */
.slotsgamblerstopslotstable-rtp-cell {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #2563EB;
}

/* ========================================
   VOLATILITY CELL
   ======================================== */
.slotsgamblerstopslotstable-volatility-cell {
    text-align: center;
}

.slotsgamblerstopslotstable-volatility-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: var(--slotsgamblerstopslotstable-radius-sm);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.slotsgamblerstopslotstable-volatility-badge.slotsgamblerstopslotstable-volatility-high {
    background: var(--slotsgamblerstopslotstable-color-red-light);
    color: var(--slotsgamblerstopslotstable-color-red);
    border: 0.0625rem solid var(--slotsgamblerstopslotstable-color-red);
}

.slotsgamblerstopslotstable-volatility-badge.slotsgamblerstopslotstable-volatility-medium {
    background: var(--slotsgamblerstopslotstable-color-orange-light);
    color: var(--slotsgamblerstopslotstable-color-orange);
    border: 0.0625rem solid var(--slotsgamblerstopslotstable-color-orange);
}

.slotsgamblerstopslotstable-volatility-badge.slotsgamblerstopslotstable-volatility-low {
    background: var(--slotsgamblerstopslotstable-color-green-light);
    color: var(--slotsgamblerstopslotstable-color-green);
    border: 0.0625rem solid var(--slotsgamblerstopslotstable-color-green);
}

/* ========================================
   MAX WIN CELL
   ======================================== */
.slotsgamblerstopslotstable-max-win-cell {
    text-align: right;
    font-size: 0.9375rem;
    font-weight: 900;
    color: var(--slotsgamblerstopslotstable-color-green);
    transition: all 0.3s ease;
}

/* ========================================
   ACTION CELL - BUTTONS
   ======================================== */
.slotsgamblerstopslotstable-action-cell {
    text-align: center;
}

.slotsgamblerstopslotstable-action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.slotsgamblerstopslotstable-play-now-btn {
    display: inline-block;
    padding: 0.3rem 1.25rem;
    background: var(--slotsgamblerstopslotstable-brand-gradient);
    color: var(--slotsgamblerstopslotstable-color-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--slotsgamblerstopslotstable-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.125rem 0.5rem rgba(147, 51, 234, 0.3);
    text-decoration: none;
    white-space: nowrap;
}

.slotsgamblerstopslotstable-play-now-btn:hover {
    transform: translateY(-0.125rem) scale(1.05);
    box-shadow: 0 0.25rem 0.75rem rgba(147, 51, 234, 0.5);
}

.slotsgamblerstopslotstable-play-now-btn:active {
    transform: translateY(0) scale(0.98);
}

.slotsgamblerstopslotstable-review-btn {
    display: inline-block;
    padding: 0.3rem 1.25rem;
    background: var(--slotsgamblerstopslotstable-color-white);
    color: var(--slotsgamblerstopslotstable-color-purple);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 0.125rem solid var(--slotsgamblerstopslotstable-color-purple);
    border-radius: var(--slotsgamblerstopslotstable-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.slotsgamblerstopslotstable-review-btn:hover {
    background: var(--slotsgamblerstopslotstable-color-purple);
    color: var(--slotsgamblerstopslotstable-color-white);
    transform: translateY(-0.125rem) scale(1.05);
    box-shadow: 0 0.25rem 0.75rem rgba(147, 51, 234, 0.3);
}

.slotsgamblerstopslotstable-review-btn:active {
    transform: translateY(0) scale(0.98);
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.slotsgamblerstopslotstable-footer {
    padding: var(--slotsgamblerstopslotstable-spacing-xl);
    background: var(--slotsgamblerstopslotstable-color-gray-light);
    border-top: 0.125rem solid var(--slotsgamblerstopslotstable-border-color);
    width: 100%;
}

.slotsgamblerstopslotstable-footer-title {
    font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
    font-weight: 700;
    color: var(--slotsgamblerstopslotstable-text-primary);
    margin: 0 0 var(--slotsgamblerstopslotstable-spacing-md) 0;
    line-height: 1.3;
    text-align: left;
}

.slotsgamblerstopslotstable-footer-text {
    font-size: var(--slotsgamblerstopslotstable-body-size-desktop);
    line-height: var(--slotsgamblerstopslotstable-body-lineheight-desktop);
    font-weight: 400;
    color: var(--slotsgamblerstopslotstable-text-secondary);
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.slotsgamblerstopslotstable-footer-text p {
    margin: 0 0 var(--slotsgamblerstopslotstable-spacing-sm) 0;
    text-align: left;
}

.slotsgamblerstopslotstable-footer-text p:last-child {
    margin-bottom: 0;
}

.slotsgamblerstopslotstable-footer-text strong {
    font-weight: 700;
    color: var(--slotsgamblerstopslotstable-text-primary);
}

.slotsgamblerstopslotstable-footer-text a {
    color: var(--slotsgamblerstopslotstable-color-purple);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.slotsgamblerstopslotstable-footer-text a:hover {
    color: var(--slotsgamblerstopslotstable-color-orange);
}

/* ========================================
   RESPONSIVE - TABLET (768px - 1023px)
   ======================================== */
@media (min-width: 48rem) and (max-width: 63.9375rem) {
    .slotsgamblerstopslotstable-table thead tr th {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .slotsgamblerstopslotstable-slot-row td {
        padding: 0.5rem 0.75rem;
    }

    .slotsgamblerstopslotstable-slot-image {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
        font-size: 1rem;
    }

    .slotsgamblerstopslotstable-slot-name {
        font-size: 0.8125rem;
    }

    .slotsgamblerstopslotstable-slot-provider {
        font-size: 0.625rem;
    }
    
    .slotsgamblerstopslotstable-play-now-btn,
    .slotsgamblerstopslotstable-review-btn {
        padding: 0.25rem 1rem;
        font-size: 0.6875rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (max 768px)
   FULL-WIDTH MOBILE LAYOUT WITH calc(-50vw + 50%)
   ======================================== */
@media (max-width: 48rem) {
    .slotsgamblerstopslotstable-section {
        margin-top: var(--slotsgamblerstopslotstable-spacing-xl);
        margin-bottom: var(--slotsgamblerstopslotstable-spacing-xl);
        /* SlotsGamblers Typography - Mobile */
        font-size: var(--slotsgamblerstopslotstable-body-size-mobile);
        line-height: var(--slotsgamblerstopslotstable-body-lineheight-mobile);
        /* Full-Width Mobile Layout with calc(-50vw + 50%) */
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
    }

    .slotsgamblerstopslotstable-header {
        padding: var(--slotsgamblerstopslotstable-spacing-lg);
        border-bottom: 0.125rem solid var(--slotsgamblerstopslotstable-border-color);
        border-top-left-radius: var(--slotsgamblerstopslotstable-radius-xl);
        border-top-right-radius: var(--slotsgamblerstopslotstable-radius-xl);
    }

    .slotsgamblerstopslotstable-header-title {
        font-size: 1.5rem;
        margin-bottom: var(--slotsgamblerstopslotstable-spacing-md);
    }

    .slotsgamblerstopslotstable-header-description {
        font-size: var(--slotsgamblerstopslotstable-body-size-mobile) !important;
        line-height: var(--slotsgamblerstopslotstable-body-lineheight-mobile) !important;
        text-align: left;
    }

    .slotsgamblerstopslotstable-footer {
        padding: var(--slotsgamblerstopslotstable-spacing-lg);
        border-top: 0.125rem solid var(--slotsgamblerstopslotstable-border-color);
    }

    .slotsgamblerstopslotstable-footer-title {
        font-size: 1.125rem;
        text-align: left;
    }

    .slotsgamblerstopslotstable-footer-text {
        font-size: var(--slotsgamblerstopslotstable-body-size-mobile) !important;
        line-height: var(--slotsgamblerstopslotstable-body-lineheight-mobile) !important;
        text-align: left;
    }

    .slotsgamblerstopslotstable-table-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .slotsgamblerstopslotstable-table-container {
        position: relative;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Scroll indicator - animated hand */
    .slotsgamblerstopslotstable-table-container::before {
        content: '👉';
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        font-size: 2.5rem;
        z-index: 10;
        pointer-events: none;
        animation: slotsgamblerstopslotstable-swipeHint 2s ease-in-out infinite;
        opacity: 0.8;
    }

    @keyframes slotsgamblerstopslotstable-swipeHint {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
        }
        50% {
            transform: translateY(-50%) translateX(10px);
        }
    }

    /* Hide hand after first scroll */
    .slotsgamblerstopslotstable-table-container.slotsgamblerstopslotstable-scrolled::before {
        display: none;
    }

    .slotsgamblerstopslotstable-table {
        min-width: 600px;
    }

    .slotsgamblerstopslotstable-table thead tr th {
        padding: 0.25rem 0.2rem;
        font-size: 0.5625rem;
    }

    .slotsgamblerstopslotstable-slot-row td {
        padding: 0.375rem 0.2rem;
    }
    
    .slotsgamblerstopslotstable-rank-cell {
        padding-right: 0.1rem !important;
    }
    
    .slotsgamblerstopslotstable-slot-cell {
        padding-left: 0.1rem !important;
    }

    .slotsgamblerstopslotstable-slot-info {
        gap: 0.25rem;
    }

    .slotsgamblerstopslotstable-slot-image {
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
        font-size: 0.75rem;
    }

    .slotsgamblerstopslotstable-slot-name {
        font-size: 0.9375rem !important;
        line-height: 1.2;
    }

    .slotsgamblerstopslotstable-slot-provider {
        font-size: var(--slotsgamblerstopslotstable-body-size-mobile) !important;
        line-height: var(--slotsgamblerstopslotstable-body-lineheight-mobile) !important;
    }

    .slotsgamblerstopslotstable-rank-cell {
        font-size: 0.75rem;
    }

    .slotsgamblerstopslotstable-rtp-cell {
        font-size: 0.625rem;
    }

    .slotsgamblerstopslotstable-max-win-cell {
        font-size: 0.6875rem;
        font-weight: 900;
    }
    
    .slotsgamblerstopslotstable-volatility-badge {
        padding: 0.1rem 0.35rem;
        font-size: 0.5rem;
    }

    .slotsgamblerstopslotstable-action-buttons {
        gap: 0.2rem;
        flex-wrap: nowrap;
    }

    .slotsgamblerstopslotstable-play-now-btn,
    .slotsgamblerstopslotstable-review-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.5625rem;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max 480px)
   ======================================== */
@media (max-width: 30rem) {
    .slotsgamblerstopslotstable-section {
        /* SlotsGamblers Typography - Small Mobile */
        font-size: var(--slotsgamblerstopslotstable-body-size-small);
        line-height: var(--slotsgamblerstopslotstable-body-lineheight-small);
    }

    .slotsgamblerstopslotstable-header {
        padding: 0.75rem;
    }

    .slotsgamblerstopslotstable-header-title {
        font-size: 1.125rem;
    }

    .slotsgamblerstopslotstable-header-description {
        font-size: var(--slotsgamblerstopslotstable-body-size-small) !important;
        line-height: var(--slotsgamblerstopslotstable-body-lineheight-small) !important;
    }

    .slotsgamblerstopslotstable-footer {
        padding: 0.75rem;
    }

    .slotsgamblerstopslotstable-footer-title {
        font-size: 0.9375rem;
    }

    .slotsgamblerstopslotstable-footer-text {
        font-size: var(--slotsgamblerstopslotstable-body-size-small) !important;
        line-height: var(--slotsgamblerstopslotstable-body-lineheight-small) !important;
    }

    .slotsgamblerstopslotstable-table {
        min-width: 550px;
    }

    .slotsgamblerstopslotstable-table thead tr th {
        padding: 0.2rem 0.15rem;
        font-size: 0.5rem;
    }

    .slotsgamblerstopslotstable-slot-row td {
        padding: 0.3rem 0.15rem;
    }
    
    .slotsgamblerstopslotstable-rank-cell {
        padding-right: 0.075rem !important;
    }
    
    .slotsgamblerstopslotstable-slot-cell {
        padding-left: 0.075rem !important;
    }

    .slotsgamblerstopslotstable-slot-image {
        width: 1.35rem;
        height: 1.35rem;
        min-width: 1.35rem;
        font-size: 0.7rem;
    }

    .slotsgamblerstopslotstable-slot-name {
        font-size: 0.875rem !important;
    }

    .slotsgamblerstopslotstable-slot-provider {
        font-size: var(--slotsgamblerstopslotstable-body-size-small) !important;
        line-height: var(--slotsgamblerstopslotstable-body-lineheight-small) !important;
    }

    .slotsgamblerstopslotstable-rank-cell {
        font-size: 0.6875rem;
    }

    .slotsgamblerstopslotstable-rtp-cell {
        font-size: 0.5625rem;
    }

    .slotsgamblerstopslotstable-max-win-cell {
        font-size: 0.625rem;
    }
    
    .slotsgamblerstopslotstable-volatility-badge {
        padding: 0.075rem 0.3rem;
        font-size: 0.45rem;
    }

    .slotsgamblerstopslotstable-play-now-btn,
    .slotsgamblerstopslotstable-review-btn {
        padding: 0.175rem 0.45rem;
        font-size: 0.5rem;
    }
}

/* ========================================
   LARGE SCREENS (32" monitors and up)
   Full container width utilization
   ======================================== */
@media (min-width: 1920px) {
    .slotsgamblerstopslotstable-section {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ========================================
   ELEMENTOR COMPATIBILITY
   ======================================== */
.elementor-widget-slotsgamblerstopslotstable .slotsgamblerstopslotstable-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Mobile full-width in Elementor */
@media (max-width: 48rem) {
    .elementor-widget-slotsgamblerstopslotstable .slotsgamblerstopslotstable-section {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
        position: relative;
    }
}

