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

html {
    scroll-behavior: smooth;
}

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

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

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border-radius: 1px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000 !important;
    font-weight: 700;
    padding: 12px 24px !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #000000 !important;
}

.cta-button:hover::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav-content {
    padding: 20px 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.mobile-nav-item:last-child {
    border-bottom: none;
    margin-top: 10px;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

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

.mobile-cta-button {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000 !important;
    font-weight: 700;
    margin: 0 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Main Content Spacing */
main {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
}

/* Terms and Conditions Styles */
.terms-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Sarabun', sans-serif;
    line-height: 1.8;
    color: #ffffff;
}

.terms-content h1 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-content h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffd700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.terms-content h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #ff6b35;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 12px;
}

.terms-content h5 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.terms-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #e0e0e0;
}

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

.contact-info {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.contact-info p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    margin: 40px 0;
}

.terms-footer {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.terms-footer p {
    margin-bottom: 15px;
}

.terms-footer p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    color: #ffd700;
}

/* Responsive Terms Content */
@media (max-width: 1024px) {
    .terms-content {
        padding: 30px 20px;
    }
    .terms-content h1 {
        font-size: 2.2rem;
    }
    .terms-content h2 {
        font-size: 1.6rem;
    }
    .terms-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .terms-content {
        padding: 25px 15px;
    }
    .terms-content h1 {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    .terms-content h2 {
        font-size: 1.4rem;
        margin-top: 35px;
        margin-bottom: 18px;
    }
    .terms-content h3 {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    .terms-content ul {
        padding-left: 25px;
    }
    .contact-info {
        padding: 15px;
        margin: 25px 0;
    }
    .terms-footer {
        padding: 25px 15px;
        margin-top: 35px;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 20px 10px;
    }
    .terms-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    .terms-content h2 {
        font-size: 1.2rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .terms-content h3 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .terms-content h4 {
        font-size: 1.05rem;
        margin-top: 18px;
        margin-bottom: 8px;
    }
    .terms-content p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    .terms-content li {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    .terms-content ul {
        padding-left: 20px;
    }
    .contact-info {
        padding: 12px;
        margin: 20px 0;
    }
    .contact-info p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .terms-footer {
        padding: 20px 12px;
        margin-top: 30px;
    }
    .terms-footer p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}

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

    .header-content {
        height: 60px;
    }

    .desktop-nav {
        display: none;
    }

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

    .mobile-nav {
        top: 60px;
    }

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

    .logo-img {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }

    main {
        margin-top: 60px;
    }
}

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

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

    .logo-img {
        width: 30px;
        height: 30px;
        margin-right: 6px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }
}

/* Animation for smooth transitions */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInDown 0.5s ease;
}

/* Homepage Styles */

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.hero-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

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

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

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #111111;
}

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 50px;
}

