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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 25%, #1a2b4a 50%, #0f3460 75%, #0a1a2e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed header */
}

/* Body padding for fixed header */
body {
    padding-top: 60px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(10, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 50px;
    background: rgba(10, 26, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.header__logo img {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .header__logo img {
    height: 30px;
}

.header__brand-text {
    font-weight: 600;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #ffffff, #ff7f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none;
}

/* Desktop Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: block;
    padding: 8px 14px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav__link:hover {
    color: #ff7f00;
    background: rgba(255, 127, 0, 0.1);
}

.nav__link.active {
    color: #ff7f00;
    background: rgba(255, 127, 0, 0.15);
}

.btn--small {
    padding: 4px 8px;
    font-size: 0.4rem;
    margin-left: 1px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    gap: 4px;
}

.mobile-menu-btn__line {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-btn.active .mobile-menu-btn__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .mobile-menu-btn__line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active .mobile-menu-btn__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    margin-bottom: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 15px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

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

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu__brand-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
}

.mobile-menu__close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    gap: 8px;
}

.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff7f00;
}

.mobile-menu__close i {
    font-size: 1.2rem;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-nav__list {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav__item {
    margin-bottom: 10px;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav__link i {
    color: #ff7f00;
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}

.mobile-nav__link:hover {
    background: rgba(255, 127, 0, 0.15);
    transform: translateX(5px);
}

.mobile-menu__cta {
    margin-top: auto;
    text-align: center;
    padding: 15px 0;
}

.mobile-menu__bonus-text {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Show/Hide Elements Based on Screen Size */
@media (max-width: 991px) {
    .header__nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .header__brand-text {
        display: block;
    }
}

/* 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;
}

.section__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section__icon {
    color: #ff7f00;
    filter: drop-shadow(0 0 10px rgba(255, 127, 0, 0.4));
    flex-shrink: 0;
}

.section__subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px; /* Fixed padding typo from 8px 12rpx to 12px 24px */
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(45deg, #ff7f00, #ff9500);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.4);
    background: linear-gradient(45deg, #ff9500, #ffb000);
}

.btn--small {
    padding: 8px 16px; /* Fixed from 4px 8px to 8px 16px */
    font-size: 0.9rem; /* Fixed from 0.4rem to 0.9rem */
    border-radius: 6px;
}

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

.btn--xl {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Category card buttons */
.category-card .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
    background: linear-gradient(45deg, #ff7f00, #ff9500);
    transition: all 0.3s ease;
}

.category-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 127, 0, 0.4);
    background: linear-gradient(45deg, #ff9500, #ffb000);
}

/* Header CTA button */
.header__cta {
    white-space: nowrap;
    margin-left: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn--xl {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(26, 43, 74, 0.85) 100%),
        url('../images/assets/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #ff7f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    margin-bottom: 2rem;
}

.hero__bonus-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Mobile First - Small screens */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .header {
        height: 60px;
    }
    
    .hero {
        min-height: calc(100vh - 60px);
        background-attachment: scroll;
    }
    
    .hero__content {
        padding: 1.5rem 0;
    }
    
    .hero__title {
        font-size: 1.8rem;
    }
    
    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero__bonus-text {
        font-size: 0.85rem;
    }
    
    .btn--xl {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .mobile-nav__link {
        font-size: 1rem;
        padding: 10px;
    }
    
    .mobile-nav__link i {
        font-size: 1rem;
        width: 20px;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .hero__title {
        font-size: 3.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.3rem;
    }
    
    .hero__bonus-text {
        font-size: 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero__title {
        font-size: 4rem;
    }
    
    .hero__subtitle {
        font-size: 1.4rem;
    }
}

/* Featured Games Section */
.featured-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a2b4a 50%, #0f3460 100%);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 127, 0, 0.3);
}

.game-card__image {
    position: relative;
    overflow: hidden;
}

.game-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__image img {
    transform: scale(1.05);
}

.game-card__jackpot {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #ff7f00, #ff9500);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 127, 0, 0.3);
}

.game-card__info {
    padding: 1.5rem;
    text-align: center;
}

.game-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.game-card__provider {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

/* Slots Showcase Section */
.slots-showcase {
    padding: 0;
    background: linear-gradient(135deg, #1a2b4a 0%, #0f3460 50%, #16213e 100%);
}

.slots-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.slot-item {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.slot-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 127, 0, 0.5);
}

.slot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.slot-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.1);
}

/* Responsive Design for Slots */
@media (min-width: 768px) {
    .slots-showcase__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 480px) {
    .slot-item:hover {
        transform: scale(1.02);
    }
}

/* Bonussen Section */
.bonussen {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2b4a 0%, #0f3460 50%, #0a1a2e 100%);
}

.bonussen__header {
    text-align: center;
    margin-bottom: 3rem;
}

.bonussen__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bonussen__icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(255, 127, 0, 0.3));
}

.bonussen__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bonussen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    position: relative;
    height: auto;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 127, 0, 0.3);
}

.bonus-card__image {
    position: relative;
    aspect-ratio: 720 / 555;
    overflow: hidden;
}

.bonus-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-card__image img {
    transform: scale(1.05);
}

.bonus-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff7f00, #ff9500);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
    z-index: 2;
}

.bonus-card__content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.bonus-card__amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff7f00;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bonus-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    text-align: left;
}

.bonus-card__features li {
    padding: 0.4rem 0;
    color: #ffffff;
    opacity: 0.9;
    font-size: 0.9rem;
}

.bonus-card__cta {
    background: linear-gradient(135deg, #ff7f00, #ff9500);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
    margin-top: auto;
}

.bonus-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.4);
    background: linear-gradient(135deg, #ff9500, #ffb000);
}

