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

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

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

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

/* Header Styles */
.header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

.logo img {
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

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

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

.nav-link:active {
    background-color: rgba(255, 107, 53, 0.2);
}

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

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

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

.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 */
.nav-mobile {
    display: none;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

.mobile-nav-list li {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
    border-left-color: #ff6b35;
}

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

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Body padding to account for fixed header */
body {
    padding-top: 70px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

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

    .container {
        padding: 0 15px;
    }

    .nav-wrapper {
        height: 60px;
    }

    body {
        padding-top: 60px;
    }

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

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

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

    .nav-wrapper {
        height: 55px;
    }

    body {
        padding-top: 55px;
    }

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

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

/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.mobile-nav-link:focus,
.mobile-cta-button:focus,
.mobile-menu-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Homepage Styles */

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

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

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.cta-button.secondary {
    background: transparent;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 30px;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

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

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

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #111111;
    border-top: 1px solid #333;
}

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

.slot-machine {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
}

.slot-display {
    background: #000;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 3px solid #ff6b35;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.5);
}

.reels {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.reel {
    width: 80px;
    height: 120px;
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.symbol {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-bottom: 1px solid #333;
    transition: transform 0.1s ease;
}

.slot-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.credits, .bet, .winnings {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

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

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

.spin-button:active {
    transform: translateY(0);
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #ff6b35;
}

/* True Wallet Section */
.true-wallet-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-block, .image-block {
    max-width: 100%;
}

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

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

.ufabet-section {
    margin: 60px 0;
}

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

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.feature-card h4 {
    color: #ff6b35;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin: 60px 0;
}

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

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin: 40px 0;
}

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

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

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

.game-list {
    list-style: none;
    margin: 20px 0;
}

.game-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.quality-features {
    margin: 30px 0;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 10px;
    border: 1px solid #333;
}

.quality-item .number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.quality-item div {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Platform Section */
.platform-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin: 40px 0;
}

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

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

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

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.promo-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-3px);
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.promo-card h4 {
    color: #ff6b35;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.access-list {
    margin: 30px 0;
}

.access-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 10px;
    border: 1px solid #333;
}

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

.access-item div {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.login-section {
    margin-top: 60px;
}

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

.login-item {
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 10px;
    border: 1px solid #333;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.login-section a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.login-section a:hover {
    text-decoration: underline;
}

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

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

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin: 40px 0;
}

.contact-info {
    max-width: 100%;
}

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

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

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

.contact-method {
    padding: 20px;
    margin-bottom: 15px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 10px;
    border: 1px solid #333;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.support-services {
    margin: 30px 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 10px;
    border: 1px solid #333;
}

.service-number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.service-item div {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.faq-item {
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 12px;
    border: 1px solid #333;
}

.faq-question {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.6;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding-left: 20px;
    border-left: 3px solid #ff6b35;
}

.closing-message {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
}

.closing-message p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .section-grid,
    .content-layout,
    .platform-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

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

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

    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .demo-section,
    .true-wallet-section,
    .games-section,
    .platform-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }

    .slot-machine {
        padding: 30px 20px;
    }

    .slot-controls {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features-grid,
    .promotion-grid,
    .login-features {
        grid-template-columns: 1fr;
    }

    .quality-item,
    .access-item,
    .service-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .quality-item .number,
    .access-number,
    .service-number {
        align-self: center;
    }
}

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

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

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

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

    .slot-machine {
        padding: 20px 15px;
    }

    .reels {
        gap: 5px;
    }

    .reel {
        width: 60px;
        height: 90px;
    }

    .symbol {
        height: 30px;
        font-size: 1.5rem;
    }

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

    .feature-card,
    .promo-card,
    .contact-method,
    .login-item,
    .faq-item {
        padding: 20px;
    }

    .closing-message {
        padding: 30px 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 30px 0;
    margin-top: 60px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

.footer-link:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95), #1a1a1a);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
}

.sticky-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 20px;
}

.sticky-btn {
    flex: 1;
    max-width: 200px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 12px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
    border: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.sticky-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Different button variants for visual distinction */
.sticky-btn-login {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    box-shadow: 0 3px 12px rgba(74, 144, 226, 0.3);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #357abd, #4a90e2);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
}

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

.sticky-btn-credit {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
}

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

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer-nav {
        gap: 20px;
        text-align: center;
    }

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

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

    .sticky-btn {
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-link {
        font-size: 12px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

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

    .sticky-btn {
        font-size: 12px;
        padding: 8px 10px;
        border-radius: 16px;
        min-width: 0;
    }
}

/* Login Section Styles */
.login-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
}

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

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

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

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

.form-label {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.form-input {
    padding: 1rem 1.25rem;
    border: 2px solid #333;
    border-radius: 12px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

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

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

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

.login-btn,
.register-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: block;
    width: 100%;
}

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

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

.register-btn {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}

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

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

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

    .form-input {
        padding: 0.875rem 1rem;
    }

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

@media (max-width: 480px) {
    .login-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .form-input {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .login-btn,
    .register-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Add bottom padding to body to account for sticky buttons */
body {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 60px;
    }
}

/* Register Section Styles */
.register-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
}

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

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

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

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

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

@media (max-width: 480px) {
    .register-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

/* Policy Pages Styles */
.policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-section {
    padding: 40px 0 80px 0;
    background: #0a0a0a;
}

.policy-content {
    max-width: 100%;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ff6b35;
}

.policy-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.3;
}

.policy-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 30px 0 20px 0;
    line-height: 1.4;
    border-left: 4px solid #ff6b35;
    padding-left: 20px;
}

.policy-subheading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 25px 0 15px 0;
    line-height: 1.4;
}

.policy-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 15px 0;
    text-align: justify;
}

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

