/* Privacy Policy Page Styles */
.privacy-policy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding-top: 70px;
    background-color: #0a0a0a;
}

.privacy-policy-content {
    max-width: 1280px;
    width: 100%;
    padding: 3rem 2rem;
    margin: 0 auto;
    color: #ffffff;
    line-height: 1.8;
}

.privacy-policy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #333333;
    padding-bottom: 0.5rem;
}

.privacy-policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy-content h4 {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #cccccc;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.privacy-policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-policy-content li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

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

.privacy-policy-content hr {
    border: none;
    border-top: 2px solid #333333;
    margin: 3rem 0;
}

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

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

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

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

@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 2rem 1rem;
    }

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

    .privacy-policy-content h2 {
        font-size: 1.4rem;
        margin-top: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .privacy-policy-content h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

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

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

    .privacy-policy-content ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content {
        padding: 1.5rem 0.8rem;
    }

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

    .privacy-policy-content h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

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

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

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

    .privacy-policy-content ul {
        padding-left: 1.2rem;
    }
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* Logo Styles */
.header-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    transition: filter 0.3s ease;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-item {
    position: relative;
}

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

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

.nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.15);
}

.nav-cta-btn {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #ff8e53 0%, #ffab76 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.nav-mobile.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #333333;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

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

.mobile-logo .logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

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

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

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

.mobile-nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.15);
    border-left-color: #ffd700;
}

.mobile-nav-cta {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 1rem 1.5rem;
    margin: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
    background: linear-gradient(135deg, #ff8e53 0%, #ffab76 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .nav-list {
        gap: 1.5rem;
    }
}

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

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

    .header-container {
        padding: 1rem;
    }

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

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

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 280px;
    }

    .header-container {
        padding: 0.75rem;
    }

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

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

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

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

