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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Promotion Page Styles */

/* Promotion Hero Section */
.promotion-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
}

.promotion-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Section Styles */
.registration-section,
.credit-codes-section,
.wallet-section,
.slots-section,
.login-section,
.baccarat-section,
.special-events-section,
.security-section,
.mobile-app-section,
.registration-guide-section,
.customer-service-section,
.faq-section,
.summary-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subsection-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #4ecdc4;
    margin: 2rem 0 1.5rem;
    text-align: center;
}

/* Content Layout */
.promotion-details,
.codes-details,
.wallet-details,
.slots-details,
.login-details,
.baccarat-details,
.events-details,
.security-details,
.app-details,
.guide-details,
.service-details {
    max-width: 900px;
    margin: 0 auto;
}

.promotion-description,
.codes-description,
.wallet-description,
.slots-description,
.login-description,
.baccarat-description,
.events-description,
.security-description,
.app-description,
.guide-description,
.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-align: center;
}

/* Features and Benefits Lists */
.features-list,
.benefits-list,
.promotions-list,
.measures-list,
.protection-list,
.channels-list,
.response-list,
.calendar-list,
.festival-list,
.loyalty-list,
.info-list,
.contact-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.features-list li,
.benefits-list li,
.promotions-list li,
.measures-list li,
.protection-list li,
.channels-list li,
.response-list li,
.calendar-list li,
.festival-list li,
.loyalty-list li,
.info-list li,
.contact-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-left: 4px solid #4ecdc4;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.features-list li:hover,
.benefits-list li:hover,
.promotions-list li:hover,
.measures-list li:hover,
.protection-list li:hover,
.channels-list li:hover,
.response-list li:hover,
.calendar-list li:hover,
.festival-list li:hover,
.loyalty-list li:hover,
.info-list li:hover,
.contact-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #ff6b6b;
    transform: translateX(5px);
}

/* Steps Lists */
.steps-list,
.tips-list,
.installation-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 2rem 0;
}

.steps-list li,
.tips-list li,
.installation-steps li {
    counter-increment: step-counter;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    position: relative;
    padding-left: 4rem;
    border-left: 4px solid #45b7d1;
    transition: all 0.3s ease;
}

.steps-list li::before,
.tips-list li::before,
.installation-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #45b7d1, #4ecdc4);
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.steps-list li:hover,
.tips-list li:hover,
.installation-steps li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #ff6b6b;
    transform: translateX(5px);
}

/* Card Grids */
.code-cards,
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.code-card,
.game-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.code-card::before,
.game-card::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;
}

.code-card:hover::before,
.game-card:hover::before {
    left: 100%;
}

.code-card:hover,
.game-card:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.code-name,
.game-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.code-description,
.game-description {
    color: #e0e0e0;
    font-size: 1rem;
}

/* CTA Buttons */
.cta-button-wrapper {
    text-align: center;
    margin: 3rem 0;
}

.primary-cta-button,
.final-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.primary-cta-button::before,
.final-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    transition: left 0.3s ease;
    z-index: -1;
}

.primary-cta-button:hover::before,
.final-cta-button:hover::before {
    left: 0;
}

.primary-cta-button:hover,
.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.final-cta-button {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    margin: 2rem 0;
}

/* FAQ Styles */
.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4ecdc4;
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    font-size: 1.2rem;
    color: #4ecdc4;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer {
    padding: 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
    padding: 100px 0;
}

.summary-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 2rem;
}

.summary-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.contact-info {
    margin: 3rem 0;
}

