/* Header Styles */
.site-header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

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

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

/* Main Navigation */
.main-nav {
    display: none;
}

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

.nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #e5e7eb;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #10b981;
}

.nav-link.active {
    color: #10b981;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 1px;
}

/* CTA Button */
.cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

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

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

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.98);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #10b981;
}

.mobile-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 2rem;
}

.mobile-nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #10b981;
}

.mobile-cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .main-nav {
        display: block;
    }

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

/* Responsive Adjustments */
@media (max-width: 767px) {
    .header-content {
        padding: 0.75rem 0;
    }

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

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

/* Body padding to account for fixed header */
body {
    padding-top: 80px;
    font-family: 'Sarabun', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }
}

/* Homepage Styles */

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%2310b981;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%2310b981;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23a)"/></svg>') center/cover;
    pointer-events: none;
}

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

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

.hero-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.primary-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-button::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.6s ease;
}

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

.primary-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.primary-button.large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.secondary-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
    background: transparent;
    border: 2px solid #10b981;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

/* Slot Demo Section */
.slot-demo-section {
    background: #1e293b;
    padding: 4rem 0;
}

.slot-demo-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.slot-demo-section > .container > p {
    font-size: 1.125rem;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 3rem;
}

.slot-machine-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.slot-machine {
    background: linear-gradient(145deg, #2d3748, #4a5568);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid #10b981;
}

.slot-display {
    background: #0f172a;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 2rem;
}

.reels-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.reel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 240px;
    background: #1a202c;
    border-radius: 0.75rem;
    border: 2px solid #4a5568;
    overflow: hidden;
    position: relative;
}

.reel.spinning {
    animation: spin 2s ease-in-out;
}

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

.symbol {
    font-size: 2rem;
    line-height: 1;
    padding: 0.75rem;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all 0.3s ease;
}

