/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #002868;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #BF0A30;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8B0000;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #002868;
    box-shadow: 0 2px 10px rgba(0, 40, 104, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand-link:hover {
    transform: scale(1.05);
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.navbar-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFD700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: 0.3s;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #002868 0%, #1a365d 100%);
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.4);
    border-radius: 8px;
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-link {
    display: block;
    color: #FFFFFF;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), rgba(255, 255, 255, 0.1));
    transition: width 0.3s ease;
}

.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFD700;
    transform: translateX(5px);
}

.dropdown-link:hover::before {
    width: 100%;
}

.dropdown-menu li:last-child .dropdown-link {
    border-bottom: none;
}

/* Mobile Menu Styles */
.navbar-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #002868;
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.3);
    padding: 1rem 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile Dropdown Styles */
@media (max-width: 767px) {
    .navbar-menu {
        display: none !important;
    }
    
    .navbar-menu.active {
        display: flex !important;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        border-radius: 0;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.mobile-open .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-toggle::after {
        content: '+';
        font-size: 1rem;
        transform: none;
    }
    
    .dropdown.mobile-open .dropdown-toggle::after {
        content: '−';
    }
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #002868 0%, #003A8C 100%);
    color: #FFFFFF;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-title {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 90%;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: #BF0A30;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background: #8B0000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Hero Deposit Buttons */
.hero-deposit-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 1.5rem;
}

.deposit-filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #BF0A30;
    border: 3px solid #BF0A30;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.deposit-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #8B0000;
}

.deposit-filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 10, 48, 0.5);
    background: #8B0000;
    border-color: #8B0000;
}