.contact-title {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.contact-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    background: none;
    border: none;
    padding: 0.5rem;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.brand-tagline {
    margin-top: 3rem;
    font-style: italic;
    color: #4ecdc4;
    font-size: 1.2rem;
}

/* Features and Benefits Titles */
.features-title,
.benefits-title,
.promotions-title,
.measures-title,
.channels-title,
.calendar-title,
.games-grid-title,
.codes-grid-title,
.steps-title {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin: 2rem 0 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promotion-hero {
        padding: 100px 0 60px;
    }

    .registration-section,
    .credit-codes-section,
    .wallet-section,
    .slots-section,
    .login-section,
    .baccarat-section,
    .special-events-section,
    .security-section,
    .mobile-app-section,
    .registration-guide-section,
    .customer-service-section,
    .faq-section,
    .summary-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .code-cards,
    .game-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-list {
        flex-direction: column;
        gap: 1rem;
    }

    .features-list,
    .benefits-list,
    .promotions-list,
    .measures-list,
    .protection-list,
    .channels-list,
    .response-list,
    .calendar-list,
    .festival-list,
    .loyalty-list,
    .info-list {
        gap: 0.8rem;
    }

    .features-list li,
    .benefits-list li,
    .promotions-list li,
    .measures-list li,
    .protection-list li,
    .channels-list li,
    .response-list li,
    .calendar-list li,
    .festival-list li,
    .loyalty-list li,
    .info-list li {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .steps-list li,
    .tips-list li,
    .installation-steps li {
        padding: 1rem 1rem 1rem 3rem;
    }

    .steps-list li::before,
    .tips-list li::before,
    .installation-steps li::before {
        left: 0.5rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

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

    .primary-cta-button,
    .final-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .final-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .code-card,
    .game-card {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: 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;
    padding: 1rem 0;
    height: 70px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo img {
    margin-right: 10px;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navbar Styles */
.navbar {
    width: 100%;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-2px);
}

.brand-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.brand-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:active,
.nav-link[aria-current="page"] {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
}

/* Navbar Button Styles */
.navbar-menu .btn {
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

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

.navbar-menu .btn-primary:hover {
    background: linear-gradient(45deg, #e55a2b, #e8821a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.navbar-menu .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* CTA Button */
.cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
}

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

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

.mobile-menu-toggle:hover .hamburger-line {
    background: #ffd700;
}

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

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

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

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

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

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-link {
    display: block;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.mobile-cta-button {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    text-decoration: none;
    padding: 1rem 2rem;
    margin: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* Main Content Spacing */
main {
    margin-top: 70px;
    min-height: 100vh;
}

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

    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar .container {
        height: 60px;
        padding: 0.5rem 0;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .brand-logo {
        height: 35px;
        width: auto;
    }

    main {
        margin-top: 60px;
    }

    /* Mobile Menu (if implemented with JavaScript) */
    .navbar-menu.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
        gap: 0;
    }

    .navbar-menu.mobile-active li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .navbar-menu.mobile-active .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        border-radius: 0;
    }

    .navbar-menu.mobile-active .btn {
        margin: 0.5rem 1rem;
        width: calc(100% - 2rem);
    }

    /* Hide old mobile styles that don't match HTML structure */
    .nav-desktop {
        display: none;
    }

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

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

    .brand-text {
        font-size: 1.2rem;
    }

    .brand-logo {
        height: 30px;
        width: auto;
    }

    .navbar-toggle span {
        width: 20px;
        height: 2px;
    }

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

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

    .mobile-cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin: 1rem 1.5rem;
    }
}

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

/* Focus Styles for Accessibility */
.nav-link:focus,
.cta-button:focus,
.mobile-nav-link:focus,
.mobile-cta-button:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.logo a:focus {
    outline: 2px solid #ffd700;
    outline-offset: 4px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ff6b35 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: heroTitleGlow 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes heroTitleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-description p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: #e0e0e0;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-description strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.hero-image {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 215, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.hero-image:hover .hero-image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 0 5rem;
    }

    .hero-description p {
        font-size: clamp(0.95rem, 2.3vw, 1.1rem);
        padding: 0 0.5rem;
    }
}

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

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

    .hero-header {
        margin-bottom: 1.5rem;
    }

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

    .hero-description {
        margin-bottom: 2.5rem;
    }

    .hero-description p {
        text-align: center;
        padding: 0;
    }

    .hero-image {
        border-radius: 15px;
    }

    .hero-image img {
        border-radius: 15px;
    }

    .hero-image-caption {
        font-size: 0.8rem;
        padding: 1.5rem 1rem 0.8rem;
    }
}

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

    .hero-header {
        margin-bottom: 1.2rem;
    }

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

    .hero-description p {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.7;
    }

    .hero-image {
        border-radius: 12px;
    }

    .hero-image img {
        border-radius: 12px;
    }

    .hero-image-caption {
        font-size: 0.75rem;
        padding: 1.2rem 0.8rem 0.6rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title {
        background: none;
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
        text-shadow: none;
    }

    .hero-description strong {
        color: #ffff00;
        text-shadow: none;
    }

    .hero-image {
        box-shadow: 0 0 0 2px #ffffff;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-title {
        animation: none;
        background-position: 0% 50%;
    }

    .hero-image:hover {
        transform: none;
    }

    .hero-image:hover img {
        transform: none;
    }

    .hero-image-caption {
        opacity: 1;
        transform: none;
    }
}

/* Wallet Section */
.wallet-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.wallet-content {
    position: relative;
    z-index: 2;
}

.wallet-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wallet-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #f7931e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: walletTitleShine 3s ease-in-out infinite;
}

@keyframes walletTitleShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.wallet-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.wallet-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.8;
    color: #e0e0e0;
}

.wallet-intro strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.wallet-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.wallet-text-content {
    display: flex;
    flex-direction: column;
}

.wallet-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.wallet-description {
    margin-bottom: 2rem;
}

.wallet-description p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.wallet-description strong {
    color: #ffd700;
    font-weight: 700;
}

.wallet-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wallet-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wallet-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.wallet-feature:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.wallet-feature:hover::before {
    transform: translateX(0);
}

.feature-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.feature-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.wallet-image-content {
    position: relative;
}

.wallet-image {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.wallet-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 215, 0, 0.15);
}

.wallet-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.wallet-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.wallet-image:hover .wallet-image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Wallet Section */
@media (max-width: 1024px) {
    .wallet-section {
        padding: 5rem 0;
    }

    .wallet-main-content {
        gap: 3rem;
    }

    .wallet-features {
        gap: 1.5rem;
    }

    .wallet-feature {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .wallet-section {
        padding: 4rem 0;
    }

    .wallet-header {
        margin-bottom: 2.5rem;
    }

    .wallet-intro {
        margin-bottom: 3rem;
    }

    .wallet-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wallet-image-content {
        order: -1;
    }

    .wallet-features {
        gap: 1.5rem;
    }

    .wallet-feature {
        padding: 1.2rem;
    }

    .wallet-image {
        border-radius: 15px;
    }

    .wallet-image img {
        border-radius: 15px;
    }

    .wallet-image-caption {
        font-size: 0.8rem;
        padding: 1.5rem 1rem 0.8rem;
    }
}

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

    .wallet-header {
        margin-bottom: 2rem;
    }

    .wallet-intro {
        margin-bottom: 2.5rem;
    }

    .wallet-main-content {
        gap: 2.5rem;
    }

    .wallet-features {
        gap: 1.2rem;
    }

    .wallet-feature {
        padding: 1rem;
        border-radius: 12px;
    }

    .wallet-image {
        border-radius: 12px;
    }

    .wallet-image img {
        border-radius: 12px;
    }

    .wallet-image-caption {
        font-size: 0.75rem;
        padding: 1.2rem 0.8rem 0.6rem;
    }
}

/* High contrast mode support for Wallet */
@media (prefers-contrast: high) {
    .wallet-title {
        background: none;
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
    }

    .wallet-intro strong,
    .wallet-description strong {
        color: #ffff00;
    }

    .feature-title {
        color: #ffff00;
    }

    .feature-description strong {
        color: #ffffff;
    }

    .wallet-feature {
        border-color: #ffffff;
    }

    .wallet-image {
        box-shadow: 0 0 0 2px #ffffff;
    }
}

/* Reduced motion accessibility for Wallet */
@media (prefers-reduced-motion: reduce) {
    .wallet-title {
        animation: none;
        background-position: 0% 50%;
    }

    .wallet-feature:hover {
        transform: none;
    }

    .wallet-feature::before {
        transform: none;
    }

    .wallet-image:hover {
        transform: none;
    }

    .wallet-image-caption {
        opacity: 1;
        transform: none;
    }
}

/* Wallet Process Section */
.wallet-process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #151515 0%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-process-content {
    max-width: 900px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
}