.demo-game {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slot-machine {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    max-width: 500px;
    width: 100%;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.slot-header h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin: 0;
}

.credits {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.reel {
    background: #000000;
    border: 2px solid #ffd700;
    border-radius: 10px;
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.symbol {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    transition: transform 0.5s ease;
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.bet-section {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.bet-section select {
    background: #333333;
    color: #ffffff;
    border: 1px solid #ffd700;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 1rem;
}

.spin-btn {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.win-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ff00;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #0a0a0a;
}

.content-grid {
    display: grid;
    gap: 40px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.advantage-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.advantage-list {
    list-style: none;
}

.advantage-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.advantage-list i {
    color: #00ff00;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Slots Games Section */
.slots-games {
    padding: 80px 0;
    background: #111111;
}

.content-layout {
    display: grid;
    gap: 50px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.game-category h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 30px;
}

.game-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-type-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.game-info h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.game-info p {
    color: #cccccc;
    line-height: 1.5;
}

.promotions-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.promotions-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.promotion-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.promotion-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.promotion-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

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

/* Banking Section */
.banking-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.banking-content {
    display: grid;
    gap: 50px;
}

.banking-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.banking-intro p {
    margin-bottom: 20px;
}

.banking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.banking-channels {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.channel-group h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.bank-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.bank-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.bank-item span {
    color: #ffffff;
    font-weight: 500;
}

.deposit-steps h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: #cccccc;
    line-height: 1.5;
}

.security-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.security-info h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.security-info p {
    color: #e0e0e0;
    line-height: 1.6;
}

.banking-bottom {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Live Casino Section */
.live-casino {
    padding: 80px 0;
    background: #111111;
}

.casino-content {
    display: grid;
    gap: 50px;
}

.casino-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.casino-intro p {
    margin-bottom: 20px;
}

.casino-intro a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid #ffd700;
}

.casino-intro a:hover {
    color: #ff6b35;
    border-color: #ff6b35;
}

.casino-games-grid {
    display: grid;
    gap: 40px;
}

.game-category-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

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

.category-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.category-card h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.game-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.game-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.game-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

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

.casino-features {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.casino-features h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.casino-features p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-list h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.features-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
}

.features-list i {
    color: #00ff00;
    font-size: 1.2rem;
    width: 20px;
}

.strategy-info h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.strategy-info p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* VIP Section */
.vip-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.vip-content {
    display: grid;
    gap: 50px;
}

.vip-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.vip-intro p {
    margin-bottom: 20px;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vip-benefits h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 30px;
}

.benefits-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 30px;
}

.benefits-card h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

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

.benefit-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

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

.vip-levels h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.level-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.level-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.level-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.level-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

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

.level-item.bronze { border-left: 4px solid #cd7f32; }
.level-item.silver { border-left: 4px solid #c0c0c0; }
.level-item.gold { border-left: 4px solid #ffd700; }
.level-item.platinum { border-left: 4px solid #e5e4e2; }
.level-item.diamond { border-left: 4px solid #b9f2ff; }

.customer-service h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 30px;
}

.contact-channels h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.contact-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

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

.service-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin-bottom: 30px;
}

.service-info p {
    color: #e0e0e0;
    line-height: 1.6;
}

.personalized-service h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.personalized-service p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.special-services {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.special-services h5 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.special-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.special-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
}

.special-services i {
    color: #00ff00;
    font-size: 1.2rem;
    width: 20px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-button-large {
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.cta-button-large.primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button-large.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

.cta-button-large.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-large.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-subtitle {
    font-size: 1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 80px;
}

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

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

.footer-link {
    text-decoration: none;
    color: #cccccc;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
}

.footer-link:hover {
    color: #ffd700;
    transform: translateY(-1px);
}

.footer-link:hover::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 15px 0;
}

.sticky-buttons-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 100%;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    font-family: 'Sarabun', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    min-height: 44px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-btn.login {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.sticky-btn.register {
    background: linear-gradient(135deg, #4285f4, #1976d2);
    color: #ffffff;
}

.sticky-btn.credit {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sticky-btn.login:hover {
    background: linear-gradient(135deg, #f5f5f5, #d0d0d0);
    color: #000000;
}

.sticky-btn.register:hover {
    background: linear-gradient(135deg, #5a95f5, #2086e3);
    color: #ffffff;
}

.sticky-btn.credit:hover {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000000;
}

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .advantages-grid,
    .games-grid,
    .banking-grid,
    .vip-grid {
        grid-template-columns: 1fr;
    }

    .game-categories {
        grid-template-columns: 1fr;
    }

    /* Footer responsive */
    .footer-nav {
        gap: 20px;
    }

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

    /* Sticky buttons responsive */
    .sticky-buttons-content {
        gap: 12px;
    }

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .slot-machine {
        padding: 20px;
    }

    .slot-controls {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .advantages-grid,
    .games-grid,
    .banking-grid,
    .vip-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card,
    .promotions-card,
    .benefits-card,
    .casino-features {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-large {
        width: 100%;
        max-width: 300px;
    }

    /* Footer responsive */
    .footer {
        margin-bottom: 75px;
    }

    .footer-nav {
        gap: 15px;
    }

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

    /* Sticky buttons responsive */
    .sticky-buttons {
        padding: 12px 0;
    }

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

    .sticky-btn {
        font-size: 12px;
        padding: 10px 12px;
        min-height: 40px;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .slot-reels {
        gap: 10px;
    }

    .reel {
        height: 150px;
    }

    .symbol {
        font-size: 2rem;
    }

    .game-type-item,
    .benefit-item,
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .game-number,
    .benefit-number,
    .step-number {
        align-self: center;
    }

    /* Footer responsive */
    .footer {
        margin-bottom: 70px;
        padding: 25px 0;
    }

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

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

    /* Sticky buttons responsive */
    .sticky-buttons {
        padding: 10px 0;
    }

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

    .sticky-btn {
        font-size: 11px;
        padding: 8px 10px;
        min-height: 36px;
    }
}

/* Promotion Page Styles */
.promo-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 107, 53, 0.1)),
                linear-gradient(45deg, #0a0a0a, #1a1a1a);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.promo-hero-content {
    position: relative;
    z-index: 1;
}

.promo-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    position: relative;
}

.promo-section:nth-child(even) {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.promo-content {
    max-width: 100%;
}

.promo-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.promo-header {
    text-align: center;
    margin-bottom: 50px;
}

.promo-header p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.promo-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.promo-grid-three {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.promo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.promo-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.05));
    position: relative;
}

.promo-card.featured::after {
    content: '⭐ แนะนำ';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.promo-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-list {
    list-style: none;
    margin-bottom: 25px;
}

.promo-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

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

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

.promo-list-ordered {
    list-style: none;
    counter-reset: item;
    margin-bottom: 25px;
}

.promo-list-ordered li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 35px;
    counter-increment: item;
}

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

.promo-list-ordered li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    top: 10px;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 200px;
    text-align: center;
}

.promo-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.promo-btn.secondary {
    background: linear-gradient(135deg, #4285f4, #1976d2);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.3);
}

.promo-btn.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid #ffd700;
}

.promo-btn.final {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000000;
    font-size: 1.2rem;
    padding: 20px 40px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    border: 3px solid #ffd700;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.promo-btn.secondary:hover {
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.promo-btn.gold:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.promo-btn.final:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.promo-cta {
    text-align: center;
    margin-top: 30px;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonials blockquote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ffd700;
    padding: 20px;
    border-radius: 10px;
    margin: 0;
}

.testimonials blockquote p {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonials cite {
    color: #ffd700;
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.faq-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.promo-final {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.promo-final::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.05) 10px,
        rgba(255, 215, 0, 0.05) 20px
    );
}

.promo-final-content {
    position: relative;
    z-index: 1;
}

.promo-final-content p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin: 30px 0;
}

.contact-info p {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 600;
}

.final-cta {
    margin-top: 40px;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1024px) {
    .promo-hero-title {
        font-size: 2.5rem;
    }

    .promo-content h2 {
        font-size: 2rem;
    }

    .promo-grid-three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .promo-hero {
        padding: 60px 0 40px;
    }

    .promo-hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .promo-section {
        padding: 40px 0;
    }

    .promo-content h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .promo-header p {
        font-size: 1rem;
    }

    .promo-grid-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-grid-three {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-card {
        padding: 20px;
    }

    .promo-card h3 {
        font-size: 1.3rem;
    }

    .promo-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .promo-btn {
        font-size: 0.9rem;
        padding: 12px 25px;
        min-width: 180px;
    }

    .promo-btn.final {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .testimonials {
        gap: 15px;
    }

    .testimonials blockquote {
        padding: 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .promo-final {
        padding: 40px 0;
    }

    .promo-final-content p {
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

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

    .promo-content h2 {
        font-size: 1.5rem;
    }

    .promo-card {
        padding: 15px;
    }

    .promo-card h3 {
        font-size: 1.2rem;
    }

    .promo-list li {
        font-size: 0.85rem;
        padding-left: 20px;
    }

    .promo-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
        min-width: 160px;
    }

    .promo-btn.final {
        font-size: 0.9rem;
        padding: 12px 25px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .promo-final-content p {
        font-size: 0.9rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

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

.login-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.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

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

.login-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sarabun', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-label i {
    color: #ffd700;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

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

.form-input:invalid {
    border-color: #ff4757;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: 'Sarabun', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.form-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.form-btn.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
}

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

.forgot-password {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #ffd700;
}

.forgot-password i {
    font-size: 12px;
}

/* Login Page Responsive */
@media (max-width: 768px) {
    .login-section {
        padding: 80px 0 30px;
        min-height: calc(100vh - 140px);
    }

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

    .login-form {
        padding: 30px 25px;
        margin: 0 10px;
        border-radius: 16px;
    }

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

    .form-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .form-actions {
        gap: 12px;
    }

    .password-toggle {
        right: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login-content {
        max-width: 100%;
    }

    .login-title {
        font-size: 20px;
        line-height: 1.4;
    }

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

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

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

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

    .forgot-password {
        font-size: 13px;
    }
}

/* Form Alert Styles */
.form-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid;
    animation: slideInDown 0.3s ease-out;
}

.form-alert-success {
    background: rgba(39, 174, 96, 0.15);
    border-color: rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.form-alert-error {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.form-alert-info {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
    color: #3498db;
}

.form-alert i {
    font-size: 16px;
    flex-shrink: 0;
}

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

/* Register Page Styles */
.register-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
}

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

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    line-height: 1.3;
}

.register-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-label {
    display: block;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .register-section {
        padding: 100px 0 60px;
    }

    .register-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .register-form {
        padding: 30px 20px;
        border-radius: 16px;
    }

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

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

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

    .register-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .register-form {
        padding: 25px 15px;
    }
}

/* Privacy Policy Content Styles */
.privacy-policy-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    color: #ffffff;
    background-color: #0a0a0a;
}

.privacy-policy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.privacy-policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.privacy-policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 15px 0;
}

.privacy-policy-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin: 25px 0 12px 0;
}

.privacy-policy-content h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 20px 0 10px 0;
}

.privacy-policy-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 16px;
    text-align: justify;
}

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

.privacy-policy-content li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 8px;
    list-style-type: disc;
}

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

.privacy-policy-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    margin: 30px 0;
}

.contact-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.footer-info p {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.footer-info p:last-child {
    margin-bottom: 0;
    color: #ffd700;
    font-weight: 600;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .privacy-policy-content {
        padding: 90px 20px 50px;
    }

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

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

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

@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 80px 15px 40px;
    }

    .privacy-policy-content h1 {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }

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

    .privacy-policy-content h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }

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

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

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

    .contact-info,
    .footer-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content {
        padding: 75px 10px 35px;
    }

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

    .privacy-policy-content h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px 0;
    }

    .privacy-policy-content h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }

    .privacy-policy-content h4 {
        font-size: 1rem;
    }

    .privacy-policy-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

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

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

    .contact-info,
    .footer-info {
        padding: 15px;
    }
}

/* Responsible Gambling Policy Styles */
.responsible-gambling-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 30px 60px;
    color: #ffffff;
    line-height: 1.8;
}

.responsible-gambling-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 20px;
}

.responsible-gambling-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin: 40px 0 20px 0;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

.responsible-gambling-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 15px 0;
}

.responsible-gambling-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 25px 0 12px 0;
}

.responsible-gambling-content h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
    margin: 20px 0 10px 0;
}

.responsible-gambling-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #e0e0e0;
    text-align: justify;
}

.responsible-gambling-content strong {
    color: #d4af37;
    font-weight: 700;
}

.responsible-gambling-content ul {
    margin: 15px 0 20px 0;
    padding-left: 30px;
}

.responsible-gambling-content ol {
    margin: 15px 0 20px 0;
    padding-left: 30px;
}

.responsible-gambling-content li {
    margin-bottom: 8px;
    color: #e0e0e0;
    line-height: 1.7;
}

.responsible-gambling-content ul li::marker {
    color: #d4af37;
}

.responsible-gambling-content ol li::marker {
    color: #d4af37;
    font-weight: 700;
}

.responsible-gambling-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 30px 0;
}

/* Responsive Design for Responsible Gambling */
@media (max-width: 1024px) {
    .responsible-gambling-content {
        padding: 80px 25px 50px;
    }

    .responsible-gambling-content h1 {
        font-size: 2.2rem;
    }

    .responsible-gambling-content h2 {
        font-size: 1.6rem;
        margin: 35px 0 18px 0;
    }

    .responsible-gambling-content h3 {
        font-size: 1.3rem;
        margin: 28px 0 14px 0;
    }
}

@media (max-width: 768px) {
    .responsible-gambling-content {
        padding: 75px 20px 45px;
    }

    .responsible-gambling-content h1 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .responsible-gambling-content h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
        padding-left: 12px;
    }

    .responsible-gambling-content h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }

    .responsible-gambling-content h4 {
        font-size: 1.1rem;
        margin: 22px 0 10px 0;
    }

    .responsible-gambling-content ul,
    .responsible-gambling-content ol {
        margin-left: 5px;
        padding-left: 25px;
    }

    .responsible-gambling-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .responsible-gambling-content li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-content {
        padding: 75px 15px 40px;
    }

    .responsible-gambling-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .responsible-gambling-content h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px 0;
        padding-left: 10px;
    }

    .responsible-gambling-content h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }

    .responsible-gambling-content h4 {
        font-size: 1rem;
    }

    .responsible-gambling-content h5 {
        font-size: 0.95rem;
    }

    .responsible-gambling-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .responsible-gambling-content li {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 6px;
    }

    .responsible-gambling-content ul,
    .responsible-gambling-content ol {
        margin-left: 0px;
        padding-left: 20px;
    }

    .responsible-gambling-content hr {
        margin: 25px 0;
    }
}