.deposit-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.deposit-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Casino Chips Styles */
.casino-chips {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: nowrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.casino-chip {
    position: relative;
    width: 140px;
    height: 140px;
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    flex: 0 0 auto;
}

.casino-chip:hover {
    transform: translateY(-8px) rotateX(10deg) scale(1.05);
}

.casino-chip:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.casino-chip.active .chip-glow {
    opacity: 1;
}

.casino-chip.active.chip-red .chip-glow {
    animation: pulse-red 2s infinite;
}

.casino-chip.active.chip-blue .chip-glow {
    animation: pulse-blue 2s infinite;
}

.casino-chip.active.chip-green .chip-glow {
    animation: pulse-green 2s infinite;
}

/* Remove default link styling and focus outline */
.casino-chip {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    border: none !important;
    box-shadow: none !important;
}

.casino-chip:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.casino-chip:active {
    outline: none !important;
    border: none !important;
}

.casino-chip:visited {
    outline: none !important;
    border: none !important;
}

.chip-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.chip-inner {
    width: 88%;
    height: 88%;
    border-radius: 50%;
    position: absolute;
    top: 6%;
    left: 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    background: 
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15), transparent 60%),
        radial-gradient(circle at 65% 65%, rgba(0, 0, 0, 0.1), transparent 60%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chip-amount {
    font-size: 1.5rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.chip-dots {
    display: flex;
    gap: 3px;
    margin: 4px 0;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.chip-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin-top: 2px;
}

.chip-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Red Chip ($5) */
.chip-red .chip-outer {
    background: 
        radial-gradient(circle at 25% 25%, #FF4444, #CC0000),
        linear-gradient(145deg, #E53935, #B71C1C),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

.chip-red .chip-inner {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.chip-red .chip-glow {
    background: radial-gradient(circle, rgba(231, 76, 60, 0.6), transparent 70%);
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.5);
}

.chip-red:hover .chip-glow {
    opacity: 1;
    animation: pulse-red 2s infinite;
}

/* Blue Chip ($10) */
.chip-blue .chip-outer {
    background: 
        radial-gradient(circle at 25% 25%, #42A5F5, #1565C0),
        linear-gradient(145deg, #1976D2, #0D47A1),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

.chip-blue .chip-inner {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.chip-blue .chip-glow {
    background: radial-gradient(circle, rgba(52, 152, 219, 0.6), transparent 70%);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.5);
}

.chip-blue:hover .chip-glow {
    opacity: 1;
    animation: pulse-blue 2s infinite;
}

/* Green Chip ($20) */
.chip-green .chip-outer {
    background: 
        radial-gradient(circle at 25% 25%, #66BB6A, #2E7D32),
        linear-gradient(145deg, #43A047, #1B5E20),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

.chip-green .chip-inner {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.chip-green .chip-glow {
    background: radial-gradient(circle, rgba(39, 174, 96, 0.6), transparent 70%);
    box-shadow: 0 0 30px rgba(39, 174, 96, 0.5);
}

.chip-green:hover .chip-glow {
    opacity: 1;
    animation: pulse-green 2s infinite;
}

/* Pulse Animations */
@keyframes pulse-red {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.4), 0 0 40px rgba(231, 76, 60, 0.2);
    }
    50% { 
        box-shadow: 0 0 40px rgba(231, 76, 60, 0.8), 0 0 60px rgba(231, 76, 60, 0.4);
    }
}

@keyframes pulse-blue {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.4), 0 0 40px rgba(52, 152, 219, 0.2);
    }
    50% { 
        box-shadow: 0 0 40px rgba(52, 152, 219, 0.8), 0 0 60px rgba(52, 152, 219, 0.4);
    }
}

@keyframes pulse-green {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(39, 174, 96, 0.4), 0 0 40px rgba(39, 174, 96, 0.2);
    }
    50% { 
        box-shadow: 0 0 40px rgba(39, 174, 96, 0.8), 0 0 60px rgba(39, 174, 96, 0.4);
    }
}

/* Hero Deposit Filter Section */
.hero-deposit-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
}

/* Filter Reset Button */
.filter-reset-button {
    background: linear-gradient(135deg, #BF0A30, #8B0000);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
}

.filter-reset-button:hover {
    background: linear-gradient(135deg, #8B0000, #BF0A30);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 10, 48, 0.4);
}

.filter-reset-button:active {
    transform: translateY(0);
}

/* How We Rate Section */
.how-we-rate {
    background: #f8f9fa !important;
    padding: 4rem 0 !important;
    margin-top: 2rem !important;
    display: block !important;
}

.how-we-rate .section-title {
    text-align: center;
    color: #002868;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.how-we-rate .section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.rating-criteria {
    max-width: 1200px;
    margin: 0 auto;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.criteria-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.1);
    border-left: 4px solid #BF0A30;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.15);
}

.criteria-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.criteria-item h3 {
    color: #002868;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.criteria-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.criteria-weight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #002868;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.rating-process {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.1);
}

.rating-process h3 {
    color: #002868;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #BF0A30, #8B0000);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #002868;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .how-we-rate .section-title {
        font-size: 2rem;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .criteria-item {
        padding: 1.5rem;
    }
    
    .rating-process {
        padding: 2rem 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* View All Casinos Button */
.view-all-casinos-btn {
    display: inline-block;
    background: #BF0A30;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    min-width: 250px;
}

.view-all-casinos-btn:hover {
    background: #8B0000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
}

/* Casino Filter Styles */
.casino-card-horizontal {
    transition: all 0.3s ease;
}

.casino-card-horizontal.filtered-out {
    opacity: 0.3;
    transform: scale(0.98);
    pointer-events: none;
}

.casino-card-horizontal.filtered-in {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(191, 10, 48, 0.2);
    border: 2px solid #BF0A30;
}

.deposit-filter-btn.active {
    background: #FFD700 !important;
    border-color: #FFD700 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.deposit-filter-btn.active .deposit-amount,
.deposit-filter-btn.active .deposit-label {
    color: #002868 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.deposit-filter-btn:hover .deposit-amount {
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.deposit-filter-btn:hover .deposit-label {
    color: #FFFFFF;
}

/* Casino Showcase */
.casino-showcase {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #002868;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casino-card-horizontal {
    background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.08);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    border: 1px solid #e8f0fe;
    position: relative;
    overflow: hidden;
}

.casino-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #002868 0%, #BF0A30 50%, #FFD700 100%);
}

.casino-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.15);
    background: linear-gradient(135deg, #FFFFFF 0%, #e3f2fd 100%);
}

.casino-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.casino-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.casino-name {
    font-size: 1.1rem;
    margin: 0;
    color: #002868;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.casino-bonus-section {
    display: flex;
    align-items: center;
    background: rgba(191, 10, 48, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #BF0A30;
}

.casino-bonus {
    font-weight: 600;
    color: #BF0A30;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.casino-deposit-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #002868;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(0, 40, 104, 0.1);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
}

.casino-features-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-features-horizontal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.casino-features-horizontal li {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    padding: 0.4rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #002868;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.casino-features-horizontal li:hover {
    background: linear-gradient(135deg, #002868 0%, #003A8C 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.casino-action-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-now-btn {
    background: linear-gradient(135deg, #BF0A30 0%, #8B0000 100%);
    color: #FFFFFF;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-width: 100px;
    box-shadow: 0 3px 10px rgba(191, 10, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.play-now-btn:hover {
    background: linear-gradient(135deg, #8B0000 0%, #BF0A30 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.4);
}

/* Table of Contents */
.toc-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

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

.toc-title {
    color: #002868;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.toc-nav-compact {
    margin: 0 auto;
}

.toc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc-link-compact {
    background: #FFFFFF;
    color: #002868;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc-link-compact:hover {
    background: #002868;
    color: #FFFFFF;
    border-color: #BF0A30;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.2);
}

.toc-link-compact.active {
    background: #BF0A30;
    color: #FFFFFF;
    border-color: #8B0000;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    margin-top: 0;
}

.article-content {
    max-width: 1400px;
    margin: 0 auto;
}

.article-content section {
    margin-bottom: 3rem;
}

/* Tables */
.rating-table-wrapper,
.bonus-table-wrapper,
.casino-specs-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.rating-table,
.bonus-table,
.casino-specs-table table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rating-table th,
.bonus-table th,
.casino-specs-table th {
    background: #002868;
    color: #FFFFFF;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.rating-table td,
.bonus-table td,
.casino-specs-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.rating-table tr:last-child td,
.bonus-table tr:last-child td,
.casino-specs-table tr:last-child td {
    border-bottom: none;
}

/* Casino Review Cards */
.casino-review {
    margin: 2rem 0;
}

.casino-info-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 40, 104, 0.12);
    border: 2px solid #e8f0fe;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002868 0%, #BF0A30 50%, #FFD700 100%);
}

.casino-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 40, 104, 0.18);
    background: linear-gradient(135deg, #FFFFFF 0%, #e3f2fd 100%);
}

.casino-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 0;
    align-items: flex-start;
}

.casino-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.casino-screenshot {
    width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.15);
    border: 2px solid #FFFFFF;
    max-height: 150px;
}

.casino-content-section {
    flex: 1;
}

.casino-title-section {
    margin-bottom: 1rem;
}

.casino-title-section h3 {
    margin-bottom: 0.5rem;
    color: #002868;
    font-size: 1.3rem;
    font-weight: 700;
}

.casino-tagline {
    color: #BF0A30;
    font-style: italic;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.95rem;
}

.casino-content-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

.key-features {
    margin: 2rem 0;
}

.key-features h4 {
    color: #002868;
    margin-bottom: 1rem;
}

.key-features ul {
    list-style: none;
}

.key-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.key-features li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.join-casino-btn {
    display: inline-block;
    background: linear-gradient(135deg, #BF0A30 0%, #8B0000 100%);
    color: #FFFFFF;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    width: 120px;
    text-align: center;
}

.join-casino-btn:hover {
    background: linear-gradient(135deg, #8B0000 0%, #BF0A30 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 10, 48, 0.4);
    border-color: #FFD700;
}

/* Lists */
.advantages-list,
.safety-tips {
    list-style: none;
    padding-left: 0;
}

.advantages-list li,
.safety-tips li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.advantages-list li:last-child,
.safety-tips li:last-child {
    border-bottom: none;
}

.advantages-list li::before,
.safety-tips li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #BF0A30;
    font-weight: bold;
}

/* General unordered lists in main content */
.main-content ul:not(.advantages-list):not(.safety-tips):not(.casino-features-horizontal):not(.navbar-menu):not(.footer-menu):not(.disclaimer-list):not(.conduct-list):not(.data-collection-list):not(.data-usage-list):not(.disclosure-reasons):not(.transfer-safeguards):not(.security-measures):not(.third-party-cookies):not(.support-contacts):not(.complaint-contacts):not(.summary-points):not(.bonus-steps) {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border-left: 4px solid #BF0A30;
}

.main-content ul:not(.advantages-list):not(.safety-tips):not(.casino-features-horizontal):not(.navbar-menu):not(.footer-menu):not(.disclaimer-list):not(.conduct-list):not(.data-collection-list):not(.data-usage-list):not(.disclosure-reasons):not(.transfer-safeguards):not(.security-measures):not(.third-party-cookies):not(.support-contacts):not(.complaint-contacts):not(.summary-points):not(.bonus-steps) li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2.5rem;
    margin-bottom: 0.5rem;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 40, 104, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8f0fe;
}

.main-content ul:not(.advantages-list):not(.safety-tips):not(.casino-features-horizontal):not(.navbar-menu):not(.footer-menu):not(.disclaimer-list):not(.conduct-list):not(.data-collection-list):not(.data-usage-list):not(.disclosure-reasons):not(.transfer-safeguards):not(.security-measures):not(.third-party-cookies):not(.support-contacts):not(.complaint-contacts):not(.summary-points):not(.bonus-steps) li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.12);
    background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
}

.main-content ul:not(.advantages-list):not(.safety-tips):not(.casino-features-horizontal):not(.navbar-menu):not(.footer-menu):not(.disclaimer-list):not(.conduct-list):not(.data-collection-list):not(.data-usage-list):not(.disclosure-reasons):not(.transfer-safeguards):not(.security-measures):not(.third-party-cookies):not(.support-contacts):not(.complaint-contacts):not(.summary-points):not(.bonus-steps) li:last-child {
    margin-bottom: 0;
}

.main-content ul:not(.advantages-list):not(.safety-tips):not(.casino-features-horizontal):not(.navbar-menu):not(.footer-menu):not(.disclaimer-list):not(.conduct-list):not(.data-collection-list):not(.data-usage-list):not(.disclosure-reasons):not(.transfer-safeguards):not(.security-measures):not(.third-party-cookies):not(.support-contacts):not(.complaint-contacts):not(.summary-points):not(.bonus-steps) li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: #BF0A30;
    font-weight: bold;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
    color: #002868;
}

.main-content ul:not(.advantages-list):not(.safety-tips):not(.casino-features-horizontal):not(.navbar-menu):not(.footer-menu):not(.disclaimer-list):not(.conduct-list):not(.data-collection-list):not(.data-usage-list):not(.disclosure-reasons):not(.transfer-safeguards):not(.security-measures):not(.third-party-cookies):not(.support-contacts):not(.complaint-contacts):not(.summary-points):not(.bonus-steps) li strong {
    color: #002868;
    font-weight: 600;
}

.bonus-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.bonus-steps li {
    counter-increment: step-counter;
    padding: 1rem 0;
    position: relative;
    padding-left: 3rem;
    border-left: 3px solid #BF0A30;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.bonus-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    background: #BF0A30;
    color: #FFFFFF;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Pros and Cons */
.pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros-section,
.cons-section {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pros-section {
    border-left: 4px solid #28a745;
}

.cons-section {
    border-left: 4px solid #dc3545;
}

.pros-section h3 {
    color: #28a745;
}

.cons-section h3 {
    color: #dc3545;
}

/* FAQ Accordion */
.faq-accordion {
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f0fe;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
    padding: 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #002868;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-bottom-color: #e0e0e0;
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, #002868 0%, #003A8C 100%);
    color: #FFFFFF;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.faq-question[aria-expanded="true"]:hover {
    background: linear-gradient(135deg, #BF0A30 0%, #8B0000 100%);
}

.faq-icon {
    font-size: 1.8rem;
    color: #BF0A30;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 2rem;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: #FFFFFF;
}

.faq-answer {
    background: #FFFFFF;
    overflow: hidden;
    transition: all 0.4s ease;
    max-height: 0;
    opacity: 0;
}

.faq-answer.open {
    max-height: 300px;
    opacity: 1;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* Coming Soon Styles */
.coming-soon {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    margin-top: 2rem;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    color: #002868;
    margin-bottom: 1.5rem;
    position: relative;
}

.coming-soon-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #BF0A30, #FFD700);
    border-radius: 2px;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.coming-soon-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.coming-soon-features li {
    background: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 40, 104, 0.1);
    border-left: 4px solid #BF0A30;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coming-soon-features li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.15);
    border-left-color: #FFD700;
}

.coming-soon-content a {
    color: #BF0A30;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.coming-soon-content a:hover {
    color: #002868;
}

@media (min-width: 768px) {
    .coming-soon-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #002868;
    color: #FFFFFF;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-link {
    color: #FFFFFF;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: #FFFFFF;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    width: 40px;
    height: 25px;
    object-fit: contain;
    background: #FFFFFF;
    padding: 4px;
    border-radius: 4px;
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    opacity: 0.8;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 1.1rem;
    }
    
    .hero-deposit-buttons {
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .deposit-filter-btn {
        min-width: 110px;
        padding: 1.2rem 1.8rem;
    }
    
    .deposit-amount {
        font-size: 1.6rem;
    }
    
    .casino-card-horizontal {
        grid-template-columns: 200px 3fr 160px 2fr 140px;
        gap: 2rem;
        align-items: center;
        padding: 1.5rem 2.5rem;
    }
    
    .casino-logo-section {
        justify-self: start;
    }
    
    .casino-bonus-section {
        justify-self: center;
    }
    
    .casino-deposit-section {
        justify-self: center;
    }
    
    .casino-features-section {
        justify-self: center;
    }
    
    .casino-action-section {
        justify-self: end;
    }
    
    .toc-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 800px;
    }
    
    .casino-header {
        grid-template-columns: 220px 1fr;
        gap: 2.5rem;
    }
    
    .casino-screenshot {
        width: 220px;
        height: auto;
        max-height: 170px;
    }
    
    .pros-cons-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
    
    .container-narrow {
        padding: 0 2.5rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .casino-card-horizontal {
        grid-template-columns: 220px 4fr 180px 3fr 160px;
        gap: 2.5rem;
        padding: 2rem 3rem;
    }
    
    .casino-logo {
        width: 60px;
        height: 60px;
    }
    
    .casino-name {
        font-size: 1.2rem;
    }
    
    .casino-bonus {
        font-size: 1rem;
    }
    
    .play-now-btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
        min-width: 110px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus States */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #BF0A30;
    outline-offset: 2px;
}

/* Legal Pages Styles */
.legal-page {
    margin-top: 80px;
    padding: 2rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #002868;
}

.legal-header h1 {
    color: #002868;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #002868;
}

.legal-section h2 {
    color: #002868;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.legal-section h3 {
    color: #BF0A30;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h4 {
    color: #002868;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.important-notice,
.liability-notice,
.rights-contact {
    background: #f8f9fa;
    border: 1px solid #BF0A30;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #BF0A30;
}

.important-notice h3,
.liability-notice h3,
.rights-contact h4 {
    color: #BF0A30;
    margin-top: 0;
    margin-bottom: 1rem;
}

.disclaimer-list,
.conduct-list,
.data-collection-list,
.data-usage-list,
.disclosure-reasons,
.transfer-safeguards,
.security-measures,
.third-party-cookies,
.support-contacts,
.complaint-contacts,
.summary-points {
    list-style: none;
    padding-left: 0;
}

.disclaimer-list li,
.conduct-list li,
.data-collection-list li,
.data-usage-list li,
.disclosure-reasons li,
.transfer-safeguards li,
.security-measures li,
.third-party-cookies li,
.support-contacts li,
.complaint-contacts li,
.summary-points li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.disclaimer-list li:last-child,
.conduct-list li:last-child,
.data-collection-list li:last-child,
.data-usage-list li:last-child,
.disclosure-reasons li:last-child,
.transfer-safeguards li:last-child,
.security-measures li:last-child,
.third-party-cookies li:last-child,
.support-contacts li:last-child,
.complaint-contacts li:last-child,
.summary-points li:last-child {
    border-bottom: none;
}

.disclaimer-list li::before,
.conduct-list li::before,
.data-collection-list li::before,
.data-usage-list li::before,
.disclosure-reasons li::before,
.transfer-safeguards li::before,
.security-measures li::before,
.third-party-cookies li::before,
.support-contacts li::before,
.complaint-contacts li::before,
.summary-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #BF0A30;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.cookie-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.cookie-type h4 {
    color: #002868;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.retention-periods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.retention-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #002868;
}

.retention-item h4 {
    color: #002868;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.responsible-gambling-footer,
.privacy-summary {
    background: linear-gradient(135deg, #002868 0%, #003A8C 100%);
    color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.responsible-gambling-footer h2,
.privacy-summary h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.responsible-gambling-footer a,
.privacy-summary a {
    color: #FFD700;
}

.responsible-gambling-footer a:hover,
.privacy-summary a:hover {
    color: #FFFFFF;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Responsive Legal Pages */
@media (min-width: 768px) {
    .cookie-types {
        grid-template-columns: 1fr 1fr;
    }
    
    .retention-periods {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .legal-content {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .legal-header h1 {
        font-size: 3rem;
    }
    
    .legal-section h2 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .toc-sidebar,
    .carousel-btn,
    .cta-button,
    .play-now-btn,
    .join-casino-btn {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .casino-info-card,
    .legal-section {
        page-break-inside: avoid;
    }
    
    .legal-page {
        margin-top: 0;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #002868;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #002868;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 40, 104, 0.1);
}

.contact-form h2 {
    color: #002868;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #002868;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BF0A30;
    box-shadow: 0 0 0 3px rgba(191, 10, 48, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #BF0A30;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="submit"],
.form button[type="submit"] {
    background: #BF0A30;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-group input[type="submit"]:hover,
.form button[type="submit"]:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #ffffff;
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #002868;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 40, 104, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* About Page Styles */
.about-section {
    margin-bottom: 3rem;
}

.values-section {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 40, 104, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 40, 104, 0.15);
}

.value-item h3 {
    color: #002868;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.clients-section {
    margin-bottom: 3rem;
}

/* Portfolio Styles */
.portfolio-section {
    margin-bottom: 4rem;
}

.case-study {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 40, 104, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 40, 104, 0.15);
}

.case-study.featured {
    border-left: 4px solid #BF0A30;
}

.case-study-content {
    padding: 2rem;
}

.case-study-category {
    color: #BF0A30;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-title {
    color: #002868;
    margin: 0.5rem 0 1rem 0;
    font-size: 1.8rem;
}

.case-study-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-link {
    color: #BF0A30;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-study-link:hover {
    color: #8B0000;
}

.case-study-subtitle {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #002868 0%, #BF0A30 100%);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background: #ffffff;
    color: #002868;
    font-weight: 600;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    color: #002868;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .case-study-content {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }
    
    .casino-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-image-section {
        order: 2;
        align-items: center;
    }
    
    .casino-content-section {
        order: 1;
        text-align: center;
    }
    
    .casino-screenshot {
        width: 100%;
        max-width: 300px;
        height: auto;
        max-height: 220px;
        margin: 0 auto;
    }
    
    .casino-info-card {
        padding: 1.25rem;
    }
    
    .casino-title-section h3 {
        font-size: 1.2rem;
    }
    
    /* Casino Chips Mobile */
    .casino-chips {
        gap: 0.5rem;
        margin: 1.5rem 0;
        max-width: 90%;
        flex-wrap: nowrap;
    }
    
    .casino-chip {
        width: 85px;
        height: 85px;
        flex: 1 1 auto;
        min-width: 75px;
    }
    
    .chip-amount {
        font-size: 1rem;
    }
    
    .chip-label {
        font-size: 0.5rem;
    }
    
    .dot {
        width: 2.5px;
        height: 2.5px;
    }
    
    .chip-dots {
        gap: 2px;
    }
    
    .hero-deposit-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .deposit-filter-btn {
        min-width: 85px;
        padding: 0.8rem 1rem;
    }
    
    .deposit-amount {
        font-size: 1.3rem;
    }
    
    .deposit-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .casino-chip {
        width: 70px;
        height: 70px;
        min-width: 60px;
    }
    
    .chip-amount {
        font-size: 0.9rem;
    }
    
    .chip-label {
        font-size: 0.45rem;
    }
    
    .casino-chips {
        gap: 0.3rem;
        max-width: 95%;
    }
}