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

a {
    text-decoration: none;
    border-bottom: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Loading states for all images */
img.loading {
    opacity: 0.7;
    filter: blur(1px);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

img.loaded {
    opacity: 1;
    filter: blur(0);
}

/* Fallback for images that fail to load */
img[alt*="niet beschikbaar"] {
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.1) 0%, rgba(255, 127, 0, 0.05) 100%);
    border: 1px dashed rgba(255, 127, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #ff7f00;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff7f00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff7f00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Burger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Full Screen Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.close-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff7f00;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: #ff7f00;
    padding-left: 1rem;
}

.mobile-menu-footer {
    margin-top: 2rem;
    text-align: center;
}

.mobile-cta {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 {
    font-size: 2rem;
    font-weight: 800;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
}

.cta-button.primary {
    background: #ff7f00;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
}

.cta-button.primary:hover {
    background: #e66f00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.4);
}

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

.cta-button.secondary:hover {
    background: #ffffff;
    color: #001f3f;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #cccccc;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.8) 0%, rgba(0, 51, 102, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-logo.loading {
    opacity: 0.7;
}

.hero-logo.loaded {
    opacity: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e6e6e6;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Providers Section */
.providers {
    padding: 80px 0;
    background: rgba(0, 31, 63, 0.3);
}

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

.provider-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 127, 0, 0.2);
}

.provider-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    filter: brightness(1.1);
    transition: opacity 0.3s ease, filter 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
}

.provider-logo:hover {
    filter: brightness(1.3) contrast(1.1);
}

.provider-logo.loading {
    opacity: 0.6;
    filter: brightness(0.8);
}

.provider-logo.loaded {
    opacity: 1;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 15, 31, 0.02) 0%, rgba(0, 15, 31, 0.05) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    justify-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.game-slot {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, filter 0.3s ease;
    border: 2px solid rgba(255, 127, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.08) 0%, rgba(255, 127, 0, 0.03) 100%);
    width: 100%;
    aspect-ratio: 1;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.game-slot:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 40px rgba(255, 127, 0, 0.25);
    border-color: rgba(255, 127, 0, 0.4);
    filter: brightness(1.05);
}

.game-slot:active {
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
}

.slot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

.game-slot:hover .slot-image {
    transform: scale(1.05);
}

.slot-image.loading {
    opacity: 0.7;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.2) 0%, rgba(255, 127, 0, 0.1) 100%);
}

.slot-image.loaded {
    opacity: 1;
}

/* Add a subtle play indicator on hover */
.game-slot::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    background: rgba(255, 127, 0, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
}

.game-slot:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Add overlay on hover */
.game-slot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.15) 0%, rgba(255, 127, 0, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.game-slot:hover::after {
    opacity: 1;
}

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

/* Bonus Section */
/* Bonus Section - New Modern Responsive Design */
.bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.bonuses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 127, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

a.bonus-card {
    text-decoration: none;
    border-bottom: none;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 127, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 127, 0, 0.08) 0%, transparent 50%);
}

.bonus-card:nth-child(1) {
    background-image: 
        url('../images/assets/hero-bg-asset1.webp'),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 127, 0, 0.1) 0%, transparent 50%);
    background-size: cover, 100% 100%, 100% 100%;
    background-position: center, center, center;
    background-blend-mode: overlay, normal, normal;
}

.bonus-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 15, 31, 0.85) 0%,
        rgba(0, 31, 63, 0.75) 50%,
        rgba(16, 33, 78, 0.8) 100%
    );
    z-index: 1;
}

.bonus-card:nth-child(2) {
    background-image: 
        url('../images/assets/hero-bg-asset2.webp'),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    background-size: cover, 100% 100%, 100% 100%;
    background-position: center, center, center;
    background-blend-mode: overlay, normal, normal;
}

.bonus-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 20, 40, 0.85) 0%,
        rgba(0, 40, 80, 0.75) 50%,
        rgba(0, 60, 120, 0.8) 100%
    );
    z-index: 1;
}

.bonus-card:nth-child(3) {
    background-image: 
        url('../images/assets/hero-bg-asset3.webp'),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.15) 0%, transparent 50%);
    background-size: cover, 100% 100%, 100% 100%;
    background-position: center, center, center;
    background-blend-mode: overlay, normal, normal;
}

.bonus-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 35, 0.85) 0%,
        rgba(30, 30, 70, 0.75) 50%,
        rgba(45, 45, 105, 0.8) 100%
    );
    z-index: 1;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff7f00;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bonus-card:hover::before {
    transform: scaleX(1);
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 127, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 127, 0, 0.15);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.bonus-badge {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    border-bottom: none;
}

.bonus-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-decoration: none;
    border-bottom: none;
}

