/* SEO H1 - Hidden but accessible to search engines */
.seo-h1,
.hero-title {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0B0B0E;
    color: #EAEAEA;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Remove default link styles for content areas only - exclude navigation */
.hero a,
.features a,
.games a,
.promotions a,
.about a,
.footer a {
    text-decoration: none;
}

.hero a:visited,
.features a:visited,
.games a:visited,
.promotions a:visited,
.about a:visited,
.footer a:visited {
    color: inherit;
}

.hero a:hover,
.features a:hover,
.games a:hover,
.promotions a:hover,
.about a:hover,
.footer a:hover {
    text-decoration: none;
}

.hero a:focus,
.features a:focus,
.games a:focus,
.promotions a:focus,
.about a:focus,
.footer a:focus {
    outline: none;
    text-decoration: none;
}

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

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

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #1B8B3A;
    color: white;
    border-color: #1B8B3A;
}

.btn-primary:hover {
    background-color: #0F5A2A;
    border-color: #0F5A2A;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #1B8B3A;
    border-color: #1B8B3A;
}

.btn-outline:hover {
    background-color: #0F5A2A;
    color: white;
    transform: translateY(-2px);
}

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

/* Desktop Navigation */
.nav-desktop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background-color: rgba(11, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(234, 234, 234, 0.1);
    z-index: 1000;
    transition: width 0.3s ease;
    overflow: hidden;
}

.nav-toggle {
    display: none;
}