/* Responsive for Bonussen */
@media (min-width: 768px) {
    .bonussen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .bonussen__title {
        font-size: 3rem;
    }
    
    .bonussen__icon {
        width: 56px;
        height: 56px;
    }
    
    .bonus-card {
        height: auto;
        min-height: 520px;
    }
}

@media (min-width: 1024px) {
    .bonussen-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .bonus-card {
        height: auto;
        min-height: 540px;
    }
    
    .bonus-card__content {
        padding: 2rem;
    }
    
    .bonus-card__amount {
        font-size: 2.8rem;
    }
    
    .bonus-card__title {
        font-size: 1.6rem;
    }
    
    .bonus-card__features li {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .bonussen__title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bonussen__icon {
        width: 40px;
        height: 40px;
    }
    
    .bonus-card {
        height: auto;
        min-height: 450px;
    }
    
    .bonus-card__content {
        padding: 1.2rem;
    }
    
    .bonus-card__amount {
        font-size: 2rem;
    }
    
    .bonus-card__title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .bonus-card__features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .bonus-card__cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a2b4a 100%);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 127, 0, 0.3);
}

.stat-card__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff7f00;
    margin-bottom: 0.5rem;
}

.stat-card__label {
    font-size: 1rem;
    opacity: 0.9;
}

.providers {
    margin-top: 4rem;
    text-align: center;
}

.providers__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.providers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.provider-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 127, 0, 0.3);
}

.provider-card img {
    max-width: 100%;
    height: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.provider-card:hover img {
    filter: brightness(1.1);
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a2b4a 50%, #0f3460 100%);
}

.seo-content__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.seo-content__text {
    color: #ffffff;
}

.seo-content__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.seo-content__visual {
    text-align: center;
}

.seo-content__visual img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .seo-content__container {
        grid-template-columns: 2fr 1fr;
    }
}

/* Game Providers Section */
.game-providers {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2b4a 0%, #2a3b5a 50%, #16213e 100%);
}

.providers-row {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.provider-item {
    flex: 0 0 auto;
    text-align: center;
    min-width: 150px;
}

.provider-item img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.provider-item:hover img {
    transform: translateY(-5px);
    border-color: rgba(255, 127, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.provider-item span {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 500;
}

@media (min-width: 768px) {
    .providers-row {
        justify-content: center;
        overflow-x: visible;
    }
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2b4a 0%, #0a1a2e 50%, #16213e 100%);
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 127, 0, 0.3);
}

.category-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff7f00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.category-card__icon svg {
    width: 48px;
    height: 48px;
    color: #ff7f00;
    filter: drop-shadow(0 0 10px rgba(255, 127, 0, 0.3));
    transition: all 0.3s ease;
}

.category-card:hover .category-card__icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 127, 0, 0.5));
}

.category-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-card__count {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

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

.category-card__games img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card__games img:hover {
    transform: scale(1.1);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1a2e 0%, #ff7f00 100%);
    text-align: center;
}

.final-cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-cta__subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit__icon {
    font-size: 1.5rem;
}

.benefit__text {
    font-weight: 500;
}

.final-cta__actions {
    margin-top: 3rem;
}

.final-cta__terms {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Other Casinos Section */
.other-casinos {
    background: linear-gradient(135deg, #0f1c2d 0%, #1a2540 100%);
    padding: 60px 0;
    text-align: center;
}

.other-casinos__content {
    max-width: 1000px;
    margin: 0 auto;
}

.other-casinos__title {
    color: #ff7f00;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.other-casinos__subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.casino-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
}

.casino-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 127, 0, 0.3);
}

.casino-link:hover {
    background: rgba(255, 127, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.2);
    border-color: rgba(255, 127, 0, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 100%);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

.footer__logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer__logo img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 127, 0, 0.5));
}

.footer__navigation h3 {
    color: #ff7f00;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.footer__nav-link:hover {
    opacity: 1;
    color: #ff7f00;
    background: rgba(255, 127, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive for Other Casinos */
@media (max-width: 768px) {
    .other-casinos {
        padding: 40px 0;
    }
    
    .other-casinos__title {
        font-size: 1.8rem;
    }
    
    .other-casinos__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .casino-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .other-casinos {
        padding: 30px 0;
    }
    
    .other-casinos__title {
        font-size: 1.6rem;
    }
    
    .other-casinos__subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .casino-links {
        gap: 0.8rem;
    }
    
    .casino-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        flex-basis: calc(50% - 0.8rem);
    }
}

/* Font Awesome Icon Styles */
.benefit__icon i {
    color: #ff7f00;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 127, 0, 0.6));
    transition: all 0.3s ease;
}

.benefit:hover .benefit__icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 127, 0, 0.8));
}

@media (min-width: 768px) {
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer__navigation {
        text-align: right;
    }
    
    .footer__nav-list {
        justify-content: flex-end;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .section__title {
        font-size: 2.5rem;
    }
    
    .games-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .bonus-card--featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .final-cta__title {
        font-size: 3.5rem;
    }
    
    .games-carousel {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.hero__content,
.game-card,
.bonus-card,
.stat-card,
.category-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* 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 */
.btn:focus,
a:focus {
    outline: 2px solid #ff7f00;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn--primary {
        background: #ff7f00;
        border: 2px solid #ffffff;
    }
    
    .game-card,
    .bonus-card,
    .stat-card,
    .category-card {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}

/* Lazy Loading Styles */
.lazy-load {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-out;
    filter: blur(5px);
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Loading placeholder for images */
img.lazy-load:not(.loaded) {
    background: linear-gradient(110deg, #0a1a2e 8%, #16213e 18%, #0a1a2e 33%);
    background-size: 200% 100%;
    animation: shine 1.5s linear infinite;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}