/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header Styles */
.header {
    background-color: #111111;
    border-bottom: 1px solid #333333;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

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

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
    padding: 1rem 0;
}

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

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ff6b35;
    padding-left: 10px;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

    .desktop-nav {
        display: none;
    }

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

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }
}

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

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

    .logo-text {
        font-size: 1.1rem;
    }

    .mobile-nav-link {
        font-size: 1rem;
    }

    .mobile-cta-button {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

/* Main content spacing */
main {
    margin-top: 0;
}

/* Ensure proper spacing for sticky header */
body {
    padding-top: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #111111;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.cta-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    display: inline-block;
    text-decoration: none;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    background-color: #0a0a0a;
}

.features-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #333333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

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

.feature-content li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.feature-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.game-showcase {
    text-align: center;
}

.game-showcase img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Game Demo Section */
.game-demo {
    background-color: #111111;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.slot-machine {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #333333;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

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

.slot-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-credit {
    color: #cccccc;
    font-weight: 600;
}

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

.reel {
    background: #000000;
    border: 2px solid #333333;
    border-radius: 12px;
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.symbol {
    font-size: 2.5rem;
    margin: 0.2rem 0;
    transition: all 0.3s ease;
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bet-amount {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
}

.bet-amount select {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333333;
    padding: 0.5rem;
    border-radius: 6px;
}

.spin-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.last-win {
    color: #cccccc;
    font-weight: 600;
}

.demo-info h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.demo-info li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.demo-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.demo-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Security Section */
.security {
    background-color: #0a0a0a;
}

.security-measures h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.measure-item {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.measure-number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    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;
}

.measure-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.measure-content p {
    color: #cccccc;
    line-height: 1.6;
}

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

/* Experience Section */
.experience {
    background-color: #111111;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.experience-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #333333;
}

.experience-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-content h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 1.5rem 0 1rem 0;
}

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

.experience-content li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.experience-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.access-section h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.access-item {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.access-item h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.access-item li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.access-item li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.access-description {
    text-align: center;
    color: #cccccc;
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

/* Promotions Section */
.promotions {
    background-color: #0a0a0a;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.promotion-card {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #333333;
}

.promotion-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promotion-card p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bonus-packages h4 {
    color: #ffffff;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.bonus-packages ol {
    padding-left: 1.5rem;
}

.bonus-packages li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.promotion-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.ongoing-promotions h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ongoing-promotions > p {
    text-align: center;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.promotion-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.promotion-type {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.promotion-type h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.promotion-type ul {
    list-style: none;
    padding: 0;
}

.promotion-type li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.promotion-type li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.promotion-note {
    text-align: center;
    color: #cccccc;
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.promotion-cta {
    text-align: center;
    margin: 2rem 0;
}

.community-note {
    text-align: center;
    color: #cccccc;
    margin-top: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Banking Section */
.banking {
    background-color: #111111;
}

.banking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.banking-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #333333;
}

.banking-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banking-card > p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.banking-note {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.banking-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.method-group ol,
.method-group ul {
    padding-left: 1.5rem;
}

.method-group li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.banking-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.financial-security h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.financial-security > p {
    text-align: center;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.security-measures-financial {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
    margin-bottom: 2rem;
}

.security-measures-financial h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.security-measures-financial ul {
    list-style: none;
    padding: 0;
}

.security-measures-financial li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.security-measures-financial li::before {
    content: '🔒';
    position: absolute;
    left: 0;
}

.insurance-note,
.transparency-note {
    text-align: center;
    color: #cccccc;
    margin: 2rem 0;
    line-height: 1.7;
}

.contact-info {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    margin: 2rem 0;
}

.contact-info h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.banking-cta {
    text-align: center;
    margin: 2rem 0;
}

.banking-summary {
    text-align: center;
    color: #cccccc;
    margin-top: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background-color: #0a0a0a;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item ol,
.faq-item ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.faq-item a {
    color: #ff6b35;
    text-decoration: underline;
}

.faq-item a:hover {
    color: #f7931e;
}

.faq-image {
    text-align: center;
    margin: 3rem 0;
}

.faq-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

.conclusion {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #333333;
    margin-top: 3rem;
}

.conclusion p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.final-contact {
    margin: 2rem 0;
}

.final-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.final-contact ul {
    list-style: none;
    padding: 0;
}

.final-contact li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.final-note {
    color: #cccccc;
    line-height: 1.7;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero .container,
    .demo-container,
    .experience-grid,
    .promotions-grid,
    .banking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .measures-grid,
    .access-grid,
    .promotion-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

    .hero {
        padding: 80px 0;
    }

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

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

    .feature-card,
    .experience-card,
    .promotion-card,
    .banking-card {
        padding: 2rem;
    }

    .slot-machine {
        padding: 2rem;
    }

    .slot-controls {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .slot-reels {
        gap: 0.5rem;
    }

    .symbol {
        font-size: 2rem;
    }

    .demo-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }

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

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

    .feature-card,
    .experience-card,
    .promotion-card,
    .banking-card,
    .slot-machine {
        padding: 1.5rem;
    }

    .measure-item {
        flex-direction: column;
        text-align: center;
    }

    .slot-controls {
        gap: 0.5rem;
    }

    .spin-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .cta-primary,
    .demo-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .sticky-container {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .sticky-button {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .footer-nav {
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #111111;
    border-top: 1px solid #333333;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

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

.footer-link {
    color: #cccccc;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333333;
}

.sticky-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.sticky-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sticky-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.sticky-button:hover::before {
    left: 100%;
}

.login-btn {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #ffffff;
    border-color: #444444;
}

.login-btn:hover {
    background: linear-gradient(135deg, #333333, #1a1a1a);
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.register-btn:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.credit-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.credit-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
        margin-top: 3rem;
    }

    .footer-nav {
        gap: 1.5rem;
        flex-direction: column;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    padding: 3rem 2rem;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 16px;
    border: 1px solid #333333;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #333333;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Sarabun', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: rgba(26, 26, 26, 1);
}

.form-input::placeholder {
    color: #888888;
}

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

.login-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-family: 'Prompt', sans-serif;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.login-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.register-outline-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b35;
    background: transparent;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.register-outline-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive styles for login page */
@media (max-width: 768px) {
    .login-section {
        padding: 2rem 0;
        min-height: calc(100vh - 80px);
    }

    .login-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .login-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .login-submit-btn,
    .register-outline-btn {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }

    .login-title {
        font-size: 1.25rem;
    }
}

/* Register Page Styles */
.register-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    min-height: calc(100vh - 80px);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 16px;
    border: 1px solid #333333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.register-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.register-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    font-family: 'Sarabun', sans-serif;
}

.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.register-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.login-outline-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sarabun', sans-serif;
}

.login-outline-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive styles for register page */
@media (max-width: 768px) {
    .register-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

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

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .register-submit-btn,
    .login-outline-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

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

    .register-container {
        padding: 1.5rem 1rem;
    }

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