/* Wolf69 CSS - Dark Mode Casino Site */

/* Promotion Page Styles */

/* Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.promotion-hero h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promotion-hero p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.cta-secondary {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.cta-secondary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    transform: translateY(-2px);
}

.cta-primary.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

/* Section Styles */
.promo-highlights, .new-member-promo, .daily-promos, .festival-promos,
.vip-exclusive, .refer-friend, .benefits-section, .terms-section,
.how-to-section, .final-cta {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Promotion Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    border-color: #ffd700;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: #cccccc;
    font-size: 1rem;
}

/* New Member Promo */
.promo-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-package {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.promo-package h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.package-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.package-item h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.package-item ul {
    list-style: none;
    padding: 0;
}

.package-item li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-item li::before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Daily Promotions */
.daily-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.daily-section h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.daily-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.daily-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.day {
    font-weight: 700;
    color: #ffd700;
    min-width: 100px;
}

.promo {
    color: #cccccc;
    text-align: right;
    flex: 1;
}

.vip-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vip-item {
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    color: #ffffff;
    border-left: 4px solid #ffd700;
}

/* Festival Promotions */
.festival-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.festival-card h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.festival-card h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
}

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

.festival-card li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.festival-card li::before {
    content: "🎁";
    position: absolute;
    left: 0;
}

/* VIP Exclusive */
.vip-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vip-header h2 {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.vip-header h3 {
    color: #ffffff;
    font-size: 1.6rem;
}

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

.vip-tier {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.vip-tier::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.vip-tier.diamond {
    border-color: #b9f2ff;
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.1) 0%, rgba(185, 242, 255, 0.05) 100%);
}

.vip-tier.diamond::before {
    background: linear-gradient(90deg, #b9f2ff 0%, #87ceeb 100%);
}

.vip-tier.platinum {
    border-color: #e5e4e2;
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.1) 0%, rgba(229, 228, 226, 0.05) 100%);
}

