/* Modern Casino Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #ffd700;
    --text-light: #f0f0f0;
    --text-dark: #333;
    --card-bg: #0f3460;
    --border-color: #2a2a3e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    /* Core Web Vitals Optimization */
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Optimize images for CLS */
img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: attr(width) / attr(height);
    object-fit: cover;
}

/* Prevent layout shift */
.game-card img {
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

/* Optimize fonts */
@font-face {
    font-family: 'Segoe UI';
    src: local('Segoe UI'), local('SegoeUI');
    font-display: swap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Mobile sticky CTA */
.cta-mobile {
    display: none; /* Hidden by default */
    position: sticky; /* Sticky positioning */
    bottom: 1.5rem; /* Distance from the bottom */
    left: 0;
    width: calc(100% - 2rem); /* Full width minus padding */
    max-width: 540px; /* Max width for larger mobile screens */
    margin: 1.5rem auto; /* Center the button */
    padding: 14px 1rem;
    background: linear-gradient(90deg, #ff3a3a 0%, #ff6a00 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 2000; /* High z-index to be on top */
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-mobile:hover,
.cta-mobile:focus {
    background: linear-gradient(90deg, #ff6a00 0%, #ff3a3a 100%);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cta-mobile {
        display: block; /* Show on mobile */
    }
    body {
        padding-bottom: 120px; /* Add padding to body to prevent content overlap */
    }
    .cta-actions {
        display: none;
    }
}

@media (min-width: 769px) {
    .cta-mobile {
        display: none !important; /* Hide on desktop */
    }
}

/* Header & Navigation */
header {
    background: rgba(15, 52, 96, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    gap: 2rem;
}

.local-nap {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    justify-content: space-between;
}

.local-nap address {
    font-style: normal;
}

.local-nap a {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 600;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    display: block;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--gold-color);
    background: rgba(255, 215, 0, 0.1);
}

.nav-links a:hover::before {
    width: 70%;
}

.topic-links {
    margin: 2.5rem 0;
    padding: 1.75rem;
    border-radius: 14px;
    background: rgba(15, 52, 96, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.topic-links h3 {
    margin-bottom: 0.5rem;
    color: var(--gold-color);
    font-size: 1.4rem;
}

.topic-links-subtitle {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.topic-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.topic-links-grid a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.topic-links-grid a:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold-color);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 0.5rem;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Dropdown */
.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 65px;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.lang-dropdown-btn.active {
    background: linear-gradient(135deg, var(--gold-color), #ffed4e);
    color: var(--text-dark);
    border-color: var(--gold-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.lang-dropdown-btn .lang-code {
    flex: 1;
    text-align: left;
}

.lang-dropdown-btn .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.open .arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(15, 52, 96, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    padding: 0.8rem 1rem;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    justify-content: space-between;
}

.lang-dropdown-item:last-child {
    border-bottom: none;
}

.lang-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown-item.selected {
    background: rgba(100, 100, 100, 0.3);
    color: var(--gold-color);
    font-weight: 600;
}

.lang-dropdown-item .lang-code {
    flex: 1;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
}

.lang-dropdown-item .check-icon {
    color: var(--gold-color);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 1rem;
}

.lang-dropdown-item.selected .check-icon {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gold-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.city-highlight {
    font-size: 1rem;
    color: var(--gold-color);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    max-width: 760px;
    margin: 0 auto 2rem auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-card {
    background: rgba(15, 52, 96, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.metric-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--gold-color);
}

.value-prop,
.category-guide,
.global-games,
.competitor-benchmark,
.how-to-start,
.local-guide,
.local-games,
.global-games-list {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: rgba(15, 52, 96, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.value-prop h2,
.category-guide h2,
.global-games h2,
.competitor-benchmark h2,
.how-to-start h2,
.local-guide h2,
.local-games h2,
.global-games-list h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.local-guide ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.local-guide ol li {
    margin-bottom: 0.8rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.tips-grid article {
    background: rgba(15, 52, 96, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.local-games .games-grid,
.global-games-list .games-grid {
    margin: 2rem 0 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    transition: transform 0.25s ease, border 0.25s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.5);
}

.value-card h3 {
    margin-bottom: 0.8rem;
    color: var(--gold-color);
    font-size: 1.1rem;
}

.topic-links {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(15, 52, 96, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.topic-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

.topic-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
}

.topic-links-grid a {
    color: var(--gold-color);
    text-decoration: none;
    padding: 0.55rem 1.2rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.topic-links-grid a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.breadcrumbs {
    margin: 1rem 0 2rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumbs a {
    color: var(--gold-color);
    text-decoration: none;
}

.map-and-service {
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.map-embed iframe {
    width: 100%;
    min-height: 320px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-area {
    background: rgba(15, 52, 96, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1.5rem;
}

.service-area ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.reviews {
    margin: 3rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-card strong {
    display: block;
    margin-top: 1rem;
    color: var(--gold-color);
}

.footer-nap {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-nap address {
    font-style: normal;
    margin: 0.5rem 0;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px dashed rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
    background: rgba(255, 215, 0, 0.08);
}

.category-block {
    margin-bottom: 2.5rem;
}

.category-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.global-games p {
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.competitor-benchmark p {
    opacity: 0.85;
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.benchmark-grid article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
}

.benchmark-grid h3 {
    margin-bottom: 0.6rem;
    color: var(--gold-color);
}

.benchmark-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.how-to-start ol {
    margin-left: 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.how-to-start li {
    margin-left: 0.5rem;
}

.how-to-start strong {
    color: var(--gold-color);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c73650 100%);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    margin: 1.5rem 0 2.5rem 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.25);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.promo-banner-content {
    position: relative;
    z-index: 1;
}

.promo-banner h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.promo-banner p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.promo-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-color) 0%, #ffed4e 100%);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, var(--gold-color) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    align-items: stretch;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
    border-color: var(--gold-color);
}

a.game-card {
    text-decoration: none;
    color: inherit;
}

a.game-card:hover {
    text-decoration: none;
    color: inherit;
}

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card h3 {
    color: var(--gold-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.game-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    opacity: 0.9;
}

.game-card .play-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c73650 100%);
    color: var(--text-light);
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    margin-top: auto;
    text-decoration: none;
    display: block;
}

.game-card .play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
    background: linear-gradient(135deg, #f55a6e 0%, #d93d55 100%);
}

/* Game Card Additional Elements */
.game-card .rtp {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-color);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    flex-shrink: 0;
}

.game-card .features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.game-card .features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.game-card .features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
}

.game-card .expert-note {
    background: rgba(233, 69, 96, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    margin: 1rem 0 0 0;
    border-radius: 5px;
    flex-shrink: 0;
}

.game-card .expert-note h4 {
    color: var(--gold-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.game-card .expert-note p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.95;
}

/* Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.category-card h3 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
    clear: both;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(233, 69, 96, 0.1);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Testimonials */
.testimonials {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
    clear: both;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-author {
    margin-top: 1rem;
    font-style: italic;
    color: var(--gold-color);
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.payment-card h4 {
    color: var(--gold-color);
    margin: 1rem 0;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .burger-menu {
        display: flex;
        order: 2;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: rgba(15, 52, 96, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
        align-items: stretch;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 1.2rem;
        font-size: 1.1rem;
        border-radius: 10px;
        border-bottom: none;
        margin-bottom: 0.5rem;
    }
    
    .nav-links a::before {
        display: none;
    }
    
    .nav-links a:hover {
        background: rgba(255, 215, 0, 0.15);
        transform: translateX(5px);
    }
    
    .lang-selector {
        order: 3;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
    
    nav {
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .lang-dropdown-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        min-width: 60px;
    }
    
    .lang-dropdown-menu {
        right: 0;
        left: auto;
        min-width: 160px;
    }
    
    .lang-dropdown-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-links {
        width: 85%;
        max-width: 300px;
        right: -100%;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .promo-banner h2 {
        font-size: 1.8rem;
    }
    
    .promo-banner p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile CTA Banner */
.mobile-cta-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile CTA Styles - Always visible on mobile */
@media screen and (max-width: 768px) {
    .mobile-cta-banner {
        display: block !important;
        visibility: visible !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100% !important;
        background: rgba(15, 52, 96, 0.98) !important;
        backdrop-filter: blur(15px);
        padding: 1rem !important;
        box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.5) !important;
        z-index: 9999 !important;
        border-top: 1px solid rgba(255, 215, 0, 0.3);
        animation: slideUp 0.4s ease-out;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .mobile-cta-content {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    .mobile-btn {
        padding: 1rem 1.5rem !important;
        font-size: clamp(0.85rem, 4vw, 1rem) !important;
        font-weight: 700 !important;
        border: none !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        text-decoration: none !important;
        display: block !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        overflow: hidden !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }
    
    .mobile-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;
    }
    
    .mobile-btn:hover::before,
    .mobile-btn:active::before {
        left: 100%;
    }
    
    .mobile-btn-primary {
        background: linear-gradient(135deg, var(--accent-color) 0%, #c73650 100%) !important;
        color: var(--text-light) !important;
        box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4) !important;
    }
    
    .mobile-btn-primary:hover,
    .mobile-btn-primary:active {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5) !important;
        background: linear-gradient(135deg, #f55a6e 0%, #d93d55 100%) !important;
    }
    
    /* Add padding to body to prevent content from being hidden behind fixed CTA */
    body {
        padding-bottom: 130px !important;
    }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
    .mobile-cta-banner {
        padding: 0.9rem 0.7rem !important;
    }
    
    .mobile-btn {
        padding: 0.95rem 1.2rem !important;
        font-size: 0.9rem !important;
        letter-spacing: 0.3px !important;
    }
    
    body {
        padding-bottom: 95px !important;
    }
}

/* Very small devices */
@media screen and (max-width: 360px) {
    .mobile-cta-banner {
        padding: 0.8rem 0.6rem !important;
    }
    
    .mobile-btn {
        padding: 0.9rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    body {
        padding-bottom: 90px !important;
    }
}

/* Bonus Cards */
.bonus-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--gold-color);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.bonus-amount {
    font-size: 2.5rem;
    color: var(--gold-color);
    font-weight: bold;
    margin: 1rem 0;
}

.promo-code {
    display: inline-block;
    background: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    margin: 1rem 0;
    letter-spacing: 2px;
}

/* Expert Notes */
.expert-note {
    background: rgba(233, 69, 96, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.expert-note h4 {
    color: var(--gold-color);
    margin-bottom: 0.5rem;
}

/* Tables */
.table-wrapper {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 52, 96, 0.85);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    padding: 0;
    margin-top: 1.5rem;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: transparent;
}

.info-table th,
.info-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table th {
    background: rgba(7, 24, 54, 0.95);
    color: var(--gold-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.info-table tr:hover td {
    background: rgba(233, 69, 96, 0.08);
}

.cta-bar {
    margin: 4rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(255, 215, 0, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.cta-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-bar h2 {
    margin-bottom: 0.4rem;
    font-size: 2rem;
}

.cta-bar p {
    max-width: 640px;
    opacity: 0.9;
}

.cta-bar .btn-primary {
    flex-shrink: 0;
    padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
    .cta-bar {
        text-align: center;
    }
    .cta-bar-content {
        flex-direction: column;
    }
    .cta-bar .btn-primary {
        width: 100%;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--gold-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
}

