/*
Theme Name: Lionwing Theme
Author: Lionwing
Description: ธีมสีทอง-เหลือง-ดำ สไตล์คาสิโน
Version: 2.0
*/

/* Reset และ Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #FFD700;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header และ Navbar */
.site-header {
    background:
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow:
        0 2px 10px rgba(255, 215, 0, 0.3),
        0 0 50px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.1) 25%,
        rgba(255, 215, 0, 0.2) 50%,
        rgba(255, 215, 0, 0.1) 75%,
        transparent 100%
    );
    animation: headerShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes headerShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    gap: 30px;
}

/* โลโก้ Lionwing */
.logo a {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo a:hover {
    color: #FFA500;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
}

.tagline {
    font-size: 12px;
    font-weight: 500;
    color: #FFA500;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
    animation: taglineGlow 2s ease-in-out infinite alternate;
}

@keyframes taglineGlow {
    from {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
    }
    to {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: #FFD700;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFA500;
}

/* ปุ่มด้านขวา */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

/* ปุ่มสมัครสมาชิก */
.btn-register {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-color: #FFD700;
    font-weight: bold;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* ปุ่มเข้าสู่ระบบ */
.btn-login {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-login:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

/* ปุ่มโปรโมชั่น */
.btn-promotion {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    color: #fff;
    border-color: #FF6B00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
    }
}

.btn-promotion:hover {
    background: linear-gradient(135deg, #FF4500 0%, #FF0000 100%);
    transform: translateY(-2px);
}

/* Hero Title H1 */
.hero-title {
    color: #FFD700;
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    font-weight: bold;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Banner Section */
.hero-banner {
    background:
        radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 15% 30%, rgba(255, 165, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #0a0a0a 100%);
    padding: 30px 20px;
    border-bottom: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 215, 0, 0.3),
        inset 0 -1px 0 rgba(255, 215, 0, 0.2),
        0 10px 50px rgba(0, 0, 0, 0.5);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 215, 0, 0.03) 10px,
            rgba(255, 215, 0, 0.03) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255, 165, 0, 0.02) 10px,
            rgba(255, 165, 0, 0.02) 20px
        );
    pointer-events: none;
    animation: patternPulse 4s ease-in-out infinite alternate;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 50%
    );
    animation: bannerGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes patternPulse {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

@keyframes bannerGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(10%, 10%) scale(1.1);
        opacity: 0.6;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Banner Image Area */
.banner-main {
    flex: 1;
    max-width: 1000px;
}

.main-banner-image {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    object-fit: cover;
    border: 3px solid #FFD700;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    background: #000;
}

.main-banner-image:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    border-color: #FFA500;
}

/* Featured Games Section */
.banner-featured {
    flex: 0 0 auto;
}

.featured-games {
    display: flex;
    gap: 15px;
    flex-direction: row;
}

.featured-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.featured-card {
    width: 150px;
    height: 150px;
    background: #000;
    border: 3px solid #FFD700;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    border-color: #FFA500;
}

.featured-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.featured-label {
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: color 0.3s ease;
}

.featured-item:hover .featured-label {
    color: #FFA500;
}

/* Category Buttons Section */
.category-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 50px 20px;
    border-bottom: 2px solid #FFD700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-btn:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    border-color: #FFA500;
}

.category-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.category-btn span {
    color: #FFD700;
    font-size: 18px;
    font-weight: bold;
}

.category-btn:hover span {
    color: #FFA500;
}

/* Section Title */
.section-title {
    color: #FFD700;
    font-size: 32px;
    text-align: left;
    margin: 0 0 20px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

/* Games Section - โซนรวมทุกเกมส์ */
.games-section {
    padding: 30px 0;
    background: #1a1a1a;
}

/* ไม่สลับสี ใช้สีเดียวกันหมด */
.easy-win-section,
.hit-games-section,
.slots-section,
.sports-section,
.casino-section {
    background: #1a1a1a;
}

/* Games Row - Single Row Layout */
.games-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto 30px auto;
}

/* Game Card */
.game-card {
    background: #000000;
    border: 3px solid #FFD700;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
    border-color: #FFA500;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.15);
}

/* Providers Section */
.providers-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-bottom: 3px solid #FFD700;
}