.nav-content {
    padding: 20px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-logo {
    padding: 0 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-logo img {
    width: 120px;
    height: 120px;
}

.nav-list {
    list-style: none;
    flex: 1;
}

.nav-list li {
    margin-bottom: 8px;
}

.nav-list a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #EAEAEA !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 0 25px 25px 0;
    margin-right: 20px;
}

.nav-list a:hover {
    background-color: rgba(27, 139, 58, 0.1) !important;
    color: #1B8B3A !important;
}

.nav-list a:visited {
    color: #EAEAEA !important;
}

.nav-list a:visited:hover {
    color: #1B8B3A !important;
}

.nav-list a i {
    font-size: 20px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.nav-list a span {
    margin-left: 12px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Navigation Download Section */
.nav-download-section {
    padding: 10px 20px;
    border-top: 1px solid rgba(234, 234, 234, 0.1);
    margin-top: 5px;
}

.nav-section-title {
    color: #1B8B3A;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-download-btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(27, 139, 58, 0.1);
    color: #EAEAEA !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 139, 58, 0.2);
}

.nav-download-btn:hover {
    background-color: rgba(27, 139, 58, 0.2) !important;
    color: #1B8B3A !important;
    transform: translateY(-1px);
}

.nav-download-btn i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    margin-right: 10px;
}

.nav-download-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navigation Language Section */
.nav-language-section {
    padding: 10px 20px;
    border-top: 1px solid rgba(234, 234, 234, 0.1);
}

.nav-language-select {
    width: 100%;
    padding: 10px 12px;
    background-color: rgba(11, 11, 14, 0.8);
    color: #EAEAEA;
    border: 1px solid rgba(27, 139, 58, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-language-select:hover,
.nav-language-select:focus {
    border-color: #1B8B3A;
    background-color: rgba(27, 139, 58, 0.05);
    outline: none;
}

.nav-language-select option {
    background-color: #0B0B0E;
    color: #EAEAEA;
    padding: 8px;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(11, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(234, 234, 234, 0.1);
    z-index: 1000;
}

.mobile-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.mobile-logo img {
    width: 60px;
    height: 60px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: #EAEAEA;
    font-size: 28px;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(27, 139, 58, 0.1);
    color: #1B8B3A;
}

/* Mobile Welcome Bonus Button */
.mobile-welcome-bonus {
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    padding: 0;
    background: transparent;
    border: none;
    z-index: 9999;
    display: none; /* Hidden by default */
}

.mobile-welcome-bonus .bonus-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1B8B3A 0%, #0F5A2A 100%);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(27, 139, 58, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-welcome-bonus .bonus-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
    margin-right: 12px;
}

.mobile-welcome-bonus .bonus-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.mobile-welcome-bonus .bonus-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mobile-bonus-close {
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #1B8B3A;
    color: #1B8B3A;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    z-index: 10000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mobile-bonus-close:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Show mobile bonus button only on mobile devices */
@media (max-width: 768px) {
    .mobile-welcome-bonus {
        display: block;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #0B0B0E 0%, #1A1A1E 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 0;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: rgba(27, 139, 58, 0.1);
    border-bottom: 1px solid rgba(27, 139, 58, 0.2);
}

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

.mobile-menu-logo img {
    width: 50px;
    height: 50px;
}

.mobile-menu-header h3 {
    color: #1B8B3A;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #EAEAEA;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(234, 234, 234, 0.1);
}

.mobile-menu-list {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu-list li {
    margin-bottom: 4px;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: #EAEAEA;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-list a:hover {
    color: #1B8B3A;
    background-color: rgba(27, 139, 58, 0.05);
    border-left-color: #1B8B3A;
}

.mobile-menu-actions {
    padding: 20px 24px;
    border-top: 1px solid rgba(234, 234, 234, 0.1);
    margin-top: auto;
}

.mobile-menu-actions .btn {
    width: 100%;
    margin-bottom: 12px;
    justify-content: center;
}

.mobile-menu-actions .btn:last-child {
    margin-bottom: 0;
}

/* Main Content */
.main-content {
    margin-left: 250px;
    min-height: 100vh;
}

/* Header */
.header {
    padding: 10px 0; /* Reduced from 20px to 10px */
    background-color: rgba(11, 11, 14, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header-actions {
    display: flex;
    gap: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1872 / 447; /* Maintain original aspect ratio */
    max-height: 60vh; /* Limit height on very wide screens */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-decoration: none;
    color: inherit;
    display: block;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Hero Content Overlay */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B8B3A;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-button {
    flex-shrink: 0;
}

.hero-button .btn {
    font-size: 1.4rem;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(27, 139, 58, 0.4);
    transition: all 0.3s ease;
}

.hero-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 139, 58, 0.6);
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 1.2rem;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(27, 139, 58, 0.8);
    transform: scale(1.1);
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active,
.hero-indicator:hover {
    background: #1B8B3A;
    border-color: #1B8B3A;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 30px; /* Reduced from 60px to 30px */
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Navigation */
.category-nav {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(27, 139, 58, 0.2);
    border-bottom: 1px solid rgba(27, 139, 58, 0.2);
}

.category-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: #22c55e;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    min-width: auto;
    text-align: center;
    position: relative;
}

.category-btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.category-btn:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    border: none;
    color: #0F5A2A;
}

.category-btn:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1B8B3A;
    border-radius: 1px;
}

.category-btn span {
    white-space: nowrap;
}

/* Casinos/Games Section */
.casinos {
    padding: 20px 0; /* Reduced from 40px to 20px */
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

/* Hide incomplete rows for desktop (6 per row) - Show 18 games (3 complete rows) */
.games-grid .game-card:nth-child(n+19) {
    display: none;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.game-card:hover {
    transform: translateY(-8px);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 139, 58, 0.8), rgba(15, 90, 42, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay i {
    font-size: 48px;
    color: white;
    margin-bottom: 12px;
}

.game-overlay span {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

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

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

/* Promotion Sections */
.promo-section {
    padding: 100px 0;
    background-color: rgba(27, 139, 58, 0.05);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    background: black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-8px);
}

.promo-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 560;
    object-fit: cover;
}

.promo-content {
    position: static;
    background: none;
    padding: 30px;
    color: #1B8B3A;
    text-align: center;
}

.promo-content h3 {
    margin-bottom: 12px;
    color: #1B8B3A;
}

.promo-content p {
    margin-bottom: 20px;
    opacity: 0.8;
    color: #1B8B3A;
}

.promo-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-banner a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promo-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 560;
    object-fit: cover;
}

.promo-overlay {
    position: static;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.promo-text {
    text-align: center;
    color: #1B8B3A;
    max-width: none;
    padding: 0;
}

.promo-text h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1B8B3A;
}

.promo-text p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #1B8B3A;
}

.promo-text .btn {
    margin-top: 24px;
}

/* SEO Content Section */
.seo-content-section {
    padding: 100px 0;
    background-color: rgba(27, 139, 58, 0.02);
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #EAEAEA;
}

.seo-text p {
    margin-bottom: 24px;
    text-align: justify;
}

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

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: rgba(27, 139, 58, 0.03);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    background-color: rgba(234, 234, 234, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(27, 139, 58, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    color: #EAEAEA;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #1B8B3A;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #1B8B3A;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    margin: 0;
    color: #EAEAEA;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    text-align: center;
    margin-bottom: 40px;
}

.about-text > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background-color: rgba(27, 139, 58, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item img {
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 16px;
    color: #1B8B3A;
}

.feature-item p {
    opacity: 0.8;
    margin-bottom: 0;
}

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

/* Providers Section */
.providers-section {
    padding: 100px 0;
    background-color: rgba(27, 139, 58, 0.05);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(234, 234, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.provider-logo:hover {
    background-color: rgba(27, 139, 58, 0.1);
    transform: translateY(-4px);
}

.provider-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.provider-logo:hover img {
    filter: brightness(1);
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 0 15px;
    border-top: 1px solid rgba(234, 234, 234, 0.1);
    margin-left: 250px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    flex-shrink: 0;
}

.footer-logo p {
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.nav-row a {
    color: #EAEAEA;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-row a:hover {
    opacity: 1;
    color: #1B8B3A;
}

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Hide incomplete rows for tablet (3 per row) - Show 18 games (6 complete rows) */
    .games-grid .game-card:nth-child(n+19) {
        display: none;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show mobile nav */
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 60px;
    }
    
    .footer {
        margin-left: 0;
    }
    
    .header {
        padding: 10px 0;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Hero section */
    .hero-slider {
        aspect-ratio: 1872 / 447; /* Maintain aspect ratio on mobile */
        max-height: 50vh; /* Increased from 40vh to 50vh for bigger hero */
    }
    
    .hero-content {
        padding: 0 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .hero-text {
        max-width: 60%;
        margin-bottom: 0;
    }
    
    .hero-text h2 {
        font-size: 1.1rem; /* Increased from 0.9rem */
        margin-bottom: 4px; /* Increased from 3px */
    }
    
    .hero-text p {
        font-size: 0.8rem; /* Increased from 0.65rem */
    }
    
    .hero-button {
        flex-shrink: 0;
    }
    
    .hero-button .btn {
        font-size: 0.75rem; /* Increased from 0.6rem */
        padding: 8px 16px; /* Increased from 6px 12px */
    }
    
    .hero-controls {
        display: none;
    }
    
    .hero-prev,
    .hero-next {
        display: none;
    }
    
    .hero-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Category Navigation */
    .category-nav {
        padding: 20px 0;
    }
    
    .category-buttons {
        gap: 12px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 1rem;
        min-width: auto;
        gap: 6px;
    }
    
    .category-btn img {
        width: 18px;
        height: 18px;
    }
    


    /* Games grid */
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    /* Hide incomplete rows for mobile (3 per row) - Show 21 games (7 complete rows) */
    .games-grid .game-card:nth-child(n+22) {
        display: none;
    }
    
    .game-card img {
        height: 150px;
    }
    
    /* Promo cards */
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-card img {
        height: auto;
        aspect-ratio: 1200 / 560;
    }
    
    .promo-banner img {
        height: auto;
        aspect-ratio: 1200 / 560;
    }
    
    .promo-text h3 {
        font-size: 1.8rem;
    }
    
    .promo-text p {
        font-size: 1rem;
    }
    
    /* SEO Content Section */
    .seo-content-section {
        padding: 60px 0;
    }
    
    .seo-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .seo-text p {
        margin-bottom: 20px;
        text-align: left;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Providers grid */
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 16px;
    }
    
    .provider-logo {
        padding: 15px;
    }
    
    .provider-logo img {
        max-width: 80px;
        max-height: 40px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-nav {
        gap: 15px;
    }

    .nav-row {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }
    
    .nav-row a {
        font-size: 0.85rem;
        padding: 6px 0;
        text-align: center;
    }
    
    /* Sections padding */
    .casinos,
    .promo-section,
    .about-section,
    .providers-section,
    .seo-content-section,
    .faq-section {
        padding: 30px 0; /* Reduced from 60px to 30px */
    }
    
    .section-header {
        margin-bottom: 20px; /* Reduced from 40px to 20px */
    }
    
    /* FAQ Mobile Styles */
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    /* Category Navigation */
    .category-nav {
        padding: 15px 0;
    }
    
    .category-buttons {
        gap: 6px;
        justify-content: space-between;
    }
    
    .category-btn {
        padding: 8px 6px;
        font-size: 0.8rem;
        min-width: auto;
        gap: 3px;
        flex: 1;
        max-width: calc(25% - 3px);
    }
    
    .category-btn img {
        width: 14px;
        height: 14px;
    }
    
    .category-btn span {
        font-size: 0.75rem;
    }
    


    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .game-card img {
        height: 100%;
    }
    
    .promo-card img,
    .promo-banner img {
        height: auto;
        aspect-ratio: 1200 / 560;
    }
    
    .promo-text h3 {
        font-size: 1.5rem;
    }
    
    /* SEO Content Section */
    .seo-content-section {
        padding: 40px 0;
    }
    
    .seo-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .seo-text p {
        margin-bottom: 18px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 18px 16px 18px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 12px;
    }
    
    .provider-logo {
        padding: 10px;
    }
    
    .provider-logo img {
        max-width: 60px;
        max-height: 30px;
    }
    
    /* Footer navigation for smallest screens */
    .footer-nav {
        gap: 12px;
    }
    
    .nav-row {
        gap: 12px;
    }
    
    .nav-row a {
        font-size: 0.8rem;
        padding: 4px 0;
    }
    
    /* Sections padding for smallest screens */
    .casinos,
    .promo-section,
    .about-section,
    .providers-section {
        padding: 20px 0;
    }
}