.process-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.process-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #e0e0e0;
}

.process-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.process-step:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.process-step:hover::before {
    transform: translateX(0);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.step-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.process-summary {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-summary p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.process-summary strong {
    color: #ffd700;
    font-weight: 700;
}

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

/* Games Universe Section */
.games-universe-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.games-universe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 147, 30, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.games-universe-content {
    position: relative;
    z-index: 2;
}

.games-header {
    text-align: center;
    margin-bottom: 3rem;
}

.games-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #f7931e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gamesTitleGlow 4s ease-in-out infinite;
}

@keyframes gamesTitleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.games-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.games-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.8;
    color: #e0e0e0;
}

.games-intro strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.games-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.games-categories {
    order: 1;
}

.categories-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.categories-intro {
    margin-bottom: 2.5rem;
}

.categories-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.categories-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.category-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.category-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.category-item:hover::before {
    transform: translateX(0);
}

.category-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.category-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.category-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.games-image-section {
    order: 2;
    text-align: center;
}

.games-image {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.games-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 215, 0, 0.15);
}

.games-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.games-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.games-image:hover .games-image-caption {
    opacity: 1;
    transform: translateY(0);
}

.modern-gaming-section {
    margin-top: 4rem;
}

.modern-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.modern-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.modern-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.modern-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.special-features {
    margin-bottom: 3rem;
}

