/**
 * SlotsGamblers Bonus Types List - Frontend Styles
 *
 * @package SlotsGamblersBonusTypesList
 * @version 1.0.4
 */

:root {
    --slotsgamblersbonustypeslist-spacing-sm: clamp(0.5rem, 0.6vw, 0.75rem);
    --slotsgamblersbonustypeslist-spacing-md: clamp(0.75rem, 0.9vw, 1rem);
    --slotsgamblersbonustypeslist-spacing-lg: clamp(1rem, 1.2vw, 1.5rem);
    --slotsgamblersbonustypeslist-spacing-xl: clamp(1.25rem, 1.5vw, 2rem);
    --slotsgamblersbonustypeslist-spacing-2xl: clamp(1.75rem, 2vw, 2.5rem);
    --slotsgamblersbonustypeslist-radius-xl: clamp(1rem, 1.2vw, 1.5rem);
}

/* Container - Full width utilization on all screen sizes */
.slotsgamblersbonustypeslist-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
}

.slotsgamblersbonustypeslist-section {
    background: #FFFFFF;
    border: 0.0625rem solid #E5E7EB;
    border-radius: var(--slotsgamblersbonustypeslist-radius-xl);
    padding: var(--slotsgamblersbonustypeslist-spacing-2xl);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* Section Header */
.slotsgamblersbonustypeslist-header {
    --header-gradient-start: #8B5CF6;
    --header-gradient-end: #6D28D9;
    margin-bottom: var(--slotsgamblersbonustypeslist-spacing-2xl);
    background: linear-gradient(135deg, var(--header-gradient-start) 0%, var(--header-gradient-end) 100%);
    padding: var(--slotsgamblersbonustypeslist-spacing-2xl);
    border-radius: var(--slotsgamblersbonustypeslist-radius-xl);
    position: relative;
    overflow: hidden;
}

.slotsgamblersbonustypeslist-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Section Title */
.slotsgamblersbonustypeslist-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 1.8vw + 0.5rem, 2rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: var(--slotsgamblersbonustypeslist-spacing-md);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

/* Section Description */
.slotsgamblersbonustypeslist-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: var(--slotsgamblersbonustypeslist-spacing-md);
    position: relative;
    z-index: 1;
}

.slotsgamblersbonustypeslist-description:last-child {
    margin-bottom: 0;
}

/* Purple Links */
.slotsgamblersbonustypeslist-link-purple {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration-thickness: 0.125rem;
    text-underline-offset: 0.25rem;
}

.slotsgamblersbonustypeslist-link-purple:hover {
    color: #FDE68A;
    text-decoration-color: #FDE68A;
}

/* Bonus Types List */
.slotsgamblersbonustypeslist-list {
    display: grid;
    gap: var(--slotsgamblersbonustypeslist-spacing-xl);
}

/* Bonus Type Item */
.slotsgamblersbonustypeslist-item {
    border-left: 0.25rem solid #8B5CF6;
    padding-left: var(--slotsgamblersbonustypeslist-spacing-lg);
    transition: all 0.3s ease;
}

.slotsgamblersbonustypeslist-item:hover {
    border-left-color: #6D28D9;
    transform: translateX(0.25rem);
}

/* Item Header */
.slotsgamblersbonustypeslist-item-header {
    display: flex;
    align-items: center;
    gap: var(--slotsgamblersbonustypeslist-spacing-sm);
    margin-bottom: var(--slotsgamblersbonustypeslist-spacing-sm);
}

/* Check Icon */
.slotsgamblersbonustypeslist-check-icon {
    --check-icon-gradient-start: #8B5CF6;
    --check-icon-gradient-end: #6D28D9;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--check-icon-gradient-start) 0%, var(--check-icon-gradient-end) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slotsgamblersbonustypeslist-check-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: #FFFFFF;
}

/* Item Title */
.slotsgamblersbonustypeslist-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

/* Item Description */
.slotsgamblersbonustypeslist-item-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: rgb(17, 17, 17);
    margin: 0;
}

/* Highlight Text */
.slotsgamblersbonustypeslist-highlight-text {
    color: #8B5CF6;
    font-weight: 600;
}

/* Tablet Optimization (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .slotsgamblersbonustypeslist-title {
        font-size: 1.75rem;
    }

    .slotsgamblersbonustypeslist-item-title {
        font-size: 1.0625rem;
    }
}

/* Mobile Full-Width Layout with Edge-to-Edge Design */
@media (max-width: 768px) {
    /* Override Elementor container constraints */
    .elementor-widget-slotsgamblersbonustypeslist {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
        position: relative;
    }

    .slotsgamblersbonustypeslist-container {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
        position: relative;
        padding: 0 !important;
    }

    .slotsgamblersbonustypeslist-section {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
        position: relative;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        padding: 0 !important;
    }

    .slotsgamblersbonustypeslist-header {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-bottom: 0 !important;
        border-radius: 0 !important;
        padding: var(--slotsgamblersbonustypeslist-spacing-xl) var(--slotsgamblersbonustypeslist-spacing-lg) !important;
        background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    }

    .slotsgamblersbonustypeslist-header::before {
        background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    }

    .slotsgamblersbonustypeslist-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    }

    .slotsgamblersbonustypeslist-description {
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
    }

    .slotsgamblersbonustypeslist-list {
        padding: var(--slotsgamblersbonustypeslist-spacing-lg) !important;
    }

    .slotsgamblersbonustypeslist-item {
        padding-left: var(--slotsgamblersbonustypeslist-spacing-md) !important;
    }

    .slotsgamblersbonustypeslist-item-title {
        font-size: 0.9375rem !important;
    }

    .slotsgamblersbonustypeslist-item-description {
        font-size: 14px !important;
        line-height: 22px !important;
        font-weight: 400 !important;
        color: rgb(17, 17, 17) !important;
    }

    .slotsgamblersbonustypeslist-check-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .slotsgamblersbonustypeslist-check-icon svg {
        width: 0.75rem;
        height: 0.75rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .slotsgamblersbonustypeslist-title {
        font-size: 1.5rem !important;
    }

    .slotsgamblersbonustypeslist-description {
        font-size: 0.875rem !important;
    }

    .slotsgamblersbonustypeslist-item-title {
        font-size: 0.875rem !important;
    }

    .slotsgamblersbonustypeslist-item-description {
        font-size: 13px !important;
        line-height: 20px !important;
        font-weight: 400 !important;
        color: rgb(17, 17, 17) !important;
    }
}

/* Large Screens (32" displays) - Full width utilization */
@media (min-width: 1920px) {
    .slotsgamblersbonustypeslist-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .slotsgamblersbonustypeslist-section {
        width: 100%;
    }

    .slotsgamblersbonustypeslist-title {
        font-size: 2rem;
    }

    .slotsgamblersbonustypeslist-item-title {
        font-size: 1.125rem;
    }
}

/* Ultra-wide screens (2560px+) */
@media (min-width: 2560px) {
    .slotsgamblersbonustypeslist-title {
        font-size: 2.25rem;
    }

    .slotsgamblersbonustypeslist-description {
        font-size: 1rem;
    }

    .slotsgamblersbonustypeslist-item-title {
        font-size: 1.25rem;
    }

    .slotsgamblersbonustypeslist-item-description {
        font-size: 16px;
        line-height: 27px;
        font-weight: 400;
        color: rgb(17, 17, 17);
    }
}

/* Elementor Editor Compatibility */
.elementor-editor-active .slotsgamblersbonustypeslist-container,
.elementor-editor-active .slotsgamblersbonustypeslist-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px !important;
}