.symbol.winning {
    background: rgba(16, 185, 129, 0.2);
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
    to { box-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}

.paylines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.payline {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(16, 185, 129, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payline:nth-child(1) { top: 33%; }
.payline:nth-child(2) { top: 50%; }
.payline:nth-child(3) { top: 67%; }

.payline.active {
    opacity: 1;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.slot-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credits-display, .win-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.label {
    font-weight: 600;
    color: #10b981;
}

.credits, .win-amount {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.spin-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.spin-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

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

.demo-info {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.demo-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

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

.demo-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    position: relative;
    padding-left: 1.5rem;
}

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

.demo-info li:last-child {
    border-bottom: none;
}

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

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

/* About Section */
.about-section {
    background: #0f172a;
    padding: 4rem 0;
}

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

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

.about-text h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.about-text h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.about-text p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    border-left: 3px solid #10b981;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
}

.features-list li strong {
    color: #10b981;
}

/* Technology Section */
.technology-section {
    background: #1e293b;
    padding: 4rem 0;
}

.tech-image {
    margin-bottom: 2rem;
}

.tech-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

.technology-content {
    margin-top: 3rem;
}

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

.games-section h3,
.providers-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.game-types h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0 1rem 0;
}

.game-types ol {
    padding-left: 1.5rem;
    color: #cbd5e1;
}

.game-types li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.game-types li strong {
    color: #10b981;
}

.providers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.provider {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.provider:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.provider h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.provider p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 0;
}

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

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

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

.feature {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(30, 41, 59, 1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

.feature h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 0;
}

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

/* Wallet Section */
.wallet-section {
    background: #0f172a;
    padding: 4rem 0;
}

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

.wallet-info h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.registration-steps h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.registration-steps p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

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

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

.step-content li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
}

.step-content li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.contact-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

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

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

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

.wallet-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.deposit-methods h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.method {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.method h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.method li {
    padding: 0.25rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1rem;
    font-size: 0.95rem;
}

.method li::before {
    content: '•';
    color: #10b981;
    position: absolute;
    left: 0;
}

.withdrawal-info {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.withdrawal-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.withdrawal-info ol {
    padding-left: 1.5rem;
    margin: 0;
}

.withdrawal-info li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Promotions Section */
.promotions-section {
    background: #1e293b;
    padding: 4rem 0;
}

.promo-image {
    margin-bottom: 2rem;
}

.promo-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

.promotions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.new-member-section h3,
.member-benefits h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.new-member-section p,
.member-benefits p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.welcome-package h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateX(5px);
}

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

.bonus-item h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.bonus-item p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
}

.weekly-promos h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1.5rem 0;
}

.weekly-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.day-promo {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.day-promo:hover {
    background: rgba(30, 41, 59, 1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.day-promo h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.day-promo p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
}

.cashback-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1.5rem 0;
}

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

.cashback-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cashback-feature i {
    font-size: 1.5rem;
    color: #10b981;
    width: 30px;
    text-align: center;
}

.cashback-feature h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.cashback-feature p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
}

/* Security Section */
.security-section {
    background: #0f172a;
    padding: 4rem 0;
}

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

.security-text h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.security-standards h3,
.responsible-gaming h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.security-standards p,
.responsible-gaming p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.security-features h4,
.financial-security h4,
.gaming-controls h4,
.support-resources h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.security-features ol,
.financial-security ul,
.gaming-controls ul,
.support-resources ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.security-features li,
.financial-security li,
.gaming-controls li,
.support-resources li {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.security-features li strong,
.financial-security li strong,
.gaming-controls li strong,
.support-resources li strong {
    color: #10b981;
}

.security-text a {
    color: #10b981;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.security-text a:hover {
    color: #059669;
}

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

/* FAQ Section */
.faq-section {
    background: #1e293b;
    padding: 4rem 0;
}

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

.faq-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(15, 23, 42, 1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.7;
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .games-grid,
    .wallet-content,
    .promotions-content,
    .security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .hero-section,
    .about-section,
    .technology-section,
    .wallet-section,
    .promotions-section,
    .security-section,
    .faq-section,
    .slot-demo-section {
        padding: 3rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .slot-demo-section h2 {
        font-size: 1.875rem;
    }

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

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

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

    .slot-machine {
        padding: 1.5rem;
    }

    .demo-info {
        padding: 1.5rem;
    }

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

    .step-number {
        align-self: center;
    }

    .bonus-grid,
    .weekly-grid,
    .cashback-features {
        grid-template-columns: 1fr;
    }
}

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

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

    .primary-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .primary-button.large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .reels-container {
        gap: 0.5rem;
    }

    .reel {
        width: 50px;
    }
}

/* Footer Styles */
.site-footer {
    background: rgba(17, 24, 39, 0.95);
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding: 1.5rem 0;
    margin-top: 4rem;
    margin-bottom: 80px; /* Space for sticky buttons */
}

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

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

.footer-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
}

.footer-link:hover {
    color: #10b981;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    max-width: 1280px;
    margin: 0 auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 0.5rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-family: 'Prompt', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.sticky-btn span {
    position: relative;
    z-index: 2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #374151, #4b5563);
    color: #ffffff;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #4b5563, #6b7280);
    transform: translateY(-2px);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #ffffff;
    border: 1px solid #4b5563;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #374151, #4b5563);
    transform: translateY(-2px);
}

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

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 767px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .site-footer {
        padding: 1rem 0;
        margin-bottom: 70px; /* Reduced space for mobile sticky buttons */
    }
}

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

    .sticky-btn {
        padding: 0.75rem 0.25rem;
        font-size: 0.8rem;
        min-height: 44px;
    }

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

@media (max-width: 480px) {
    .sticky-btn {
        padding: 0.625rem 0.125rem;
        font-size: 0.75rem;
        min-height: 40px;
    }

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

    .footer-links {
        gap: 0.75rem;
    }

    .footer-link {
        font-size: 0.75rem;
    }
}
        height: 150px;
    }

    .symbol {
        font-size: 1.25rem;
        height: 50px;
    }

    .slot-controls {
        gap: 0.75rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

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

.login-content {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #10b981, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-form {
    width: 100%;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.form-label {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    display: block;
    margin-bottom: 0.5rem;
}

.form-input {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(55, 65, 81, 0.3);
    border-radius: 0.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

.form-input::placeholder {
    color: #94a3b8;
}

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

.form-actions .primary-button,
.form-actions .secondary-button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Mobile Responsiveness for Login */
@media (max-width: 767px) {
    .login-section {
        min-height: calc(100vh - 70px);
        padding: 1rem 0;
    }

    .login-content {
        max-width: 350px;
    }

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

    .login-form {
        padding: 1.5rem;
    }

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

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

    .form-actions {
        gap: 0.875rem;
        margin-top: 1.5rem;
    }
}

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

    .login-content h1 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .login-form {
        padding: 1.25rem;
    }

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

    .form-label {
        font-size: 0.875rem;
    }

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

    .form-actions {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .primary-button,
    .secondary-button {
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
}

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

.register-content {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.register-form {
    width: 100%;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.register-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.register-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
}

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

.login-button:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
}

/* Mobile Responsiveness for Register */
@media (max-width: 767px) {
    .register-section {
        min-height: calc(100vh - 70px);
        padding: 1rem 0;
    }

    .register-content {
        max-width: 350px;
    }

    .register-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .register-form {
        padding: 1.5rem;
    }

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

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

    .form-buttons {
        gap: 0.875rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .register-content {
        max-width: 300px;
    }

    .register-content h1 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .register-form {
        padding: 1.25rem;
    }

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

    .form-label {
        font-size: 0.875rem;
    }

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

    .form-buttons {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .register-button,
    .login-button {
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
}

/* Promotion Page Styles */
.promo-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding: 4rem 0;
}

.promo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%2310b981;stop-opacity:0.15"/><stop offset="100%" style="stop-color:%2310b981;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23a)"/></svg>') center/cover;
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Promotion Section Styles */
.promo-section {
    padding: 4rem 0;
    background: #0f172a;
    border-bottom: 1px solid rgba(55, 65, 81, 0.2);
}

.promo-section:nth-child(even) {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

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

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Promo Grid Layouts */
.promo-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.promo-grid.two-column {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.promo-grid:not(.two-column) {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .promo-grid:not(.two-column):not(.steps-grid):not(.features-grid):not(.privileges-grid) {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

/* Promo Card Styles */
.promo-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.promo-card.featured-bonus {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-color: rgba(16, 185, 129, 0.3);
}

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

.card-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* List Styles */
.benefits-list,
.features-list,
.cashback-tiers,
.vip-benefits,
.requirements-list,
.feature-list,
.privilege-list,
.final-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefits-list li,
.features-list li,
.cashback-tiers li,
.vip-benefits li,
.requirements-list li,
.feature-list li,
.privilege-list li,
.final-benefits li {
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.benefits-list li::before,
.features-list li::before,
.cashback-tiers li::before,
.vip-benefits li::before,
.requirements-list li::before,
.feature-list li::before,
.privilege-list li::before,
.final-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1em;
}

.cashback-tiers li::before {
    content: '💰';
}

.vip-benefits li::before {
    content: '👑';
}

.final-benefits li::before {
    content: '';
}

/* Steps Styles */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    counter-reset: step-counter;
}

.steps-list li {
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
    counter-increment: step-counter;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Sub Sections */
.sub-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.sub-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.steps-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

/* CTA Button Styles */
.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.promo-cta:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.vip-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.vip-cta:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

/* Steps Container */
.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.steps-main-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.step-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.step-number {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.step-list li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

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

/* Features Container */
.features-container,
.privileges-container {
    margin-bottom: 3rem;
}

.features-header,
.privileges-header {
    text-align: center;
    margin-bottom: 2rem;
}

.features-title,
.privileges-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.feature-card,
.privilege-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover,
.privilege-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-header,
.privilege-header {
    margin-bottom: 1.5rem;
}

.feature-title,
.privilege-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
}

.question-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-answer {
    padding: 1.5rem;
}

.faq-answer p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Styles */
.final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%2310b981;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%2310b981;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23b)"/></svg>') center/cover;
    z-index: 1;
}

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

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

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefits-overview {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 1rem;
    border-radius: 8px;
    color: #e2e8f0;
    text-align: center;
    border: 1px solid rgba(55, 65, 81, 0.3);
}

.final-action {
    margin-bottom: 3rem;
}

.primary-button.hero-size {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

/* Disclaimer */
.disclaimer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.disclaimer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(55, 65, 81, 0.5), transparent);
    margin-bottom: 2rem;
}

.disclaimer-text {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.disclaimer-text a {
    color: #10b981;
    text-decoration: none;
}

.disclaimer-text a:hover {
    text-decoration: underline;
}

.responsibility-warning {
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .promo-hero {
        padding: 3rem 0;
    }

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

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

    .promo-card {
        padding: 1.5rem;
    }

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

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

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

    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .primary-button.hero-size {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
}

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

    .step-card {
        padding: 1.5rem;
    }

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

    .sub-section {
        padding: 0.75rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-content {
    padding: 120px 0 2rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    color: #ffffff;
}

.privacy-policy-container {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
}

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

.privacy-policy-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fbbf24;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.privacy-policy-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-policy-container p {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-policy-container ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-policy-container li {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.privacy-policy-container strong {
    color: #fbbf24;
    font-weight: 700;
}

.privacy-policy-container hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.5) 50%, transparent 100%);
    margin: 2rem 0;
}

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

    .privacy-policy-container h1 {
        font-size: 2rem;
    }

    .privacy-policy-container h2 {
        font-size: 1.5rem;
    }

    .privacy-policy-container h3 {
        font-size: 1.125rem;
    }
}

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

    .privacy-policy-container {
        padding: 0 0.75rem;
    }

    .privacy-policy-container h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .privacy-policy-container h2 {
        font-size: 1.375rem;
        margin-top: 2rem;
    }

    .privacy-policy-container h3 {
        font-size: 1rem;
        margin-top: 1.25rem;
    }

    .privacy-policy-container p,
    .privacy-policy-container li {
        font-size: 0.9rem;
    }

    .privacy-policy-container ul {
        padding-left: 1.25rem;
    }
}

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

    .privacy-policy-container {
        padding: 0 0.5rem;
    }

    .privacy-policy-container h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .privacy-policy-container h2 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .privacy-policy-container h3 {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

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

    .privacy-policy-container ul {
        padding-left: 1rem;
    }
}