.bonus-description {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: none;
}

.bonus-claim-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-bottom: none;
}

.bonus-claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.bonus-claim-btn:hover::before {
    left: 100%;
}

.bonus-claim-btn:hover {
    background: #ff8e53;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    border-bottom: none;
}

@media (max-width: 768px) {
    /* Navigation Mobile Styles */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        height: 60px;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .bonuses {
        padding: 60px 0;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .bonus-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .bonus-amount {
        font-size: 1.75rem;
        line-height: 1.1;
        word-break: break-word;
    }
    
    .bonus-title {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    .bonus-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        flex-grow: 1;
    }
    
    .bonus-claim-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        margin-top: auto;
        text-decoration: none;
        border-bottom: none;
    }
}

/* SEO Content Section */
.seo-content {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.4) 0%, rgba(0, 15, 31, 0.6) 100%);
}

.seo-text {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.seo-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 127, 0, 0.15);
}

.seo-block h3 {
    color: #ff7f00;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.seo-block p {
    color: #e6e6e6;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.seo-block strong {
    color: #ffffff;
    font-weight: 600;
}

.seo-keywords {
    background: rgba(255, 127, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 127, 0, 0.2);
}

.seo-keywords p {
    margin: 0;
    color: #cccccc;
}

.seo-keywords strong {
    color: #ff7f00;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.1) 0%, rgba(255, 127, 0, 0.05) 100%);
}

/* Other Casinos Section */
.other-casinos {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.6) 0%, rgba(0, 15, 31, 0.8) 100%);
}

.other-casinos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.casino-link {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.casino-link:hover {
    background: rgba(255, 127, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.2);
    border-color: rgba(255, 127, 0, 0.3);
    color: #ff7f00;
}

@media (max-width: 1024px) {
    .other-casinos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .other-casinos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .casino-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

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

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e6e6e6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-disclaimer {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: rgba(0, 15, 31, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 300px;
}

.footer-title {
    color: #ff7f00;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

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

.footer-links a:hover {
    color: #ff7f00;
}

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

.footer-provider-logo {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-provider-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
}

.footer-copyright,
.footer-license {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .games {
        padding: 80px 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .game-slot {
        max-width: none;
        min-height: 160px;
    }
    
    .seo-content {
        padding: 80px 0;
    }
    
    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .seo-block {
        padding: 2rem;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .footer-logo {
        width: 160px;
        margin: 0 auto 1.5rem;
    }
    
    .footer-description {
        max-width: none;
        margin: 0 auto;
    }
    
    .footer-providers {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .footer-provider-logo {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .games {
        padding: 60px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .game-slot {
        max-width: 280px;
        margin: 0 auto;
        min-height: 200px;
    }
    
    .seo-block {
        padding: 1.75rem;
    }
    
    .seo-block h3 {
        font-size: 1.2rem;
    }
    
    .game-card,
    .provider-card {
        padding: 1.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .games {
        padding: 90px 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        margin-bottom: 3.5rem;
    }
    
    .game-slot {
        max-width: 280px;
    }
    
    .bonuses {
        padding: 70px 0;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .bonus-card {
        padding: 1.75rem;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .bonus-header {
        margin-bottom: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
        line-height: 1.1;
        word-break: break-word;
    }
    
    .bonus-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .bonus-description {
        font-size: 0.95rem;
        line-height: 1.4;
        flex-grow: 1;
        margin-bottom: 1.5rem;
    }
    
    .bonus-claim-btn {
        width: auto;
        padding: 1rem 2.25rem;
        margin-top: auto;
        text-decoration: none;
        border-bottom: none;
    }
    
    .seo-content {
        padding: 90px 0;
    }
    
    .seo-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-logo {
        width: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.75rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 4.5rem;
    }
    
    .game-slot {
        max-width: 300px;
    }
    
    .bonuses {
        padding: 100px 0;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        padding: 0 2rem;
    }
    
    .bonus-card {
        padding: 2.5rem;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .bonus-header {
        margin-bottom: 2rem;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
        line-height: 1.1;
        word-break: break-word;
    }
    
    .bonus-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .bonus-description {
        font-size: 1rem;
        line-height: 1.5;
        flex-grow: 1;
        margin-bottom: 2rem;
    }
    
    .bonus-claim-btn {
        padding: 1.25rem 3rem;
        font-size: 1.1rem;
        margin-top: auto;
        text-decoration: none;
        border-bottom: none;
    }
    
    .seo-content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* 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 styles for accessibility */
.cta-button:focus,
.footer-links a:focus {
    outline: 2px solid #ff7f00;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .provider-card,
    .game-card,
    .seo-block {
        border: 2px solid #ffffff;
    }
}