.policy-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0;
    padding: 8px 0 8px 30px;
    position: relative;
    text-align: justify;
}

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

.policy-numbered-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    counter-reset: policy-counter;
}

.policy-numbered-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0;
    padding: 8px 0 8px 35px;
    position: relative;
    text-align: justify;
    counter-increment: policy-counter;
}

.policy-numbered-list li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1rem;
}

.policy-section-box {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #444;
    border-left: 4px solid #ff6b35;
}

.policy-highlight {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #ff6b35;
}

.policy-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.policy-contact-info {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #333;
    text-align: center;
}

.policy-contact-info h3 {
    color: #ff6b35;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.policy-contact-info p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.policy-table th,
.policy-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
    font-family: 'Sarabun', sans-serif;
}

.policy-table th {
    background: #2a2a2a;
    color: #ff6b35;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
}

.policy-table td {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

/* Policy Pages Responsive Design */
@media (max-width: 1024px) {
    .policy-content {
        padding: 35px;
        margin: 30px 0;
    }

    .policy-title {
        font-size: 2.25rem;
    }

    .policy-heading {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .policy-container {
        padding: 0 15px;
    }

    .policy-section {
        padding: 30px 0 60px 0;
    }

    .policy-content {
        padding: 25px;
        margin: 20px 0;
        border-radius: 12px;
    }

    .policy-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .policy-heading {
        font-size: 1.25rem;
        margin: 25px 0 15px 0;
        padding-left: 15px;
    }

    .policy-subheading {
        font-size: 1.125rem;
        margin: 20px 0 12px 0;
    }

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

    .policy-list li,
    .policy-numbered-list li {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
        padding-left: 25px;
    }

    .policy-section-box {
        padding: 20px;
        margin: 20px 0;
    }

    .policy-highlight {
        padding: 15px;
        margin: 15px 0;
    }

    .policy-contact-info {
        padding: 25px;
        margin: 25px 0;
    }

    .policy-table {
        font-size: 0.9rem;
    }

    .policy-table th,
    .policy-table td {
        padding: 12px 10px;
    }
}

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

    .policy-section {
        padding: 20px 0 40px 0;
    }

    .policy-content {
        padding: 20px;
        margin: 15px 0;
        border-radius: 10px;
    }

    .policy-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .policy-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .policy-heading {
        font-size: 1.125rem;
        margin: 20px 0 12px 0;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .policy-subheading {
        font-size: 1rem;
        margin: 15px 0 10px 0;
    }

    .policy-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 12px 0;
    }

    .policy-list li,
    .policy-numbered-list li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 10px 0;
        padding-left: 20px;
    }

    .policy-section-box {
        padding: 15px;
        margin: 15px 0;
        border-radius: 8px;
    }

    .policy-highlight {
        padding: 12px;
        margin: 12px 0;
        border-radius: 6px;
    }

    .policy-contact-info {
        padding: 20px;
        margin: 20px 0;
    }

    .policy-contact-info h3 {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }

    .policy-table {
        font-size: 0.8rem;
    }

    .policy-table th,
    .policy-table td {
        padding: 8px 6px;
    }
}

/* Policy Page Body Adjustments */
.policy-page {
    padding-bottom: 0; /* Remove sticky button padding for policy pages */
}

/* Focus styles for policy page accessibility */
.policy-content h1:focus,
.policy-content h2:focus,
.policy-content h3:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
    border-radius: 4px;
}