* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Navigation */
.main-header {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 10, 30, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary-color), var(--neon-pink), var(--primary-color), transparent) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    min-height: 60px;
    max-height: 80px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 60px;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}

.logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo a img {
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    display: block;
    transition: opacity 0.3s;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo a img {
        max-width: 100px;
        max-height: 35px;
    }
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

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

.header-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffed4e 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
    min-height: 44px;
    white-space: nowrap;
}

.header-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.header-play-btn:hover::before {
    width: 300px;
    height: 300px;
}

.header-play-btn span {
    position: relative;
    z-index: 1;
}

/* Pulsing animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
                    0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6),
                    0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
                    0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.header-play-btn {
    animation: pulse 2s ease-in-out infinite;
}

.header-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6),
                0 0 0 0 rgba(255, 215, 0, 0);
    animation: none;
}

.header-play-btn:active {
    transform: translateY(0);
}

.header-play-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-play-btn {
        display: none; /* Hide on mobile, can be shown in menu if needed */
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .nav-list a::after {
        display: none;
    }
}

:root {
    --primary-color: #ffd700;
    --primary-glow: #ffed4e;
    --secondary-color: #ff1744;
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-purple: #9d4edd;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(26, 26, 26, 0.8);
    --card-bg-glass: rgba(30, 30, 30, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-vegas: #ff00ff;
    --border-color: rgba(255, 215, 0, 0.3);
    --border-glow: rgba(255, 215, 0, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 25%, #330066 50%, #4a0080 75%, #000000 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.6;
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        filter: blur(30px);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    background: #000;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.hero-image-container.iframe-active .hero-image {
    display: none;
}

.hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.hero-play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.hero-play-button:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.6));
}

.hero-play-button span {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-family: inherit;
    transition: all 0.3s ease;
}

.hero-play-button:hover span {
    color: #ffffff;
    transform: scale(1.05);
}

.hero-image-container.iframe-active .hero-play-button {
    display: none;
}

.hero-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.hero-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-close-iframe {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
}

.hero-close-iframe:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.hero-close-iframe:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffd700, #ff1744, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.improvements-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    text-align: left;
}

.improvements-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.improvements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.improvement-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.improvement-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.improvement-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.improvement-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* How to Play Section */
.how-to-play {
    padding: 80px 20px;
    background-color: var(--dark-bg);
}

.how-to-play h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: linear-gradient(135deg, var(--card-bg-glass) 0%, rgba(40, 20, 60, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-pink), var(--neon-cyan), var(--primary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-color);
    color: var(--dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    margin-top: 10px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.difficulty-list {
    margin-top: 15px;
    padding-left: 20px;
}

.difficulty-list li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.difficulty-list strong {
    color: var(--text-primary);
}

.comparison-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-bottom: 50px;
}

.comparison-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.comparison-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comparison-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.comparison-item .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.game-rules-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-top: 40px;
}

.game-rules-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.rule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.rule-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.rule-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Where to Play Section */
.where-to-play {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.where-to-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.where-to-play h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.casino-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(30, 15, 45, 0.85) 100%);
    backdrop-filter: blur(12px) saturate(150%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.casino-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-pink), var(--secondary-color), var(--primary-color));
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s, background-position 3s;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.casino-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 0, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.casino-card:hover::after {
    opacity: 1;
}

.casino-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.casino-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

.casino-bonus {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.casino-bonus strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 12px;
}

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

.bonus-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.bonus-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.casino-link {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff4569 50%, var(--neon-pink) 100%);
    background-size: 200% 200%;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
    margin-top: auto;
}

.casino-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.casino-link:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.5), 0 0 20px rgba(255, 0, 255, 0.4);
}

.casino-link:hover::before {
    width: 300px;
    height: 300px;
}