.vip-tier.platinum::before {
    background: linear-gradient(90deg, #e5e4e2 0%, #c0c0c0 100%);
}

.vip-tier.gold {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.vip-tier.gold::before {
    background: linear-gradient(90deg, #ffd700 0%, #ffb300 100%);
}

.vip-tier h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.tier-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    color: #cccccc;
    font-size: 0.95rem;
}

/* Refer Friend */
.refer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.refer-content h2 {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.refer-content h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.refer-benefits h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.refer-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.refer-benefits li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.refer-benefits li::before {
    content: "💰";
    position: absolute;
    left: 0;
}

.refer-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.refer-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid #ffd700;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Benefits Section */
.benefits-section h2 {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-section h3 {
    color: #ffffff;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefit-card h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

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

.benefit-card li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-card li::before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Terms Section */
.terms-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.terms-content h2 {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.terms-content h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.terms-group {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.terms-group h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.terms-group ul {
    list-style: none;
    padding: 0;
}

.terms-group li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.terms-group li::before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.warning-box {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.warning-box h4 {
    color: #ff4500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.warning-box ul {
    list-style: none;
    padding: 0;
}

.warning-box li {
    color: #ffcccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.warning-box li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* How To Section */
.how-to-section h2 {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.how-to-section h3 {
    color: #ffffff;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.step-card h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

.step-card ol {
    counter-reset: step-counter;
    padding: 0;
    list-style: none;
}

.step-card li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    counter-increment: step-counter;
}

.step-card li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #ffd700;
    color: #000000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* FAQ Section */
.faq-section h2 {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
    text-align: center;
}

.final-cta h2 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.urgency-content {
    margin-bottom: 3rem;
}

.urgency-main {
    margin-bottom: 3rem;
}

.urgency-main p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.prizes-section h4 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.prizes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.prize-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.prize-rank {
    font-weight: 700;
    color: #ffd700;
    min-width: 120px;
}

.prize-detail {
    color: #cccccc;
    text-align: right;
    flex: 1;
}

.final-cta-buttons {
    margin-bottom: 3rem;
}

.footer-text {
    max-width: 800px;
    margin: 0 auto;
}

.footer-text p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
}

.contact-info span {
    color: #cccccc;
}

.contact-info a {
    color: #ffd700;
    text-decoration: none;
}

.contact-info a:hover {
    color: #ffffff;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1024px) {
    .daily-grid,
    .festival-grid,
    .refer-layout,
    .terms-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vip-tiers {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .promotion-hero h1 {
        font-size: 2rem;
    }

    .promotion-hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .highlights-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .daily-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .day {
        min-width: auto;
    }

    .promo {
        text-align: left;
    }

    .prize-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .prize-rank {
        min-width: auto;
    }

    .prize-detail {
        text-align: left;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .promotion-hero {
        padding: 2rem 0;
    }

    .promotion-hero h1 {
        font-size: 1.6rem;
    }

    .promotion-hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .promo-highlights, .new-member-promo, .daily-promos, .festival-promos,
    .vip-exclusive, .refer-friend, .benefits-section, .terms-section,
    .how-to-section, .final-cta {
        padding: 2rem 0;
    }

    .highlight-card,
    .promo-package,
    .festival-card,
    .vip-tier,
    .benefit-card,
    .step-card,
    .faq-item {
        padding: 1.5rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .cta-primary.large {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Header Styles */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.logo img {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.logo a:hover img {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

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

.nav-desktop a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-desktop a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button a {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button a:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-mobile.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.nav-mobile ul {
    list-style: none;
    padding: 1rem 0;
}

.nav-mobile li {
    margin: 0;
}

.nav-mobile a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-mobile a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #ffd700;
}

.nav-mobile .mobile-cta a {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    margin: 1rem 2rem;
    padding: 12px 24px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    border-left: none;
}

.nav-mobile .mobile-cta a:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Adjustment */
main {
    margin-top: 70px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 0.75rem 0;
        min-height: 60px;
    }

    .nav-desktop,
    .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo a {
        font-size: 1.25rem;
        gap: 8px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    main {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header-content {
        padding: 0.5rem 0;
        min-height: 55px;
    }

    .logo a {
        font-size: 1.1rem;
        gap: 6px;
    }

    .logo img {
        width: 30px;
        height: 30px;
    }

    .nav-mobile a {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-mobile .mobile-cta a {
        margin: 0.75rem 1.5rem;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    main {
        margin-top: 55px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Focus States for Accessibility */
.nav-desktop a:focus,
.nav-mobile a:focus,
.cta-button a:focus,
.logo a:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Homepage Sections Styles */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Primary Button */
.primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    color: #000000;
}

.primary-btn.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(25, 25, 25, 0.9) 100%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.hero-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* System Features Section */
.system-features {
    padding: 6rem 0;
    background: #111111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(25, 25, 25, 0.9) 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.system-details {
    margin: 4rem 0;
    text-align: center;
}

.system-details h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.system-details p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

.system-image {
    text-align: center;
    margin-top: 3rem;
}

.system-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Slot Machine Demo Section */
.demo-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.demo-header {
    text-align: center;
    margin-bottom: 4rem;
}

.demo-header h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.demo-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

.slot-machine-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.slot-machine {
    background: linear-gradient(135deg, #222222 0%, #111111 100%);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
}

.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    background: #000000;
    padding: 2rem 1rem;
    border-radius: 15px;
    border: 2px solid #333333;
}

.reel {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #ffd700;
    border-radius: 10px;
    height: 120px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel.spinning {
    animation: reelSpin 2s ease-in-out;
}

@keyframes reelSpin {
    0% { transform: rotateX(0deg); }
    50% { transform: rotateX(180deg); }
    100% { transform: rotateX(360deg); }
}

.symbol {
    font-size: 3rem;
    text-align: center;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.slot-controls {
    text-align: center;
    margin-bottom: 1.5rem;
}

.spin-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 1.5rem;
}

.spin-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.demo-credits {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
}

.slot-result {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    min-height: 30px;
    margin-top: 1rem;
}

.slot-result.win {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: winFlash 0.5s ease-in-out 3;
}

.slot-result.lose {
    color: #ff6b6b;
}

@keyframes winFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Games Section */
.games-section {
    padding: 6rem 0;
    background: #111111;
}

.games-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 4rem 0;
}

.category-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(25, 25, 25, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateX(10px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.category-card.classic:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.category-card.video:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
}

.category-card.jackpot:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
}

.category-content h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.category-content ul {
    list-style: none;
    padding: 0;
}

.category-content li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.category-content li::before {
    content: '🎰';
    position: absolute;
    left: 0;
    top: 0;
}

.category-icon {
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.providers-section h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.providers-section p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.games-image {
    margin-top: 2rem;
}

.games-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Login Steps Section */
.login-steps {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.steps-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.steps-text h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.steps-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.login-methods, .registration-info, .security-info {
    margin: 3rem 0;
}

.login-methods h3, .registration-info h3, .security-info h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.login-steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.login-steps-list li {
    color: #cccccc;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.6;
    counter-increment: step-counter;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.registration-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.2rem;
    width: 20px;
}

.steps-cta {
    margin-top: 2.5rem;
}

.steps-image {
    text-align: center;
}

.steps-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #111111;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 4rem 0;
}

.service-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(25, 25, 25, 0.9) 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.service-section h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.service-section p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-section h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin: 2rem 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #ffd700;
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffd700;
    width: 30px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.contact-item span {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.support-areas li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.support-areas li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-weight: bold;
}

.banking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.banking-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.banking-item:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.banking-item i {
    font-size: 1.5rem;
    color: #ffd700;
    width: 30px;
}

.banking-item div {
    display: flex;
    flex-direction: column;
}

.banking-item strong {
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.banking-item span {
    color: #cccccc;
    font-size: 0.9rem;
}

.promotions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.promotion-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.promotion-item:hover {
    border-color: #ffd700;
    transform: translateY(-2px);
    background: rgba(255, 215, 0, 0.05);
}

.promo-number {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.promotion-item div {
    display: flex;
    flex-direction: column;
}

.promotion-item strong {
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.promotion-item span {
    color: #cccccc;
    font-size: 0.95rem;
}

.services-image {
    text-align: center;
    margin-top: 3rem;
}

.services-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.advantages, .responsible-gaming, .baccarat-reference {
    margin: 3rem 0;
}

.advantages h3, .responsible-gaming h3, .baccarat-reference h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: #ffd700;
    transform: translateY(-2px);
    background: rgba(255, 215, 0, 0.05);
}

.advantage-item i {
    font-size: 1.5rem;
    color: #ffd700;
    width: 30px;
    flex-shrink: 0;
}

.advantage-item div {
    display: flex;
    flex-direction: column;
}

.advantage-item strong {
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.advantage-item span {
    color: #cccccc;
    font-size: 0.9rem;
}

.responsible-gaming h4 {
    font-size: 1.3rem;
    color: #ffd700;
    margin: 2rem 0 1rem;
}

.responsible-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.responsible-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.responsible-item:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.resp-number {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.responsible-item div {
    display: flex;
    flex-direction: column;
}

.responsible-item strong {
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.responsible-item span {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.baccarat-reference p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
}

.baccarat-reference a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.baccarat-reference a:hover {
    color: #ffffff;
    border-bottom-color: #ffd700;
}

.final-buttons {
    margin: 3rem 0;
    text-align: center;
}

.closing-statement {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 2rem 0;
    font-style: italic;
}

.community-image {
    margin-top: 2rem;
}

.community-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #111111;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 4rem 0;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(25, 25, 25, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(25, 25, 25, 0.9) 100%);
    border-radius: 15px;
    border: 2px solid #ffd700;
}

/* Responsive Design for Homepage Sections */
@media (max-width: 1024px) {
    .hero-content,
    .steps-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .category-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-section,
    .system-features,
    .demo-section,
    .games-section,
    .login-steps,
    .services-section,
    .final-cta,
    .faq-section {
        padding: 4rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p,
    .hero-text p,
    .steps-text p,
    .cta-text p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .slot-machine {
        padding: 2rem 1.5rem;
    }

    .slot-display {
        gap: 0.5rem;
        padding: 1.5rem 0.5rem;
    }

    .symbol {
        font-size: 2.5rem;
    }

    .category-card {
        padding: 2rem;
    }

    .service-section {
        padding: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .system-features,
    .demo-section,
    .games-section,
    .login-steps,
    .services-section,
    .final-cta,
    .faq-section {
        padding: 3rem 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .primary-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .primary-btn.large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .feature-card,
    .category-card,
    .service-section,
    .faq-item {
        padding: 1.5rem;
    }

    .slot-machine {
        padding: 1.5rem 1rem;
    }

    .slot-display {
        gap: 0.3rem;
        padding: 1rem 0.3rem;
    }

    .reel {
        height: 100px;
    }

    .symbol {
        font-size: 2rem;
    }

    .spin-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .category-icon {
        font-size: 3rem;
    }

    .contact-item,
    .banking-item,
    .promotion-item,
    .advantage-item,
    .responsible-item {
        padding: 1rem;
    }

    .contact-item i,
    .banking-item i,
    .advantage-item i {
        font-size: 1.2rem;
    }

    .promo-number,
    .resp-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer {
    background: #111111;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem 0;
    margin-bottom: 80px; /* Space for sticky buttons */
}

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

.footer-legal ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-legal a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.sticky-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Login Button */
.login-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
    color: #ffffff;
}

/* Register Button */
.register-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.register-btn:hover {
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
    color: #ffffff;
}

/* Credit Button */
.credit-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.credit-btn:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: #000000;
}

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
        margin-bottom: 70px;
    }

    .footer-legal ul {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .sticky-buttons {
        padding: 0.75rem 0;
    }

    .sticky-buttons-container {
        padding: 0 15px;
        gap: 0.75rem;
    }

    .sticky-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0;
        margin-bottom: 65px;
    }

    .footer-legal ul {
        gap: 0.75rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .sticky-buttons {
        padding: 0.5rem 0;
    }

    .sticky-buttons-container {
        padding: 0 10px;
        gap: 0.5rem;
    }

    .sticky-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
}

/* Focus States for Accessibility */
.footer-legal a:focus,
.sticky-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .footer-legal a,
    .sticky-btn {
        transition-duration: 0.01ms !important;
    }
}

/* Login Page Styles */
.login-section {
    padding: 8rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.login-container h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    line-height: 1.3;
}

.login-form {
    width: 100%;
    background: rgba(20, 20, 20, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: rgba(50, 50, 50, 0.9);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-buttons .primary-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outline-btn {
    display: inline-block;
    background: transparent;
    color: #ffd700;
    padding: 1.2rem;
    border: 2px solid #ffd700;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.outline-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Login Styles */
@media (max-width: 768px) {
    .login-section {
        padding: 6rem 0 4rem;
    }

    .login-container h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .login-form {
        padding: 2rem;
        margin: 0 1rem;
    }

    .form-group input {
        padding: 1rem;
        font-size: 1rem;
    }

    .form-buttons .primary-btn,
    .outline-btn {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container h1 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .login-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.form-group input:valid:not(:focus):not(:placeholder-shown) {
    border-color: #44ff44;
    box-shadow: 0 0 10px rgba(68, 255, 68, 0.3);
}

.form-group.valid input {
    border-color: #44ff44 !important;
    box-shadow: 0 0 10px rgba(68, 255, 68, 0.3) !important;
}

.form-group.invalid input {
    border-color: #ff4444 !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3) !important;
}

/* Login Message Styles */
.login-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    animation: slideInDown 0.3s ease-out;
}

.login-message.success {
    background: rgba(68, 255, 68, 0.1);
    border: 2px solid #44ff44;
    color: #44ff44;
}

.login-message.error {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Register Section Styles */
.register-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(25, 25, 25, 0.9) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.register-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.register-content h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
}

.register-form {
    width: 100%;
    max-width: 450px;
    background: rgba(20, 20, 20, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Secondary Button for "เข้าสู่ระบบ" */
.secondary-btn {
    display: inline-block;
    background: transparent;
    color: #ffd700;
    padding: 15px 30px;
    border: 2px solid #ffd700;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.secondary-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Responsive Register Styles */
@media (max-width: 768px) {
    .register-section {
        padding: 6rem 0 4rem;
    }

    .register-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .register-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .register-content h1 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .register-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    background: #1a1a1a;
    padding: 6rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.privacy-policy-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    background: #262626;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    line-height: 1.8;
}

.privacy-policy-content h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.privacy-policy-content h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.privacy-policy-content h3 {
    font-size: 1.4rem;
    color: #ffcc80;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.privacy-policy-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.privacy-policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #cccccc;
}

.privacy-policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-policy-content strong {
    color: #ffd700;
    font-weight: 600;
}

.privacy-policy-content section {
    margin-bottom: 2rem;
}

.privacy-policy-content hr {
    border: none;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin: 3rem 0;
}

/* Responsive Privacy Policy Styles */
@media (max-width: 1024px) {
    .privacy-policy-content {
        padding: 2.5rem;
        margin: 0 1rem;
    }

    .privacy-policy-content h1 {
        font-size: 2.2rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 5rem 0 3rem;
    }

    .privacy-policy-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .privacy-policy-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.4rem;
        margin: 2.5rem 0 1rem 0;
    }

    .privacy-policy-content h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .privacy-policy-content ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .privacy-policy-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .privacy-policy-content h2 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .privacy-policy-content h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.5rem 0;
    }

    .privacy-policy-content p {
        text-align: left;
        font-size: 0.9rem;
    }

    .privacy-policy-content ul {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}

/* Terms and Conditions Page Styles */
.terms-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 1280px;
    display: flex;
    flex-direction: column;
}

.terms-content h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.terms-content .terms-section {
    margin-bottom: 3rem;
}

.terms-content .terms-section:last-of-type {
    margin-bottom: 2rem;
}

.terms-content h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin: 3rem 0 1.5rem 0;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.terms-content h2:first-of-type {
    margin-top: 0;
}

.terms-content h3 {
    font-size: 1.4rem;
    color: #ffb300;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.terms-content p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    font-size: 1rem;
}

.terms-content ul, .terms-content ol {
    color: #e0e0e0;
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.terms-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.terms-content ul li {
    list-style-type: disc;
}

.terms-content ol li {
    list-style-type: decimal;
}

.terms-content strong {
    color: #ffd700;
    font-weight: 700;
}

.terms-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.terms-footer hr {
    border: none;
    height: 1px;
    background: rgba(255, 215, 0, 0.2);
    margin-bottom: 2rem;
}

.terms-footer p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.terms-footer p:last-child {
    margin-top: 1.5rem;
    font-style: italic;
    color: #b0b0b0;
}

/* Responsive Design for Terms Page */
@media (max-width: 1024px) {
    .terms-content {
        padding: 2.5rem;
        margin: 1.5rem 0;
    }

    .terms-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .terms-content h2 {
        font-size: 1.6rem;
        margin: 2.5rem 0 1rem 0;
    }

    .terms-content h3 {
        font-size: 1.3rem;
        margin: 2rem 0 1rem 0;
    }
}

@media (max-width: 768px) {
    .terms-content {
        padding: 2rem;
        margin: 1rem;
    }

    .terms-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .terms-content h2 {
        font-size: 1.4rem;
        margin: 2.5rem 0 1rem 0;
    }

    .terms-content h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .terms-content ul, .terms-content ol {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .terms-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .terms-content h2 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .terms-content h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.5rem 0;
    }

    .terms-content p {
        text-align: left;
        font-size: 0.9rem;
    }

    .terms-content ul, .terms-content ol {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}