.providers-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.provider-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.provider-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    border-color: #FFA500;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.provider-logo-box {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
    background: #000;
    border: 2px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.provider-box:hover .provider-logo-box {
    border-color: #FFA500;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transform: rotate(360deg);
}

.provider-logo-box img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.provider-box h3 {
    color: #FFD700;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.provider-box p {
    color: #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
}

/* SEO Content Section */
.seo-content-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
}

.seo-content {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-title {
    color: #FFD700;
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    font-weight: bold;
    line-height: 1.6;
    padding: 0 20px;
}

.seo-text {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.seo-text p {
    color: #f0f0f0;
    font-size: 19px;
    line-height: 2.2;
    margin-bottom: 35px;
    text-align: justify;
    letter-spacing: 0.3px;
}

.seo-text strong {
    color: #FFD700;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    font-size: 20px;
}

.seo-subtitle {
    color: #FFD700;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    border-left: 5px solid #FFD700;
    padding-left: 20px;
    line-height: 1.6;
}

.seo-subtitle:first-of-type {
    margin-top: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 3px solid #FFD700;
}

.faq-main-title {
    color: #FFD700;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    font-weight: bold;
    line-height: 1.4;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
    border-color: #FFA500;
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

.faq-question {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-question h3 {
    color: #FFD700;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    line-height: 1.7;
}

.faq-answer p {
    color: #f0f0f0;
    font-size: 18px;
    line-height: 2;
    margin: 0;
    letter-spacing: 0.3px;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Area - ซ้าย */
.about-logo {
    flex: 0 0 auto;
}

.site-logo {
    width: 500px;
    height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    animation: float 3s ease-in-out infinite;
    border: 3px solid #FFD700;
    border-radius: 20px;
    background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
    padding: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Description Area - ขวา */
.about-text {
    flex: 1;
}

.about-title {
    color: #FFD700;
    font-size: 48px;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    font-weight: bold;
}

.about-description {
    color: #f0f0f0;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.about-description strong {
    color: #FFD700;
    font-weight: bold;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Feature Points */
.about-features {
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #FFA500;
    transform: translateX(10px);
}

.feature-icon {
    font-size: 24px;
    color: #FFD700;
}

.feature-text {
    color: #f0f0f0;
    font-size: 18px;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-cta {
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-color: #FFD700;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-cta-secondary {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-cta-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    border-top: 3px solid #FFD700;
    padding: 50px 20px 20px 20px;
    margin-top: 50px;
}

/* Footer Logo Section */
.footer-logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 48px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.footer-tagline {
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 40px;
    text-align: center;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Game Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.provider-logo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px 15px;
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.provider-logo:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    border-color: #FFA500;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-logo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #FFD700;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
    overflow: hidden;
}

.payment-logo:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    border-color: #FFA500;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.payment-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.payment-logo:hover img {
    transform: scale(1.1);
}

/* Contact Info */
.contact-info {
    color: #f0f0f0;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid #FFD700;
    border-bottom: 1px solid #FFD700;
    margin-bottom: 30px;
}

.footer-links a {
    color: #FFD700;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 20px;
    text-align: center;
    color: #f0f0f0;
}

.footer-bottom p {
    margin: 8px 0;
    font-size: 14px;
}

/* Links */
a {
    color: #FFD700;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFA500;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-content {
        flex-direction: column;
        gap: 20px;
    }

    .banner-main {
        width: 100%;
        max-width: 100%;
    }

    .main-banner-image {
        max-width: 100%;
        height: 400px;
    }

    .featured-games {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Providers Tablet */
    .providers-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* SEO Content Tablet */
    .seo-content-section {
        padding: 60px 20px;
    }

    .seo-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .seo-text {
        padding: 40px 30px;
    }

    .seo-text p {
        font-size: 17px;
        line-height: 2.1;
    }

    .seo-subtitle {
        font-size: 26px;
        margin-top: 40px;
    }

    /* FAQ Tablet */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-main-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-item {
        padding: 30px;
    }

    .faq-question h3 {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 17px;
        line-height: 1.95;
    }

    /* About Tablet */
    .about-content {
        gap: 40px;
    }

    .site-logo {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* H1 Mobile */
    .hero-title {
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 1.5;
        padding: 0 10px;
    }

    /* Navbar Mobile - Compact */
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
    }

    .logo {
        text-align: center;
    }

    .logo-text {
        font-size: 28px;
    }

    .tagline {
        font-size: 8px;
        display: block;
        max-width: 300px;
        line-height: 1.4;
    }

    .nav-menu {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
        white-space: nowrap;
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 20px;
    }

    /* ปุ่มสมัคร/เข้าสู่ระบบ - แนวนอน */
    .nav-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }

    .btn {
        text-align: center;
        width: 100%;
        padding: 10px 8px;
        font-size: 13px;
        border-radius: 8px;
    }

    .btn-promotion {
        grid-column: 1 / -1;
        font-size: 15px;
        font-weight: bold;
        padding: 12px;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        padding: 15px 10px;
    }

    .banner-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-banner-image {
        height: 200px;
        border-radius: 10px;
        border-width: 2px;
    }

    /* Featured Games - Scroll แนวนอน */
    .featured-games {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 5px;
    }

    .featured-games::-webkit-scrollbar {
        display: none;
    }

    .featured-item {
        flex: 0 0 auto;
        gap: 6px;
    }

    .featured-card {
        width: 80px;
        height: 80px;
        border-width: 2px;
        border-radius: 10px;
    }

    .featured-card img {
        width: 80px;
        height: 80px;
    }

    .featured-label {
        font-size: 10px;
    }

    /* Section Title Mobile */
    .section-title {
        font-size: 20px;
        text-align: center;
        padding: 0 10px;
    }

    /* Games Section Mobile */
    .games-section {
        padding: 20px 0;
    }

    /* Games Row - Scroll แนวนอน แทน Grid */
    .games-row {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
        padding: 0 15px 10px 15px;
        margin: 0 0 15px 0;
        scroll-snap-type: x mandatory;
    }

    .games-row::-webkit-scrollbar {
        display: none;
    }

    .game-card {
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
        border-width: 2px;
        border-radius: 10px;
        scroll-snap-align: start;
        aspect-ratio: auto;
    }

    .game-card:hover {
        transform: scale(1.05);
    }

    /* Providers Mobile - 2 คอลัมน์ */
    .providers-section {
        padding: 30px 15px;
    }

    .providers-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .provider-box {
        padding: 15px 10px;
        border-radius: 10px;
        border-width: 2px;
    }

    .provider-logo-box {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
        border-width: 2px;
    }

    .provider-logo-box img {
        width: 65px;
        height: 65px;
    }

    .provider-box:hover .provider-logo-box {
        transform: rotate(0deg);
    }

    .provider-box h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .provider-box p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* SEO Content Mobile */
    .seo-content-section {
        padding: 40px 15px;
    }

    .seo-title {
        font-size: 22px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .seo-text {
        padding: 20px 15px;
        border-radius: 10px;
        border-width: 2px;
    }

    .seo-text p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 20px;
        text-align: left;
    }

    .seo-text strong {
        font-size: 15px;
    }

    .seo-subtitle {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 40px 15px;
    }

    .faq-main-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-item {
        padding: 18px 15px;
        border-width: 2px;
        border-radius: 10px;
    }

    .faq-question {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .faq-question h3 {
        font-size: 15px;
        line-height: 1.5;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.8;
    }

    /* About Mobile */
    .about-section {
        padding: 40px 15px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .site-logo {
        width: 200px;
        height: 200px;
        padding: 15px;
        border-width: 2px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-description strong {
        font-size: 18px;
    }

    .about-features {
        margin-bottom: 25px;
    }

    .feature-point {
        flex-direction: row;
        text-align: left;
        gap: 10px;
        padding: 10px;
        margin-bottom: 10px;
        border-left-width: 3px;
    }

    .feature-icon {
        font-size: 20px;
        flex: 0 0 auto;
    }

    .feature-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 10px;
        border-width: 2px;
    }

    /* Footer Mobile */
    .site-footer {
        padding: 30px 15px 15px 15px;
        margin-top: 0;
    }

    .footer-logo {
        font-size: 32px;
    }

    .footer-tagline {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-section {
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .payment-methods {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .payment-logo {
        padding: 8px;
        border-width: 2px;
        border-radius: 8px;
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .provider-logo {
        padding: 10px 5px;
        font-size: 10px;
        border-radius: 8px;
    }

    .footer-links {
        gap: 8px;
        padding: 20px 0;
        justify-content: center;
    }

    .footer-links a {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 20px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}