.licensing-info {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.licensing-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.licensing-info p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Game Demo Section */
.game-demo {
    padding: 80px 20px;
    background-color: var(--dark-bg);
}

.game-demo h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.demo-container {
    margin: 50px 0;
}

.demo-image-wrapper {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.demo-preview-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.demo-placeholder {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-content {
    max-width: 600px;
}

.demo-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.demo-content ul {
    text-align: left;
    margin: 30px 0;
    padding-left: 20px;
    color: var(--text-secondary);
}

.demo-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.demo-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-family: inherit;
    min-height: 44px;
    margin-top: 20px;
}

.demo-button:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.demo-button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.demo-button-wrapper {
    text-align: center;
    margin: 30px 0;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0a1a 50%, #0f0f0f 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

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

.gallery-item {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8) 0%, rgba(25, 15, 40, 0.75) 100%);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border: 2px dashed var(--border-color);
    min-height: 200px;
}

.gallery-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.gallery-placeholder p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Game Mechanics Section */
.game-mechanics {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.game-mechanics h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.mechanics-explanation {
    max-width: 1000px;
    margin: 50px auto 0;
}

.mechanics-visual,
.mechanics-details {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.mechanics-visual h3,
.mechanics-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mechanics-visual p,
.mechanics-details p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 15px;
}

.mechanics-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mechanics-list li {
    padding: 12px 0 12px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mechanics-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.mechanics-list strong {
    color: var(--text-primary);
}

/* Detailed Steps */
.detailed-steps {
    margin-top: 50px;
}

.detailed-steps h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.detailed-step {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.detailed-step h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.detailed-step p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.detailed-step strong {
    color: var(--text-primary);
}

.difficulty-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.difficulty-detail-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.difficulty-detail-card h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.difficulty-detail-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Specs Table */
.rules-table {
    margin-top: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.specs-table td {
    color: var(--text-secondary);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover {
    background: rgba(255, 215, 0, 0.03);
}

/* Key Features Section */
.key-features {
    padding: 80px 20px;
    background-color: var(--dark-bg);
}

.key-features h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.85) 0%, rgba(20, 10, 35, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px) rotate(1deg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.3), 0 0 25px rgba(255, 215, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.feature-card strong {
    color: var(--text-primary);
}

/* Enhanced Casino Cards */
.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.casino-rating {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.casino-features {
    margin: 15px 0;
}

.casino-feature-item {
    color: var(--text-secondary);
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Updated casino-bonus styles are defined earlier in the file */

.casino-selection-tips {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.casino-selection-tips h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.casino-selection-tips p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.casino-selection-tips ul {
    list-style: none;
    padding: 0;
}

.casino-selection-tips li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.casino-selection-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.casino-selection-tips strong {
    color: var(--text-primary);
}

/* Winning Tips Section */
.winning-tips {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.winning-tips h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tip-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(35, 15, 50, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tip-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(45deg, var(--primary-color), var(--neon-cyan), var(--neon-pink));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.tip-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.tip-card:hover::after {
    opacity: 1;
}

.tip-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.tip-card strong {
    color: var(--text-primary);
}

.responsible-gambling-note {
    background: rgba(255, 23, 68, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
}

.responsible-gambling-note h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.responsible-gambling-note p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.responsible-gambling-note ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.responsible-gambling-note li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.responsible-gambling-note li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background-color: var(--dark-bg);
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-accordion-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
    font-family: inherit;
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--primary-color);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Legacy FAQ Grid (for backward compatibility) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, border-color 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background-color: var(--dark-bg);
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
    background: var(--dark-bg);
}

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

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.author-location {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.testimonial-rating {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 5px 0;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    flex-grow: 1;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Game Verdict Section */
.game-verdict {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.game-verdict h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.verdict-pros,
.verdict-cons {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.verdict-pros {
    border-left: 4px solid #4caf50;
}

.verdict-cons {
    border-left: 4px solid var(--secondary-color);
}

.verdict-pros h3,
.verdict-cons h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.verdict-pros ul,
.verdict-cons ul {
    list-style: none;
    padding: 0;
}

.verdict-pros li,
.verdict-cons li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.verdict-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.2rem;
}

.verdict-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.verdict-pros strong,
.verdict-cons strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.verdict-summary {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-top: 40px;
}

.verdict-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.verdict-summary p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.verdict-summary strong {
    color: var(--text-primary);
}

/* App Download Page Styles */
.table-of-contents {
    padding: 60px 20px;
    background: var(--dark-bg);
}

.table-of-contents h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.toc-list {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
}

.toc-list li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.toc-list a:hover {
    color: var(--primary-color);
}

.app-intro,
.app-platforms {
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.app-intro h2,
.app-platforms h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.app-intro p,
.app-platforms p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.app-intro ul {
    max-width: 900px;
    margin: 20px auto;
    padding-left: 30px;
    color: var(--text-secondary);
}

.app-intro li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.key-points-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 30px auto;
    max-width: 900px;
}

.key-points-box h3,
.key-points-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.key-points-box h3:first-child,
.key-points-box h4:first-child {
    margin-top: 0;
}

.key-points-box ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.key-points-box li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.key-points-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.key-points-box strong {
    color: var(--text-primary);
}

/* Image Wrappers */
.overview-image-wrapper {
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.overview-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

.step-image-wrapper {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.step-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.rules-image-wrapper {
    margin: 30px auto;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.rules-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid var(--border-color);
    max-height: 300px;
    object-fit: cover;
}

.method-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
    max-height: 350px;
    object-fit: cover;
}

.mechanics-image-wrapper {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.mechanics-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.system-requirements {
    padding: 60px 20px;
    background: var(--dark-bg);
}

.system-requirements h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.system-requirements p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.requirements-table {
    max-width: 800px;
    margin: 0 auto;
}

.download-guide {
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.download-guide h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.download-guide > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.download-steps {
    max-width: 900px;
    margin: 0 auto;
}

.download-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.step-number-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.step-content strong {
    color: var(--text-primary);
}

.ios-note,
.pc-tips {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ios-note h3,
.pc-tips h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ios-note ul,
.pc-tips ul {
    list-style: none;
    padding: 0;
}

.ios-note li,
.pc-tips li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ios-note li::before,
.pc-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.download-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.method-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.method-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.method-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.method-card ol {
    padding-left: 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.method-card li {
    margin-bottom: 10px;
}

.method-card strong {
    color: var(--text-primary);
}

.platform-comparison {
    padding: 60px 20px;
    background: var(--dark-bg);
}

.platform-comparison h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.platform-comparison p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(255, 215, 0, 0.03);
}

.app-vs-website {
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.app-vs-website h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.app-vs-website > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.comparison-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.comparison-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-card strong {
    color: var(--text-primary);
}

.recommendation-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.recommendation-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.recommendation-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.recommendation-box strong {
    color: var(--text-primary);
}

.real-money-guide {
    padding: 60px 20px;
    background: var(--dark-bg);
}

.real-money-guide h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.real-money-guide > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.guide-steps {
    max-width: 900px;
    margin: 0 auto;
}

.guide-step-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
}

.guide-step-card .step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.guide-step-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.guide-step-card p,
.guide-step-card ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.guide-step-card strong {
    color: var(--text-primary);
}

.guide-step-card ul {
    padding-left: 25px;
    list-style: none;
}

.guide-step-card li {
    padding: 5px 0 5px 20px;
    position: relative;
}

.guide-step-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.bonuses-section,
.promo-codes {
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.bonuses-section h2,
.promo-codes h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.bonuses-section > p,
.promo-codes > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-warning {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 15px;
    margin: 20px auto;
    max-width: 900px;
    color: var(--text-secondary);
}

.bonuses-table-wrapper,
.promo-codes-table-wrapper {
    overflow-x: auto;
    max-width: 1000px;
    margin: 30px auto;
}

.bonuses-table,
.promo-codes-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.bonuses-table th,
.bonuses-table td,
.promo-codes-table th,
.promo-codes-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.bonuses-table th,
.promo-codes-table th {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.bonuses-table td,
.promo-codes-table td {
    color: var(--text-secondary);
}

.bonuses-table tr:last-child td,
.promo-codes-table tr:last-child td {
    border-bottom: none;
}

.bonus-tips,
.promo-tips {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-tips h3,
.promo-tips h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bonus-tips ul,
.promo-tips p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.bonus-tips ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.bonus-tips li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.bonus-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.bonus-tips strong,
.promo-tips strong {
    color: var(--text-primary);
}

.troubleshooting {
    padding: 60px 20px;
    background: var(--dark-bg);
}

.troubleshooting h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.troubleshooting > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.trouble-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.trouble-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trouble-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.trouble-card strong {
    color: var(--text-primary);
}

.trouble-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.trouble-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.trouble-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.support-note {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.support-note h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.support-note p,
.support-note ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.support-note ul {
    list-style: none;
    padding: 0;
}

.support-note li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.support-note li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.conclusion {
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.conclusion h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.conclusion p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.conclusion-features {
    max-width: 900px;
    margin: 20px auto;
    padding-left: 30px;
    color: var(--text-secondary);
}

.conclusion-features li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.conclusion ol {
    max-width: 900px;
    margin: 20px auto;
    padding-left: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.conclusion li {
    margin-bottom: 10px;
}

.conclusion strong {
    color: var(--text-primary);
}

.hero-warning {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #666666;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Utility classes for inline styles replacement */
.text-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.margin-top-small {
    margin-top: 20px;
}

.margin-top-medium {
    margin-top: 30px;
}

.margin-top-large {
    margin-top: 40px;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-secondary-link {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.text-secondary-link:hover {
    color: var(--primary-color);
}

/* Image optimization - prevent layout shift */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* When width/height attributes are present, browser will use them to prevent layout shift */

/* Demo Game Modal */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.demo-modal-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    max-height: 90vh;
    background: var(--dark-bg);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    background: var(--card-bg);
}

.demo-modal-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.demo-modal-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.demo-modal-close:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.demo-modal-body {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.demo-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile adjustments for demo modal */
@media (max-width: 768px) {
    .demo-modal {
        padding: 0;
    }
    
    .demo-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        height: 100vh;
    }
    
    .demo-modal-header {
        padding: 15px 20px;
    }
    
    .demo-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .demo-modal-body {
        padding-bottom: 0;
        height: calc(100vh - 70px);
        flex: 1;
    }

    /* Hero play button mobile */
    .hero-play-button svg {
        width: 56px;
        height: 56px;
    }

    .hero-play-button span {
        font-size: 1rem;
    }

    .hero-close-iframe {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        padding: 8px;
    }
}

/* Profit Calculator Section */
.profit-calculator-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(51, 0, 102, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.calculator-container {
    background: var(--card-bg);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    padding: 40px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calculator-input-group label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.calculator-input-group input {
    padding: 15px;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.calculator-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.calculator-select {
    padding: 15px;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 44px;
}

.calculator-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.calculator-select option {
    background: var(--dark-bg);
    color: var(--text-primary);
}

.input-hint {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.calculator-btn {
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    margin-top: 10px;
    min-height: 44px;
}

.calculator-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.calculator-btn:active {
    transform: translateY(0);
}

.calculator-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.calculator-results {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.result-item.result-total {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-top: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.result-item.result-profit {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.result-item.result-chance {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    margin-top: 10px;
}

.result-item.result-chance .result-value {
    color: #4ade80;
    font-size: 1.8rem;
}

.chance-warning {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.chance-warning p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chance-warning strong {
    color: var(--secondary-color);
}

.result-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.result-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.result-item.result-profit .result-value {
    font-size: 2rem;
    color: #ffd700;
}

.calculator-examples {
    margin-top: 40px;
}

.calculator-examples h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.example-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.example-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.example-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.example-profit {
    color: var(--primary-color);
    font-weight: 700;
}

.calculator-warning {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 20px;
}

.calculator-warning strong {
    color: var(--secondary-color);
}

/* Casino logo images */
.casino-logo img {
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Mobile adjustments for calculator */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 30px;
    }
    
    .calculator-results {
        padding: 20px;
    }
    
    .result-value {
        font-size: 1.3rem;
    }
    
    .result-item.result-profit .result-value {
        font-size: 1.6rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    max-width: 100%;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-consent-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #000000;
}

.cookie-btn-accept:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.cookie-btn-necessary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cookie-btn-necessary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cookie-btn-customize {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid transparent;
    text-decoration: underline;
}

.cookie-btn-customize:hover {
    color: var(--primary-color);
}

/* Focus visible for better accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improve button accessibility */
button {
    cursor: pointer;
    touch-action: manipulation; /* Better touch performance */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Touch-friendly links */
a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
}

/* Prevent text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Better scrolling on mobile */
body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Prevent horizontal scroll on all elements */
* {
    max-width: 100%;
}

/* Ensure images don't overflow */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Prevent text from being too small */
    body {
        font-size: 16px; /* Minimum readable size */
    }
    
    /* Better spacing for touch */
    .nav-list a,
    .footer-links a {
        padding: 15px 0;
    }
    
    /* Mobile menu improvements */
    .mobile-menu-toggle {
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better form inputs on mobile */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Hero stats */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Grid layouts */
    .steps-grid,
    .casino-cards,
    .testimonials-grid,
    .features-grid,
    .gallery-grid,
    .improvements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    /* Cards and sections */
    .feature-card,
    .casino-card,
    .testimonial-card {
        padding: 20px;
    }
    
    /* Buttons - ensure minimum touch target size (44x44px) */
    button,
    .btn,
    .casino-link,
    .demo-button {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Links - ensure touch-friendly (but not all links need 44px) */
    .nav-list a,
    .footer-links a,
    .casino-link,
    .demo-button,
    .related-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Regular text links - smaller touch target is OK */
    .text-link {
        min-height: auto;
        display: inline;
    }
    
    /* Tables - horizontal scroll on mobile */
    .table-wrapper,
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px 0;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        width: 100%;
    }
    
    .table-wrapper table,
    .comparison-table-wrapper table,
    table.specs-table,
    table.rules-table,
    table.comparison-table {
        min-width: 600px;
        width: 100%;
        display: table;
    }
    
    /* Smaller table padding on mobile */
    .specs-table th,
    .specs-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Hero section */
    .hero {
        padding: 60px 15px;
    }
    
    /* Sections padding */
    .app-intro,
    .game-mechanics,
    .key-features,
    .where-to-play,
    .game-demo,
    .gallery,
    .game-verdict,
    .faq {
        padding: 60px 15px;
    }
    
    /* Demo section mobile adjustments */
    .demo-placeholder {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .demo-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .demo-content ul {
        padding-left: 20px;
    }
    
    /* Key points box */
    .key-points-box {
        padding: 20px;
    }
    
    /* Back to top button position */
    .back-to-top {
        bottom: 100px; /* Above cookie popup */
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 50px 12px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Sections */
    .app-intro,
    .game-mechanics,
    .key-features,
    .where-to-play,
    .game-demo,
    .gallery,
    .testimonials,
    .game-verdict,
    .faq {
        padding: 50px 12px;
    }
    
    /* Cards */
    .feature-card,
    .casino-card,
    .testimonial-card {
        padding: 15px;
    }
    
    /* Hero stats - single column on very small screens */
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    /* Buttons */
    button,
    .btn,
    .casino-link,
    .demo-button {
        padding: 14px 18px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Cookie consent */
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent-text {
        min-width: 100%;
    }
    
    .cookie-consent-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px;
    }
    
    /* Back to top */
    .back-to-top {
        bottom: 90px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
    
    /* Tables - smaller font on mobile */
    table {
        font-size: 0.85rem;
    }
    
    table th,
    table td {
        padding: 8px 6px;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--bg-primary);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(20, 20, 20, 0.8);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--text-primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Related Content Section */
.related-content {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.related-content h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.related-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.related-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.related-card h3 a:hover {
    color: var(--primary-color);
}

.related-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.related-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.related-link:hover {
    gap: 10px;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 12px 0;
    }
    
    .breadcrumbs li {
        font-size: 0.85rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .related-content {
        padding: 60px 0;
    }
    
    .related-content h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-card {
        padding: 25px;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    /* FAQ Accordion responsive */
    .faq-accordion {
        max-width: 100%;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    /* Cookie consent responsive */
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-consent-text {
        min-width: 100%;
    }
    
    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        min-height: 44px;
        padding: 14px;
    }
    
    /* Back to top button - adjust for cookie popup */
    .back-to-top {
        bottom: 100px;
    }
}

/* Unique heading effects */
h1, h2 {
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--neon-pink), var(--primary-color), transparent);
    border-radius: 2px;
    opacity: 0.8;
}

h2:hover::after {
    width: 100%;
    transition: width 0.4s ease;
}

/* Enhanced text shadows for Vegas feel */
.hero h1 {
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 0, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Unique scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-left: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--neon-pink));
    border-radius: 6px;
    border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-pink), var(--primary-color));
}

/* Extra small devices - additional adjustments */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero,
    .app-intro,
    .game-mechanics,
    .key-features,
    .where-to-play,
    .game-demo,
    .gallery,
    .testimonials,
    .game-verdict,
    .faq {
        padding: 40px 10px;
    }
}