.features-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-detail {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.closing-statement {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.closing-statement p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.closing-statement strong {
    color: #ffd700;
    font-weight: 700;
}

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

/* Responsive Design for Process and Games Sections */
@media (max-width: 1024px) {
    .wallet-process-section {
        padding: 4rem 0;
    }

    .games-universe-section {
        padding: 5rem 0;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }

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

@media (max-width: 768px) {
    .wallet-process-section {
        padding: 3rem 0;
    }

    .games-universe-section {
        padding: 4rem 0;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .games-main-content {
        gap: 3rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .games-image {
        border-radius: 15px;
    }

    .games-image img {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .wallet-process-section {
        padding: 2.5rem 0;
    }

    .games-universe-section {
        padding: 3rem 0;
    }

    .process-step {
        padding: 1rem;
        border-radius: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .category-item {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .feature-item {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .games-image {
        border-radius: 12px;
    }

    .games-image img {
        border-radius: 12px;
    }
}

/* High contrast mode support for Process and Games */
@media (prefers-contrast: high) {
    .games-title {
        background: none;
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
    }

    .step-title,
    .category-title {
        color: #ffff00;
    }

    .feature-name {
        color: #ffffff;
    }

    .process-step,
    .category-item,
    .feature-item {
        border-color: #ffffff;
    }

    .games-image {
        box-shadow: 0 0 0 2px #ffffff;
    }
}

/* Reduced motion accessibility for Process and Games */
@media (prefers-reduced-motion: reduce) {
    .games-title {
        animation: none;
        background-position: 0% 50%;
    }

    .process-step:hover,
    .category-item:hover,
    .feature-item:hover {
        transform: none;
    }

    .process-step::before,
    .category-item::before {
        transform: none;
    }

    .games-image:hover {
        transform: none;
    }

    .games-image-caption {
        opacity: 1;
        transform: none;
    }
}

/* Slot Premium Section */
.slot-premium-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #151515 0%, #0a0a0a 50%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.slot-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 60%, rgba(247, 147, 30, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.slot-premium-content {
    position: relative;
    z-index: 2;
}

.slot-header {
    text-align: center;
    margin-bottom: 3rem;
}

.slot-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #f7931e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: slotTitleGlow 4s ease-in-out infinite;
}

@keyframes slotTitleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.slot-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.slot-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.8;
    color: #e0e0e0;
}

.slot-intro strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.technology-section {
    margin-bottom: 5rem;
}

.tech-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.tech-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tech-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.tech-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.tech-features-section {
    margin-bottom: 3rem;
}

.tech-features-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.tech-features-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-features-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.tech-features-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tech-feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.tech-feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.tech-feature-item:hover::before {
    transform: translateX(0);
}

.tech-feature-item .feature-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.tech-feature-item .feature-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.tech-image-section {
    text-align: center;
    margin-bottom: 2rem;
}

.tech-image {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 215, 0, 0.15);
}

.tech-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.tech-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tech-image:hover .tech-image-caption {
    opacity: 1;
    transform: translateY(0);
}

.promotions-section {
    margin-top: 2rem;
}

.promotions-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.promotions-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promotions-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.promotions-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.promotions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promotion-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.promotion-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.promotion-item:hover::before {
    transform: translateX(0);
}

.promotion-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.promotion-content {
    flex: 1;
}

.promotion-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.promotion-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.promotions-summary {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promotions-summary p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.promotions-summary strong {
    color: #ffd700;
    font-weight: 700;
}

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

/* Responsive Design for Slot Premium Section */
@media (max-width: 1024px) {
    .slot-premium-section {
        padding: 5rem 0;
    }

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

    .technology-section {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .slot-premium-section {
        padding: 4rem 0;
    }

    .slot-header {
        margin-bottom: 2.5rem;
    }

    .slot-intro {
        margin-bottom: 3rem;
    }

    .technology-section {
        margin-bottom: 3.5rem;
    }

    .tech-features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .promotions-list {
        gap: 1.2rem;
    }

    .promotion-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .promotion-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .tech-image {
        border-radius: 15px;
    }

    .tech-image img {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .slot-premium-section {
        padding: 3rem 0;
    }

    .slot-header {
        margin-bottom: 2rem;
    }

    .slot-intro {
        margin-bottom: 2.5rem;
    }

    .technology-section {
        margin-bottom: 3rem;
    }

    .tech-features-grid {
        gap: 1rem;
    }

    .tech-feature-item {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .promotions-list {
        gap: 1rem;
    }

    .promotion-item {
        padding: 1rem;
        border-radius: 12px;
    }

    .promotion-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .tech-image {
        border-radius: 12px;
    }

    .tech-image img {
        border-radius: 12px;
    }
}

/* High contrast mode support for Slot Premium */
@media (prefers-contrast: high) {
    .slot-title {
        background: none;
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
    }

    .slot-intro strong,
    .tech-intro strong,
    .tech-features-intro strong,
    .promotions-intro strong,
    .promotions-summary strong {
        color: #ffff00;
    }

    .tech-feature-item .feature-name,
    .promotion-name {
        color: #ffff00;
    }

    .tech-feature-item,
    .promotion-item {
        border-color: #ffffff;
    }

    .tech-image {
        box-shadow: 0 0 0 2px #ffffff;
    }
}

/* Reduced motion accessibility for Slot Premium */
@media (prefers-reduced-motion: reduce) {
    .slot-title {
        animation: none;
        background-position: 0% 50%;
    }

    .tech-feature-item:hover,
    .promotion-item:hover {
        transform: none;
    }

    .tech-feature-item::before,
    .promotion-item::before {
        transform: none;
    }

    .tech-image:hover {
        transform: none;
    }

    .tech-image-caption {
        opacity: 1;
        transform: none;
    }
}

/* Wallet Login System Section */
.wallet-login-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.wallet-login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 65% 75%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.wallet-login-content {
    position: relative;
    z-index: 2;
}

.login-header {
    text-align: center;
    margin-bottom: 3rem;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #f7931e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: loginTitleGlow 4s ease-in-out infinite;
}

@keyframes loginTitleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.login-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.login-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.8;
    color: #e0e0e0;
}

.login-intro strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.login-process-section {
    margin-bottom: 5rem;
}

.process-section-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.process-section-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-section-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.process-section-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.detailed-steps-section {
    margin-bottom: 3rem;
}

.detailed-steps-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

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

.login-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.login-step:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.login-step:hover::before {
    transform: translateX(0);
}

.login-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.login-step .step-content {
    width: 100%;
}

.login-step .step-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.login-step .step-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.login-step .step-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.login-image-section {
    text-align: center;
    margin-top: 3rem;
}

.login-image {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.login-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 215, 0, 0.15);
}

.login-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.login-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.login-image:hover .login-image-caption {
    opacity: 1;
    transform: translateY(0);
}

.security-features-section {
    margin-bottom: 4rem;
}

.security-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.security-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.security-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.security-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.security-tech-section {
    margin-bottom: 3rem;
}

.security-tech-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.security-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.security-feature:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.security-feature:hover::before {
    transform: translateX(0);
}

.security-feature-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.security-feature-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.security-summary {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.security-summary p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.security-summary strong {
    color: #ffd700;
    font-weight: 700;
}

.account-management-section {
    margin-bottom: 3rem;
}

.account-management-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.account-management-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.account-management-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.account-management-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.management-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.management-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.management-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.management-feature:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.management-feature:hover::before {
    transform: translateX(0);
}

.management-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.management-content {
    flex: 1;
}

.management-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.management-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

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

.support-section {
    margin-top: 2rem;
}

.support-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

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

.support-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

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

/* Responsive Design for Wallet Login Section */
@media (max-width: 1024px) {
    .wallet-login-section {
        padding: 5rem 0;
    }

    .login-steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }

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

    .login-process-section {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .wallet-login-section {
        padding: 4rem 0;
    }

    .login-header {
        margin-bottom: 2.5rem;
    }

    .login-intro {
        margin-bottom: 3rem;
    }

    .login-process-section {
        margin-bottom: 3.5rem;
    }

    .login-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .security-features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .management-features-list {
        gap: 1.2rem;
    }

    .management-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .management-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .login-image {
        border-radius: 15px;
    }

    .login-image img {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .wallet-login-section {
        padding: 3rem 0;
    }

    .login-header {
        margin-bottom: 2rem;
    }

    .login-intro {
        margin-bottom: 2.5rem;
    }

    .login-process-section {
        margin-bottom: 3rem;
    }

    .login-steps-grid {
        gap: 1rem;
    }

    .login-step {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .login-step .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .security-features-grid {
        gap: 1rem;
    }

    .security-feature {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .management-features-list {
        gap: 1rem;
    }

    .management-feature {
        padding: 1rem;
        border-radius: 12px;
    }

    .management-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .login-image {
        border-radius: 12px;
    }

    .login-image img {
        border-radius: 12px;
    }
}

/* High contrast mode support for Wallet Login */
@media (prefers-contrast: high) {
    .login-title {
        background: none;
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
    }

    .login-intro strong,
    .process-section-intro strong,
    .security-intro strong,
    .account-management-intro strong,
    .security-summary strong,
    .support-content strong {
        color: #ffff00;
    }

    .login-step .step-title,
    .security-feature-name,
    .management-name {
        color: #ffff00;
    }

    .login-step,
    .security-feature,
    .management-feature {
        border-color: #ffffff;
    }

    .login-image {
        box-shadow: 0 0 0 2px #ffffff;
    }
}

/* Reduced motion accessibility for Wallet Login */
@media (prefers-reduced-motion: reduce) {
    .login-title {
        animation: none;
        background-position: 0% 50%;
    }

    .login-step:hover,
    .security-feature:hover,
    .management-feature:hover {
        transform: none;
    }

    .login-step::before,
    .security-feature::before,
    .management-feature::before {
        transform: none;
    }

    .login-image:hover {
        transform: none;
    }

    .login-image-caption {
        opacity: 1;
        transform: none;
    }
}

/* Community and Customer Service Section */
.community-service-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.community-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 60%, rgba(247, 147, 30, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.community-service-content {
    position: relative;
    z-index: 2;
}

.community-header {
    text-align: center;
    margin-bottom: 3rem;
}

.community-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #f7931e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: communityTitleGlow 4s ease-in-out infinite;
}

@keyframes communityTitleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.community-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.community-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.8;
    color: #e0e0e0;
}

.community-intro strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Omnichannel Section */
.omnichannel-section {
    margin-bottom: 5rem;
}

.omnichannel-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.omnichannel-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.omnichannel-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.omnichannel-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.contact-channels-section {
    margin-bottom: 3rem;
}

.contact-channels-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

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

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.contact-channel:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.contact-channel:hover::before {
    transform: translateX(0);
}

.channel-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.channel-content {
    flex: 1;
}

.channel-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.channel-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.channel-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.service-image {
    position: relative;
    margin: 3rem auto 0;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 215, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.service-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-image:hover .service-image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Professional Team Section */
.professional-team-section {
    margin-bottom: 5rem;
}

.team-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.team-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.team-structure-section {
    margin-bottom: 3rem;
}

.team-structure-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.team-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.team-role {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-role::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.team-role:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.team-role:hover::before {
    transform: translateX(0);
}

.role-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.role-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.role-description strong {
    color: #ffd700;
    font-weight: 700;
}

/* VIP Program Section */
.vip-program-section {
    margin-bottom: 5rem;
}

.vip-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.vip-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vip-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.vip-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.vip-levels-section {
    margin-bottom: 3rem;
}

.vip-levels-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.vip-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vip-level {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.vip-level:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.vip-level:hover::before {
    transform: translateX(0);
}

.level-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.level-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #b8731f);
}

.level-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.level-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

.level-badge.platinum {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
}

.level-badge.diamond {
    background: linear-gradient(135deg, #b9f2ff, #87ceeb);
}

.level-content {
    flex: 1;
}

.level-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.level-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.level-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.vip-benefits-section {
    margin-bottom: 3rem;
}

.vip-benefits-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.vip-benefit {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vip-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.vip-benefit:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.vip-benefit:hover::before {
    transform: translateX(0);
}

.benefit-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.benefit-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

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

/* Complaint Management Section */
.complaint-management-section {
    margin-bottom: 5rem;
}

.complaint-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.complaint-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.complaint-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.complaint-process-section {
    margin-bottom: 3rem;
}

.complaint-process-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.complaint-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.complaint-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.complaint-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.complaint-step:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.complaint-step:hover::before {
    transform: translateX(0);
}

.complaint-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.complaint-step-content {
    width: 100%;
}

.complaint-step-name {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.complaint-step-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

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

.complaint-policy p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

/* Knowledge Library Section */
.knowledge-library-section {
    margin-bottom: 2rem;
}

.library-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.library-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.library-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.library-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.library-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.library-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.library-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.library-section:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.library-section:hover::before {
    transform: translateX(0);
}

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.section-description {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.section-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.library-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.library-summary p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #d0d0d0;
}

/* Responsive Design for Community Service Section */
@media (max-width: 1024px) {
    .community-service-section {
        padding: 5rem 0;
    }

    .contact-channels-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }

    .team-roles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }

    .vip-levels-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }

    .vip-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }

    .complaint-steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }

    .library-sections-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .community-service-section {
        padding: 4rem 0;
    }

    .community-header {
        margin-bottom: 2.5rem;
    }

    .community-intro {
        margin-bottom: 3rem;
    }

    .omnichannel-section {
        margin-bottom: 4rem;
    }

    .professional-team-section {
        margin-bottom: 4rem;
    }

    .vip-program-section {
        margin-bottom: 4rem;
    }

    .complaint-management-section {
        margin-bottom: 4rem;
    }

    .contact-channels-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-channel {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .channel-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .team-roles-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .team-role {
        padding: 1.2rem;
    }

    .vip-levels-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .vip-level {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .level-badge {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .vip-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .vip-benefit {
        padding: 1.2rem;
    }

    .complaint-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .complaint-step {
        padding: 1.2rem;
    }

    .complaint-step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .library-sections-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .library-section {
        padding: 1.2rem;
    }

    .service-image {
        border-radius: 15px;
    }

    .service-image img {
        border-radius: 15px;
    }

    .service-image-caption {
        font-size: 0.8rem;
        padding: 1.5rem 1rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .community-service-section {
        padding: 3rem 0;
    }

    .community-header {
        margin-bottom: 2rem;
    }

    .community-intro {
        margin-bottom: 2.5rem;
    }

    .omnichannel-section {
        margin-bottom: 3rem;
    }

    .professional-team-section {
        margin-bottom: 3rem;
    }

    .vip-program-section {
        margin-bottom: 3rem;
    }

    .complaint-management-section {
        margin-bottom: 3rem;
    }

    .contact-channels-grid {
        gap: 1rem;
    }

    .contact-channel {
        padding: 1rem;
        border-radius: 12px;
    }

    .channel-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .team-roles-grid {
        gap: 1rem;
    }

    .team-role {
        padding: 1rem;
        border-radius: 12px;
    }

    .vip-levels-grid {
        gap: 1rem;
    }

    .vip-level {
        padding: 1rem;
        border-radius: 12px;
    }

    .level-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .vip-benefits-grid {
        gap: 1rem;
    }

    .vip-benefit {
        padding: 1rem;
        border-radius: 12px;
    }

    .complaint-steps-grid {
        gap: 1rem;
    }

    .complaint-step {
        padding: 1rem;
        border-radius: 12px;
    }

    .complaint-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .library-sections-grid {
        gap: 1rem;
    }

    .library-section {
        padding: 1rem;
        border-radius: 12px;
    }

    .service-image {
        border-radius: 12px;
    }

    .service-image img {
        border-radius: 12px;
    }

    .service-image-caption {
        font-size: 0.75rem;
        padding: 1.2rem 0.8rem 0.6rem;
    }
}

/* High contrast mode support for Community Service */
@media (prefers-contrast: high) {
    .community-title {
        background: none;
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
    }

    .community-intro strong,
    .omnichannel-intro strong,
    .team-intro strong,
    .vip-intro strong,
    .library-intro strong {
        color: #ffff00;
    }

    .channel-name,
    .role-title,
    .level-name,
    .benefit-name,
    .complaint-step-name,
    .section-title {
        color: #ffff00;
    }

    .channel-description strong,
    .role-description strong,
    .level-description strong,
    .section-description strong {
        color: #ffffff;
    }

    .contact-channel,
    .team-role,
    .vip-level,
    .vip-benefit,
    .complaint-step,
    .library-section {
        border-color: #ffffff;
    }

    .service-image {
        box-shadow: 0 0 0 2px #ffffff;
    }
}

/* Reduced motion accessibility for Community Service */
@media (prefers-reduced-motion: reduce) {
    .community-title {
        animation: none;
        background-position: 0% 50%;
    }

    .contact-channel:hover,
    .team-role:hover,
    .vip-level:hover,
    .vip-benefit:hover,
    .complaint-step:hover,
    .library-section:hover {
        transform: none;
    }

    .contact-channel::before,
    .team-role::before,
    .vip-level::before,
    .vip-benefit::before,
    .complaint-step::before,
    .library-section::before {
        transform: none;
    }

    .service-image:hover {
        transform: none;
    }

    .service-image-caption {
        opacity: 1;
        transform: none;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 147, 30, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.faq-intro {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: #d0d0d0;
}

.faq-intro strong {
    color: #ffd700;
    font-weight: 700;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.faq-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #f7931e);
    opacity: 0.7;
}

.faq-category-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.faq-item {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.03) 100%);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 1.5rem 1rem;
    display: block;
}

.faq-question h4 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.faq-toggle {
    display: none;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: block;
}

.faq-answer p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.faq-answer strong {
    color: #ffd700;
    font-weight: 700;
}

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

/* Conclusion Section */
.conclusion-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.conclusion-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.conclusion-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.conclusion-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.conclusion-text {
    order: 1;
}

.conclusion-text p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 2rem;
    text-align: justify;
}

.conclusion-text strong {
    color: #ffd700;
    font-weight: 700;
}

.conclusion-image-section {
    order: 2;
    text-align: center;
    margin: 2rem 0;
}

.conclusion-image {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.conclusion-image:hover {
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
}

.conclusion-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.conclusion-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.conclusion-image:hover::before {
    opacity: 1;
}

.conclusion-final {
    order: 3;
    text-align: center;
}

.conclusion-final p {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 2rem;
    text-align: justify;
}

.conclusion-final strong {
    color: #ffd700;
    font-weight: 700;
}

.conclusion-final a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.conclusion-final a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.conclusion-cta {
    margin-top: 3rem;
}

/* Responsive Design for FAQ and Conclusion Sections */
@media (max-width: 1024px) {
    .faq-section {
        padding: 5rem 0;
    }

    .conclusion-section {
        padding: 5rem 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .conclusion-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .conclusion-section {
        padding: 4rem 0;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-category {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1.2rem 1.2rem 1rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .conclusion-content {
        gap: 1.5rem;
    }

    .conclusion-final p {
        text-align: left;
    }

    .conclusion-text p {
        text-align: left;
    }
}

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

    .conclusion-section {
        padding: 3rem 0;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-category {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .faq-question {
        padding: 1rem 1rem 0.8rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    .conclusion-cta {
        margin-top: 2rem;
    }
}

/* Enhanced Focus States for FAQ - removed since no longer interactive */

/* Reduced motion accessibility for FAQ and Conclusion */
@media (prefers-reduced-motion: reduce) {
    .faq-title {
        animation: none;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }

    .conclusion-title {
        animation: none;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }

    .faq-item:hover,
    .conclusion-image:hover {
        transform: none;
    }

    .faq-answer {
        animation: none;
    }

    .conclusion-image::before {
        opacity: 0.3;
        transition: none;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 1px solid transparent;
}

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    gap: 0.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    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);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 50px;
}

.sticky-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.1));
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    color: #ffd700;
}

.sticky-btn-primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    border: none;
    font-weight: 700;
}

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

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

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

    .footer-nav {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

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

/* Responsive Sticky Buttons */
@media (max-width: 480px) {
    .sticky-buttons {
        padding: 0.75rem 0.5rem;
        gap: 0.25rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
        border-radius: 8px;
        min-height: 45px;
    }
}

@media (max-width: 360px) {
    .sticky-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.25rem;
    }
}

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

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 40px;
    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% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    line-height: 1.2;
}

.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: 2.5rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.login-form:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.form-label i {
    color: #ff6b35;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-input:focus {
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 3px rgba(255, 107, 53, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.form-input:valid {
    border-color: #4CAF50;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
}

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

.password-toggle:focus {
    outline: 2px solid rgba(255, 107, 53, 0.5);
    outline-offset: 2px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #e55a2b, #e8821a);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:focus {
    outline: 3px solid rgba(255, 107, 53, 0.5);
    outline-offset: 2px;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
}

.btn-outline:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.btn-outline:focus {
    outline: 3px solid rgba(255, 107, 53, 0.5);
    outline-offset: 2px;
}

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

.forgot-password {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.forgot-password:focus {
    outline: 2px solid rgba(255, 107, 53, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Navigation active state for login page */
.nav-link.active,
.mobile-nav-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

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

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

    .login-form {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 16px;
    }

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

    .btn-primary,
    .btn-outline {
        padding: 1rem;
        font-size: 1rem;
    }
}

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

    .login-form {
        padding: 1.5rem;
        margin: 0 0.75rem;
    }

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

    .btn-primary,
    .btn-outline {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .form-actions {
        gap: 0.75rem;
        margin: 1.5rem 0 1rem;
    }
}

@media (max-width: 360px) {
    .login-title {
        font-size: 1.5rem;
    }

    .login-form {
        margin: 0 0.5rem;
        padding: 1.25rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .login-form {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid #ffffff;
    }

    .form-input {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .form-input:focus {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .login-title,
    .form-input,
    .btn-primary,
    .btn-outline,
    .password-toggle,
    .forgot-password {
        animation: none;
        transition: none;
    }

    .btn-primary:hover,
    .btn-outline:hover,
    .form-input:focus {
        transform: none;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.register-header {
    margin-bottom: 3rem;
}

.register-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #dc3545 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.register-form-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.register-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(220, 53, 69, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.register-form:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(220, 53, 69, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    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: #dc3545;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 3px rgba(220, 53, 69, 0.2),
        0 8px 25px rgba(220, 53, 69, 0.15);
    transform: translateY(-2px);
}

.form-input:valid {
    border-color: rgba(25, 135, 84, 0.6);
}

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

.btn-register {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(220, 53, 69, 0.3),
        0 0 40px rgba(220, 53, 69, 0.2);
}

.btn-register:active {
    transform: translateY(-1px);
}

.btn-login-outline {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Responsive Design for Register Page */
@media (max-width: 768px) {
    .register-section {
        padding: 120px 0 60px;
    }

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

    .register-form {
        margin: 0 1rem;
        padding: 2rem;
    }

    .form-actions {
        gap: 0.75rem;
        margin-top: 2rem;
    }
}

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

@media (max-width: 360px) {
    .register-title {
        font-size: 1.5rem;
    }

    .register-form {
        margin: 0 0.5rem;
        padding: 1.25rem;
    }
}

/* High contrast mode support for register page */
@media (prefers-contrast: high) {
    .register-form {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid #ffffff;
    }

    .form-input {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .form-input:focus {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Reduced motion support for register page */
@media (prefers-reduced-motion: reduce) {
    .register-title,
    .form-input,
    .btn-register,
    .btn-login-outline {
        animation: none;
        transition: none;
    }

    .btn-register:hover,
    .btn-login-outline:hover,
    .form-input:focus,
    .register-form:hover {
        transform: none;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.legal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-meta p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.legal-article {
    color: #e0e0e0;
    line-height: 1.8;
}

.legal-section-content {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.legal-section-content:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #4ecdc4;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(78, 205, 196, 0.3);
}

.legal-section-content h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #ff6b6b;
    margin: 2rem 0 1rem;
}

.legal-section-content p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    text-align: justify;
}

.legal-section-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section-content li {
    margin-bottom: 0.8rem;
    color: #d0d0d0;
    position: relative;
}

.legal-section-content li::marker {
    color: #4ecdc4;
}

.legal-section-content strong {
    color: #ffffff;
    font-weight: 700;
}

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

.contact-info li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid #4ecdc4;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.legal-footer p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-section-content {
        padding: 1.5rem 0;
    }

    .legal-section-content ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 100px 0 60px;
    }

    .legal-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .legal-section-content h2 {
        font-size: 1.3rem;
    }

    .legal-section-content h3 {
        font-size: 1.1rem;
    }
}