/* Main Content Styles */
main {
    min-height: 100vh;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8e53 0%, #ffab76 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

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

/* Features Section */
.features {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.5;
}

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

.features-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Demo Section */
.demo {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.slot-machine {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333333;
}

.slot-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slot-balance {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    background: #000000;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid #333333;
}

.reel {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #ffd700;
    border-radius: 10px;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
    overflow: hidden;
    position: relative;
}

.symbol {
    font-size: 3rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.reel.spinning .symbol {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 10px;
}

.bet-amount label {
    color: #ffffff;
    margin-right: 0.5rem;
    font-weight: 600;
}

.bet-amount select {
    background: #0a0a0a;
    border: 1px solid #ffd700;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 5px;
    font-family: 'Sarabun', sans-serif;
}

.spin-button {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    border: none;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spin-button:hover {
    background: linear-gradient(135deg, #ff8e53 0%, #ffab76 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

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

.paytable {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 10px;
    padding: 1rem;
}

.paytable h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.paytable-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
}

.symbols {
    font-size: 1rem;
}

.payout {
    color: #ffd700;
    font-weight: 600;
}

.demo-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 1.5rem;
}

.info-card h3 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.info-card li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.info-card li::before {
    content: '▶';
    color: #ffd700;
    position: absolute;
    left: 0;
}

/* Banking Section */
.banking {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.banking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banking-text h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banking-text p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.deposit-methods h4,
.withdrawal-features h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.method-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.method-item:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.method-item i {
    font-size: 2rem;
    color: #ffd700;
    min-width: 40px;
}

.method-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.method-item p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
}

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

.feature-list li {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

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

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

.banking-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Access Section */
.access {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.access-text h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.access-text p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.access-steps h3 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.steps {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.steps h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
}

.steps ol {
    color: #e0e0e0;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.steps li {
    margin-bottom: 0.5rem;
}

.steps strong {
    color: #ffd700;
}

.steps a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.steps a:hover {
    color: #ff8e53;
}

.special-features {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 1.5rem;
}

.special-features h3 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    margin-bottom: 1rem;
}

.special-features ul {
    list-style: none;
    padding: 0;
}

.special-features li {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.special-features li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.special-features strong {
    color: #ffffff;
}

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

.access-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-text h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-text p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.promotions h3,
.certifications h3 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.promo-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.promo-category {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 1.5rem;
}

.promo-category h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
}

.promo-category ul,
.certifications ul {
    list-style: none;
    padding: 0;
}

.promo-category li,
.certifications li {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.promo-category li::before {
    content: '🎁';
    position: absolute;
    left: 0;
}

.certifications li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

.promo-category strong,
.certifications strong {
    color: #ffd700;
}

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

.trust-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Support Section */
.support {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.support-contact h3,
.responsible-gaming h3 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.support-contact p,
.responsible-gaming p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-methods h4,
.responsible-measures h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffd700;
    min-width: 30px;
}

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

.contact-item p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
}

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

.responsible-measures li {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.responsible-measures li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
}

.responsible-measures strong {
    color: #ffd700;
}

.responsible-gaming a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.responsible-gaming a:hover {
    color: #ff8e53;
}

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

.responsible-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.faq-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.faq-item h3 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-item a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.faq-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    background: #ffffff;
    color: #ff6b35;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

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

    .hero .container,
    .banking-content,
    .access-content,
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

    .banking-text h2,
    .access-text h2,
    .trust-text h2 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .slot-machine {
        padding: 1.5rem;
    }

    .slot-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .spin-button {
        width: 100%;
        justify-content: center;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .paytable-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-content p {
        font-size: 1.1rem;
    }
}

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

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .banking-text h2,
    .access-text h2,
    .trust-text h2 {
        font-size: 1.8rem;
    }

    .slot-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .slot-reels {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .symbol {
        font-size: 2rem;
    }

    .demo-info {
        grid-template-columns: 1fr;
    }

    .paytable-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid #333333;
    padding: 2rem 0;
    margin-bottom: 80px; /* Space for sticky buttons */
}

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

.footer-links {
    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: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid #333333;
    z-index: 999;
    padding: 0.75rem 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sticky-btn {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 100px;
    flex: 1;
    max-width: 140px;
    text-align: center;
    border: 2px solid transparent;
}

.sticky-btn i {
    font-size: 1.2rem;
}

.sticky-btn span {
    font-size: 0.8rem;
    line-height: 1.2;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
}

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

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #ff8e53 0%, #ffab76 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
        margin-bottom: 70px; /* Adjust for smaller sticky buttons */
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .sticky-buttons {
        padding: 0.5rem 0.75rem;
    }

    .sticky-buttons-container {
        gap: 0.5rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-width: 80px;
        border-radius: 10px;
    }

    .sticky-btn i {
        font-size: 1rem;
    }

    .sticky-btn span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0;
        margin-bottom: 65px;
    }

    .footer-links {
        gap: 0.75rem;
    }

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

    .sticky-buttons {
        padding: 0.4rem 0.5rem;
    }

    .sticky-buttons-container {
        gap: 0.4rem;
    }

    .sticky-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
        min-width: 70px;
        gap: 0.2rem;
    }

    .sticky-btn i {
        font-size: 0.9rem;
    }

    .sticky-btn span {
        font-size: 0.65rem;
    }
}

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

.login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

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

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

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

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

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

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

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

.btn-login {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    border: none;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-login:hover {
    background: linear-gradient(135deg, #ff8e53 0%, #ffab76 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.btn-register:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

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

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

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

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

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

    .form-input {
        padding: 0.75rem;
    }

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

/* Register Page Styles */
.register-page {
    padding: 100px 0 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

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

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-form-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

.register-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border: none;
    color: #0a0a0a;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ffed4a 0%, #fff176 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.login-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.login-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

    .register-container {
        margin: 0 1rem;
        padding: 0;
    }

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

    .register-form-wrapper {
        padding: 2rem;
    }

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

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

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

    .register-form-wrapper {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.75rem;
    }

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

/* Promotion Page Styles */
.promotion-grid {
    display: grid;
    gap: 2rem;
}

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.feature-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
}

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

.btn-large {
    font-size: 1.2rem !important;
    padding: 1rem 2.5rem !important;
}

/* Wallet Promotion Styles */
.wallet-promotion {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333333;
}

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

.wallet-intro h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.wallet-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

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

.offer-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #444444;
}

.offer-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Weekly Promotions Styles */
.weekly-promotions {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333333;
}

.weekly-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.weekly-intro h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.weekly-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

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

.day-promo {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

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

.day-promo h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.day-promo ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.day-promo li {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.day-promo li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

.weekend-special {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #ffd700;
    margin-top: 1rem;
}

.weekend-special h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.weekend-special ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.weekend-special li {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.weekend-special li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

/* VIP Promotions Styles */
.vip-promotions {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333333;
}

.vip-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vip-intro h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.vip-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

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

.vip-tier {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #444444;
    transition: all 0.3s ease;
    position: relative;
}

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

.vip-platinum {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
}

.vip-platinum::before {
    content: '👑';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 2rem;
}

.vip-tier h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.vip-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-tier li {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.vip-tier li::before {
    content: '💎';
    position: absolute;
    left: 0;
}

.vip-upgrade {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

.vip-upgrade h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.upgrade-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.upgrade-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 10px;
    border: 1px solid #444444;
    min-width: 150px;
}

.upgrade-amount {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.upgrade-level {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Seasonal Promotions Styles */
.seasonal-promotions {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333333;
}

.seasonal-festivals h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.festival-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

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

.festival-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.festival-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.festival-card li {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.festival-card li::before {
    content: '🎊';
    position: absolute;
    left: 0;
}

.monthly-events {
    margin-top: 3rem;
}

.monthly-events h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.event-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.event-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.event-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-card li {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.event-card li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

/* How To Section Styles */
.how-to-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333333;
}

.how-to-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #444444;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a0a0a;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.step-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-card li {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.terms-section {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #ffd700;
    margin-bottom: 2rem;
}

.terms-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.term-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 10px;
    padding: 1rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
    border: 1px solid #444444;
}

.term-item strong {
    color: #ffd700;
}

/* Why Choose Section Styles */
.why-choose-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333333;
}

.why-choose-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.advantage-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

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

.advantage-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.advantage-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-section li {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.advantage-section li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.reviews-section {
    margin-top: 3rem;
}

.reviews-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.review-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #ffd700;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}

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

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ffd700;
    font-family: serif;
}

.review-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

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

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333333;
}

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

.faq-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.faq-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA Section Styles */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #ffd700;
    text-align: center;
}

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

.cta-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-summary {
    margin-bottom: 2rem;
}

.benefits-summary h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.benefit-item {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    padding: 0.5rem;
}

.urgency-message {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #ffd700;
    margin-bottom: 2rem;
}

.urgency-message p {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.contact-info {
    margin-top: 3rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #444444;
}

.contact-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    color: #e0e0e0;
    font-size: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 10px;
    border: 1px solid #444444;
}

.final-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 15px;
}

.final-message p {
    color: #0a0a0a;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .promotion-grid,
    .features-grid,
    .wallet-offers,
    .weekly-schedule,
    .vip-levels,
    .festival-grid,
    .events-grid,
    .steps-grid,
    .advantages-grid,
    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .offer-section,
    .day-promo,
    .vip-tier,
    .festival-card,
    .event-card,
    .step-card,
    .advantage-section,
    .review-card,
    .faq-item {
        padding: 1.5rem;
    }

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

    .features-title,
    .wallet-intro h3,
    .weekly-intro h3,
    .vip-intro h3 {
        font-size: 1.5rem;
    }

    .upgrade-steps {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .wallet-promotion,
    .weekly-promotions,
    .vip-promotions,
    .seasonal-promotions,
    .how-to-section,
    .why-choose-section,
    .faq-section,
    .final-cta-section {
        padding: 2rem;
    }
}