/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #0f0f0f;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.main-nav {
    display: none;
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
}

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

.cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background-color: #0f0f0f;
    border-top: 1px solid #1a1a1a;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
}

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

.mobile-menu {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #e0e0e0;
    text-decoration: none;
    padding: 1rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #1a1a1a;
    color: #ffd700;
}

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

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

/* Tablet and Desktop - Show Main Nav */
@media (min-width: 768px) {
    .main-nav {
        display: block;
    }

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

    .mobile-nav {
        display: none;
    }
}

/* Larger Screens */
@media (min-width: 1024px) {
    .header-container {
        padding: 1.25rem 2rem;
    }

    .site-logo {
        height: 50px;
    }

    .nav-menu {
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 1.0625rem;
    }

    .cta-button {
        font-size: 1.0625rem;
        padding: 0.875rem 2rem;
    }
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Section Spacing */
section {
    padding: 3rem 0;
}

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

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 4rem 0;
    border-bottom: 2px solid #1a1a1a;
}

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

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

.hero-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #d0d0d0;
}

.hero-image {
    width: 100%;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Block */
.content-block {
    margin-bottom: 2.5rem;
}

.content-block h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffed4e;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.content-block p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.content-block ul,
.content-block ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.content-block li {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

/* CTA Link */
.cta-link {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.cta-link:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Content Image */
.content-image {
    width: 100%;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Baccarat Section */
.baccarat-section {
    background: #0f0f0f;
}

/* Slots Section */
.slots-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Sports Section */
.sports-section {
    background: #0f0f0f;
}

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Payment Section */
.payment-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

/* Flex Layout */
.flex-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Promotions Section */
.promotions-section {
    background: #0f0f0f;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

/* Contact Section */
.contact-section {
    background: #0f0f0f;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    color: #d0d0d0;
}

.contact-info strong {
    color: #ffd700;
}

/* Additional Reading Section */
.additional-reading {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.additional-reading a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.additional-reading a:hover {
    color: #ffed4e;
}

/* Footer Brand Section */
.footer-brand {
    background: #0a0a0a;
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid #1a1a1a;
}

.footer-brand p {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    color: #ffd700;
}

/* Demo Game Section */
.demo-game-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

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

.slot-machine {
    max-width: 600px;
    margin: 0 auto;
}

.slot-display {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    background: #0a0a0a;
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 3px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.slot-reel {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    width: 80px;
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slot-symbol {
    font-size: 3rem;
    animation: symbolPulse 2s ease-in-out infinite;
}

@keyframes symbolPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.slot-controls {
    text-align: center;
}

.spin-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    margin-bottom: 1rem;
}

.spin-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.spin-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.slot-result {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    color: #ffd700;
    font-weight: 700;
}

/* Tablet Styles */
@media (min-width: 768px) {
    section {
        padding: 4rem 0;
    }

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

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

    .hero-content p {
        font-size: 1.125rem;
    }

    .content-block h3 {
        font-size: 1.75rem;
    }

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

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

    .flex-layout {
        flex-direction: row;
    }

    .slot-reel {
        width: 90px;
        height: 110px;
    }

    .slot-symbol {
        font-size: 3.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    section {
        padding: 5rem 0;
    }

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

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

    .hero-content p {
        font-size: 1.1875rem;
    }

    .content-block h3 {
        font-size: 2rem;
    }

    .content-block p,
    .content-block li {
        font-size: 1.125rem;
    }

    .grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }

    .slot-reel {
        width: 100px;
        height: 120px;
    }

    .slot-symbol {
        font-size: 4rem;
    }
}

/* Site Footer */
.site-footer {
    background-color: #0a0a0a;
    padding: 2rem 0;
    border-top: 1px solid #1a1a1a;
    margin-bottom: 80px;
}

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

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

.footer-link:hover {
    color: #ffd700;
}

@media (min-width: 640px) {
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border-top: 2px solid #1a1a1a;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
    padding: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.sticky-btn {
    font-family: 'Prompt', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.sticky-btn:active {
    transform: translateY(0);
}

@media (min-width: 480px) {
    .sticky-buttons {
        padding: 1rem;
        gap: 0.75rem;
    }

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

@media (min-width: 640px) {
    .sticky-buttons {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px 12px 0 0;
    }

    .sticky-btn {
        font-size: 1.0625rem;
        padding: 1.125rem 1.5rem;
        border-radius: 10px;
    }
}

@media (min-width: 768px) {
    .sticky-buttons {
        max-width: 800px;
    }

    .sticky-btn {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .sticky-buttons {
        max-width: 900px;
    }
}

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

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.login-form {
    width: 100%;
    background: #0a0a0a;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid #1a1a1a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-input {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    background-color: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.btn-login {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 0.5rem;
}

.btn-login:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-register {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffd700;
    background: transparent;
    border: 2px solid #ffd700;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

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

.btn-register:active {
    transform: translateY(0);
}

/* Tablet Login Styles */
@media (min-width: 768px) {
    .login-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .login-form {
        padding: 3rem 2.5rem;
    }

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

    .form-input {
        font-size: 1.0625rem;
        padding: 1.125rem;
    }

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

/* Desktop Login Styles */
@media (min-width: 1024px) {
    .login-section {
        padding: 5rem 0;
    }

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

    .login-form {
        padding: 3.5rem 3rem;
    }
}

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

.register-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.register-form {
    width: 100%;
    background: #0a0a0a;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid #1a1a1a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-register-submit {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 0.5rem;
}

.btn-register-submit:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-register-submit:active {
    transform: translateY(0);
}

.btn-login-link {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffd700;
    background: transparent;
    border: 2px solid #ffd700;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

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

.btn-login-link:active {
    transform: translateY(0);
}

/* Tablet Register Styles */
@media (min-width: 768px) {
    .register-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .register-form {
        padding: 3rem 2.5rem;
    }

    .btn-register-submit,
    .btn-login-link {
        font-size: 1.25rem;
        padding: 1.125rem;
    }
}

/* Desktop Register Styles */
@media (min-width: 1024px) {
    .register-section {
        padding: 5rem 0;
    }

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

    .register-form {
        padding: 3.5rem 3rem;
    }
}

/* Promotion Page Styles */
.welcome-bonus-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.bonus-steps,
.bonus-terms {
    margin-top: 2rem;
}

.step-item {
    margin-bottom: 1.5rem;
}

.cashback-section {
    background: #0f0f0f;
}

.vip-cashback,
.cashback-terms {
    margin-top: 2rem;
}

.deposit-bonus-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.deposit-tiers,
.golden-hours,
.deposit-terms {
    margin-top: 2rem;
}

.free-credit-section {
    background: #0f0f0f;
}

.free-credit-activities,
.free-credit-terms {
    margin-top: 2rem;
}

.vip-program-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.vip-tiers {
    margin-top: 2rem;
}

.vip-tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.vip-tier-item {
    background: #0a0a0a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.vip-tier-item:hover {
    border-color: #ffd700;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.vip-benefits {
    margin-top: 2rem;
}

.referral-section {
    background: #0f0f0f;
}

.referral-steps,
.referral-terms {
    margin-top: 2rem;
}

.summary-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

/* Tablet Promotion Styles */
@media (min-width: 768px) {
    .vip-tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Promotion Styles */
@media (min-width: 1024px) {
    .vip-tier-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 4rem 0;
}

.privacy-policy-content {
    max-width: 100%;
}

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

.privacy-policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffed4e;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

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

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

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

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

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

.privacy-policy-content a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
    color: #ffed4e;
}

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

.privacy-policy-content em {
    color: #b0b0b0;
    font-style: italic;
}

/* Tablet Privacy Policy Styles */
@media (min-width: 768px) {
    .privacy-policy-section {
        padding: 5rem 0;
    }

    .privacy-policy-content h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.75rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }

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

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

/* Desktop Privacy Policy Styles */
@media (min-width: 1024px) {
    .privacy-policy-section {
        padding: 6rem 0;
    }

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

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

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

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