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

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
}

/* ===== Header Styles ===== */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0c29 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* ===== Logo Styles ===== */
.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

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

/* ===== CTA Button ===== */
.header-cta {
    flex-shrink: 0;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e55a2b, #d67a1a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: #ffd700;
}

.cta-text {
    white-space: nowrap;
}

.cta-icon {
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ===== Mobile Navigation ===== */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-mobile.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

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

.nav-mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-item:last-child {
    border-bottom: none;
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 30px;
    transition: all 0.3s ease;
}

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

.nav-mobile-link.cta-mobile {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    margin: 10px 20px 0;
    border-radius: 12px;
    font-weight: 600;
}

.nav-mobile-link.cta-mobile:hover {
    background: linear-gradient(135deg, #e55a2b, #d67a1a);
}

.nav-mobile-icon {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

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

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

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

    .logo-image {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .logo-text {
        font-size: 20px;
    }
}

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

    .logo-image {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-mobile-link {
        padding: 14px 20px;
        font-size: 15px;
    }

    .nav-mobile-link.cta-mobile {
        margin: 10px 15px 0;
    }
}

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

/* Focus styles for keyboard navigation */
.nav-link:focus,
.cta-button:focus,
.mobile-menu-toggle:focus,
.nav-mobile-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}
/* ===== Main Content Styles ===== */
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

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

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

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.hero-content a:hover {
    border-bottom-color: #ffd700;
}

.hero-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Section Layouts ===== */
.section-layout-two-col,
.section-layout-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.section-layout-reverse {
    grid-template-columns: 1fr 1fr;
}

.section-layout-reverse .text-content {
    order: 2;
}

.section-layout-reverse .section-image-wrapper {
    order: 1;
}

.text-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.section-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
}

.section-image-full {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.section-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Section Backgrounds ===== */
.direct-website-section,
.slot-games-section,
.baccarat-section,
.auto-deposit-section,
.promotion-section,
.summary-section,
.register-section,
.faq-section,
.warning-section,
.contact-section {
    background: #0a0a0a;
}

.direct-website-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.demo-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 20px;
}

.slot-games-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.baccarat-section {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

/* ===== Typography ===== */
h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: #ffd700;
    margin: 40px 0 20px;
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

h5 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

a {
    color: #ffd700;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffed4e;
}

ul, ol {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

li {
    margin-bottom: 10px;
}

/* ===== Benefit Cards Grid ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.benefit-card h4 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 15px;
}

.benefit-card p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.benefit-card a {
    color: #ffd700;
    font-weight: 600;
}

/* ===== Slot Demo Section ===== */
.demo-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slot-machine {
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 3px solid #ffd700;
    max-width: 500px;
    width: 100%;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.slot-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slot-balance {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reel {
    width: 100px;
    height: 100px;
    background: #000000;
    border-radius: 15px;
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: transform 0.1s ease;
}

.reel.spinning {
    animation: spin 0.5s ease-in-out;
}

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

.slot-controls {
    text-align: center;
    margin-bottom: 20px;
}

.spin-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.spin-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #e55a2b, #d67a1a);
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(255, 107, 53, 0.5);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-result {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    min-height: 30px;
    color: #ffd700;
}

/* ===== Games Grid ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.game-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

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

.game-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.game-card h4 {
    color: #ffd700;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.game-provider {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== Features List ===== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.feature-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.feature-content h4 {
    color: #ffd700;
    margin-bottom: 10px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ===== Baccarat Section ===== */
.baccarat-rules,
.baccarat-types {
    background: rgba(255, 215, 0, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.baccarat-rules h4,
.baccarat-types h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.type-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.type-card h5 {
    color: #ffd700;
    margin-bottom: 10px;
}

.type-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.strategies-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.strategy-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.strategy-card h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.strategy-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ===== Payment Methods ===== */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.payment-method {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.payment-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 15px;
}

.payment-method h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.payment-method p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

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

.steps-column h4 {
    color: #ffd700;
    margin-bottom: 20px;
}

.steps-column ol {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px 20px 20px 45px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.steps-column li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ===== Promotions ===== */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.promo-card.featured {
    grid-column: 1 / -1;
    border: 2px solid #ffd700;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.promo-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
}

.promo-card h3,
.promo-card h4 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 15px;
}

.promo-card p,
.promo-card ul {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.promo-card ul {
    list-style: none;
    margin-left: 0;
}

.promo-card ul li {
    padding-left: 25px;
    position: relative;
}

.promo-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

/* ===== Highlights Grid ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.highlight-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
}

.highlight-card h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Register Steps ===== */
.register-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.register-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 215, 0, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.step-content h3 {
    color: #ffd700;
    margin: 0 0 15px 0;
    text-align: left;
    font-size: 22px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.step-content a {
    color: #ffd700;
    font-weight: 600;
}

/* ===== FAQ Section ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.faq-item h3 {
    color: #ffd700;
    font-size: 20px;
    margin: 0 0 15px 0;
    text-align: left;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-item ul {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 15px 15px 45px;
    border-radius: 8px;
    margin: 15px 0;
}

.faq-item li {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Warning Section ===== */
.warning-box,
.disclaimer-box {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.warning-box p,
.disclaimer-box p {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 20px;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
}

.contact-channel i {
    color: #ffd700;
    font-size: 24px;
}

.cta-register {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.cta-register-button {
    display: inline-block;
    background: #ffffff;
    color: #ff6b35;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.cta-register-button:hover {
    background: #ffd700;
    transform: scale(1.05);
}

.final-tagline {
    margin: 40px 0;
    text-align: center;
}

.final-tagline p {
    font-size: 18px;
    margin-bottom: 15px;
}

.age-warning {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.partner-link {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.partner-link p {
    margin: 0;
    line-height: 1.7;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .content-container {
        padding: 40px 20px;
    }

    .section-layout-two-col,
    .section-layout-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-layout-reverse .text-content {
        order: 1;
    }

    .section-layout-reverse .section-image-wrapper {
        order: 2;
    }

    .benefits-grid,
    .games-grid,
    .payment-methods,
    .promotions-grid,
    .highlights-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .types-grid,
    .strategies-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
    }

    .content-container {
        padding: 30px 15px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .benefits-grid,
    .games-grid,
    .payment-methods,
    .promotions-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .promo-card.featured {
        grid-column: 1;
    }

    .slot-machine {
        padding: 20px;
    }

    .reel {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }

    .spin-button {
        font-size: 18px;
        padding: 12px 40px;
    }

    .register-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 20px;
    }

    .step-content h3 {
        text-align: center;
    }

    .contact-channels {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .slot-reels {
        gap: 10px;
    }

    .reel {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }

    .feature-item,
    .strategy-card {
        padding: 15px;
    }

    .benefit-card,
    .game-card,
    .payment-method,
    .promo-card,
    .highlight-card {
        padding: 20px;
    }
}

/* ===== Footer Styles ===== */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 20px;
    margin-bottom: 80px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.footer-link {
    font-family: 'Prompt', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #ffd700;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    user-select: none;
}

/* ===== Sticky Buttons Styles ===== */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.sticky-btn-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    color: #ffffff;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #5a6678, #3d4758);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0a0a0a;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.sticky-btn-bonus {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #e55a2b, #d67a1a);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* ===== Responsive Design for Footer and Sticky Buttons ===== */
@media (max-width: 768px) {
    .site-footer {
        padding: 25px 15px;
        margin-bottom: 75px;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-separator {
        display: none;
    }

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

    .sticky-buttons {
        padding: 10px 15px;
    }

    .sticky-buttons-container {
        gap: 10px;
    }

    .sticky-btn {
        font-size: 14px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 10px;
        margin-bottom: 70px;
    }

    .footer-link {
        font-size: 12px;
    }

    .sticky-buttons {
        padding: 8px 10px;
    }

    .sticky-buttons-container {
        gap: 8px;
    }

    .sticky-btn {
        font-size: 12px;
        padding: 10px 8px;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        font-size: 11px;
        padding: 10px 6px;
    }

    .sticky-btn-text {
        font-size: 11px;
    }
}

/* Focus styles for keyboard navigation */
.footer-link:focus,
.sticky-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* ===== Login Page Styles ===== */
.login-section {
    min-height: calc(100vh - 70px - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

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

.login-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.login-form {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-label {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    font-size: 18px;
}

.form-input {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    padding: 14px 18px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.btn-login {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0a0a0a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    margin-top: 10px;
}

.btn-login:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-register-outline {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border: 2px solid #ffd700;
    border-radius: 50px;
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.btn-register-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffed4e;
    color: #ffed4e;
    transform: translateY(-2px);
}

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

/* Login Page Responsive */
@media (max-width: 768px) {
    .login-section {
        min-height: calc(100vh - 60px - 75px);
        padding: 40px 15px;
    }

    .login-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .login-form {
        padding: 30px 25px;
    }

    .form-label {
        font-size: 15px;
    }

    .form-input {
        font-size: 15px;
        padding: 12px 16px;
    }

    .btn-login {
        font-size: 16px;
        padding: 14px 28px;
    }

    .btn-register-outline {
        font-size: 15px;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    .login-section {
        min-height: calc(100vh - 60px - 70px);
        padding: 30px 10px;
    }

    .login-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .login-form {
        padding: 25px 20px;
        gap: 20px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-label i {
        font-size: 16px;
    }

    .form-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .btn-login {
        font-size: 15px;
        padding: 13px 24px;
    }

    .btn-register-outline {
        font-size: 14px;
        padding: 11px 24px;
    }
}

/* Login Form Focus Styles */
.form-input:focus,
.btn-login:focus,
.btn-register-outline:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* ===== Privacy Policy Page Styles ===== */
.privacy-policy-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.privacy-policy-content {
    max-width: 1280px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.privacy-policy-content h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

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

.privacy-policy-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

.privacy-policy-content p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-policy-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.privacy-policy-content ul li {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style-type: disc;
}

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

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

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 16px;
    }

    .privacy-policy-content {
        padding: 24px 16px;
    }

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

    .privacy-policy-content h2 {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .privacy-policy-content h3 {
        font-size: 1.2rem;
        margin-top: 24px;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 0.95rem;
    }

    .privacy-policy-content ul {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content h1 {
        font-size: 1.5rem;
    }

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

    .privacy-policy-content h3 {
        font-size: 1.1rem;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 0.9rem;
    }
}
