/* Header Styles */
.header {
    background: #0f0f23;
    border-bottom: 1px solid #262640;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

.nav-link:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
}

.cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f0f23;
    border-top: 1px solid #262640;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.mobile-nav-list li {
    border-bottom: 1px solid #1e1e3f;
}

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

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

.mobile-nav-link:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.mobile-cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    text-decoration: none;
    display: block;
    margin: 1rem 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}

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

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

    .header-container {
        height: 70px;
        padding: 0 1rem;
    }

    .logo-img {
        height: 40px;
    }
}

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

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

    .mobile-cta-button {
        font-size: 1rem;
        margin: 0.75rem 1rem;
        padding: 0.875rem;
    }
}

/* Active link styling */
.nav-link.active,
.mobile-nav-link.active {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    background: #0a0a1b;
    color: #e2e8f0;
    line-height: 1.8;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f59e0b;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

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

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
    margin-top: 1rem;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(251, 191, 36, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* License Section */
.license-section {
    background: #0f0f23;
    border-bottom: 1px solid #262640;
}

.license-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.license-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.cert-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
    text-align: center;
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.cert-card i {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.cert-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cert-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Baccarat Section */
.baccarat-section {
    background: linear-gradient(135deg, #1e1e3f 0%, #0f0f23 100%);
    border-bottom: 1px solid #262640;
}

.baccarat-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.baccarat-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.baccarat-content ul {
    list-style: none;
    padding-left: 0;
}

.baccarat-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.baccarat-content ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

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

.feature-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f0f23;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Slot Demo Section */
.demo-section {
    background: #0f0f23;
    border-bottom: 1px solid #262640;
    text-align: center;
}

.slot-demo {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.slot-machine {
    background: linear-gradient(135deg, #1e1e3f, #2d2d5f);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 3px solid #fbbf24;
}

.slot-display {
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: #0a0a1b;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.reel {
    width: 100px;
    height: 150px;
    background: #1e1e3f;
    border: 3px solid #fbbf24;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.symbol {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

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

.spin-button {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1rem 3rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.spin-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.demo-credits {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fbbf24;
}

.win-message {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    min-height: 2rem;
}

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

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

/* Slots Section */
.slots-section {
    background: linear-gradient(135deg, #1e1e3f 0%, #0f0f23 100%);
    border-bottom: 1px solid #262640;
}

.slots-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.slots-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.game-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.game-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.game-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.feature-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Deposit Section */
.deposit-section {
    background: #0f0f23;
    border-bottom: 1px solid #262640;
}

.deposit-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.deposit-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.bank-item {
    display: flex;
    gap: 1rem;
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

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

.bank-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f0f23;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.security-item {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
    text-align: center;
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.security-item i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.security-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #10b981;
}

.security-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* More Games Section */
.more-games-section {
    background: linear-gradient(135deg, #1e1e3f 0%, #0f0f23 100%);
    border-bottom: 1px solid #262640;
}

.games-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.games-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.provider-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.provider-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.provider-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.betting-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.betting-type {
    display: flex;
    gap: 1.5rem;
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.betting-type:hover {
    border-color: #fbbf24;
    transform: translateX(5px);
}

.type-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f0f23;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.type-content h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.type-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.lottery-rates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e1e3f;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.rate-item:hover {
    border-color: #fbbf24;
}

.rate-label {
    font-weight: 600;
    color: #fbbf24;
    font-size: 1.125rem;
}

.rate-value {
    font-weight: 700;
    color: #e2e8f0;
    font-size: 1.25rem;
}

.rate-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.other-game {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.other-game:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.other-game h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.other-game p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Summary Section */
.summary-section {
    background: #0f0f23;
    border-bottom: 1px solid #262640;
}

.summary-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.summary-image-wrapper {
    text-align: center;
    margin: 3rem 0;
}

.summary-image-wrapper img {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.advantage-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.advantage-card i {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.advantage-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.final-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #1e1e3f, #2d2d5f);
    border-radius: 16px;
    border: 2px solid #fbbf24;
}

.cta-large {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

.cta-large:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.5);
}

.cta-subtext {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #cbd5e1;
}

.contact-info {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 3rem 0;
}

.contact-info h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.contact-info i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.brand-slogan {
    text-align: center;
    font-size: 1.5rem;
    margin: 3rem 0 2rem;
}

.disclaimer {
    text-align: center;
    font-size: 0.95rem;
    color: #94a3b8;
    max-width: 900px;
    margin: 2rem auto 0;
}

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

.cta-primary {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(251, 191, 36, 0.5);
}

.cta-text {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .license-grid,
    .baccarat-layout,
    .slots-intro,
    .deposit-layout,
    .games-intro-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .baccarat-layout {
        grid-template-columns: 1fr;
    }

    .baccarat-image {
        order: -1;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 3rem 1.5rem;
    }

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

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

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

    .certification-grid,
    .games-grid,
    .features-grid,
    .banks-grid,
    .security-grid,
    .providers-grid,
    .other-games-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slot-machine {
        padding: 2rem 1rem;
    }

    .slot-display {
        padding: 1rem;
        gap: 0.5rem;
    }

    .reel {
        width: 80px;
        height: 120px;
    }

    .symbol {
        height: 120px;
        font-size: 3rem;
    }

    .spin-button {
        font-size: 1.25rem;
        padding: 0.875rem 2rem;
    }

    .contact-info ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

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

    .reel {
        width: 70px;
        height: 100px;
    }

    .symbol {
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Footer Styles */
.site-footer {
    background: #0f0f23;
    border-top: 1px solid #262640;
    padding: 2rem 0;
    margin-bottom: 80px;
}

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

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

.footer-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(to top, #0a0a1b 0%, #0a0a1b 90%, transparent 100%);
    padding: 0.75rem 0 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

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

.sticky-btn {
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-btn-login {
    color: #e2e8f0;
    background: #1e1e3f;
    border: 2px solid #fbbf24;
}

.sticky-btn-login:hover {
    background: #2d2d5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.sticky-btn-register {
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.sticky-btn-bonus {
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

/* Responsive Footer and Sticky Buttons */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0;
        margin-bottom: 75px;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-nav {
        gap: 1rem;
    }

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

    .sticky-buttons {
        padding: 0.625rem 0 0.875rem;
    }

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

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

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

    .footer-container {
        padding: 0 1rem;
    }

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

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

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

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

    .sticky-btn {
        font-size: 0.8125rem;
        padding: 0.625rem 0.75rem;
        max-width: none;
    }
}

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

.login-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.login-container h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0;
}

.login-form {
    width: 100%;
    background: #1e1e3f;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #262640;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #262640;
    background: #0f0f23;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group input::placeholder {
    color: #64748b;
}

.btn-login {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
    margin-top: 0.5rem;
}

.btn-login:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(251, 191, 36, 0.5);
}

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

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

/* Responsive Login Page */
@media (max-width: 768px) {
    .login-section {
        min-height: calc(100vh - 70px);
        padding: 3rem 1.5rem;
    }

    .login-container h1 {
        font-size: 1.75rem;
    }

    .login-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 2rem 1rem;
    }

    .login-container h1 {
        font-size: 1.5rem;
    }

    .login-form {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .form-group label {
        font-size: 0.9375rem;
    }

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

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

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

.register-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.register-container h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0;
}

.register-form {
    width: 100%;
    background: #1e1e3f;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #262640;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-register-submit {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f0f23;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
    margin-top: 0.5rem;
}

.btn-register-submit:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(251, 191, 36, 0.5);
}

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

.btn-login-link:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Responsive Register Page */
@media (max-width: 768px) {
    .register-section {
        min-height: calc(100vh - 70px);
        padding: 3rem 1.5rem;
    }

    .register-container h1 {
        font-size: 1.75rem;
    }

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

@media (max-width: 480px) {
    .register-section {
        padding: 2rem 1rem;
    }

    .register-container h1 {
        font-size: 1.5rem;
    }

    .register-form {
        padding: 1.5rem;
        gap: 1.25rem;
    }

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

/* Promotion Page Styles */
.promo-hero {
    background: linear-gradient(135deg, #1e1e3f 0%, #0f0f23 100%);
    padding: 4rem 0;
    border-bottom: 2px solid #262640;
}

.promo-section {
    background: #0f0f23;
    padding: 4rem 0;
    border-bottom: 1px solid #262640;
}

.promo-section.promo-alt {
    background: linear-gradient(135deg, #1e1e3f 0%, #0f0f23 100%);
}

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

.promo-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.promo-terms {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

.promo-steps {
    margin: 2rem 0;
}

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

.step-item {
    display: flex;
    gap: 1rem;
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

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

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f0f23;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-content h5 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

.promo-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.promo-info {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.promo-table,
.vip-comparison-table,
.commission-table,
.turnover-table {
    width: 100%;
    border-collapse: collapse;
    background: #1e1e3f;
    border-radius: 12px;
    overflow: hidden;
}

.promo-table thead,
.vip-comparison-table thead,
.commission-table thead,
.turnover-table thead {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f0f23;
}

.promo-table th,
.promo-table td,
.vip-comparison-table th,
.vip-comparison-table td,
.commission-table th,
.commission-table td,
.turnover-table th,
.turnover-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #262640;
}

.promo-table tbody tr:hover,
.vip-comparison-table tbody tr:hover,
.commission-table tbody tr:hover,
.turnover-table tbody tr:hover {
    background: rgba(251, 191, 36, 0.1);
}

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

.example-card {
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.example-card h5 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.freespin-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin: 2rem 0;
}

.freespin-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.usage-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-item {
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
    border-left: 4px solid #fbbf24;
}

.timeline-item h5 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

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

.simple-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.step-num {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f0f23;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.simple-step p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.vip-tiers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.vip-tier {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.vip-tier:hover {
    border-color: #fbbf24;
    transform: translateX(5px);
}

.vip-tier.vip-diamond {
    background: linear-gradient(135deg, #1e1e3f, #2d2d5f);
    border: 2px solid #fbbf24;
}

.vip-requirement {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.vip-upgrade {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

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

.seasonal-promo {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.seasonal-promo:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.seasonal-promo.seasonal-highlight {
    background: linear-gradient(135deg, #1e1e3f, #2d2d5f);
    border: 2px solid #fbbf24;
}

.seasonal-promo.seasonal-mega {
    background: linear-gradient(135deg, #2d2d5f, #1e1e3f);
    border: 2px solid #10b981;
}

.seasonal-promo h5 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.weekly-item {
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.weekly-item h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.referral-benefits,
.referral-perks {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

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

.referral-example {
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.referral-example h5 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.referral-steps {
    margin: 2rem 0;
}

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

.flow-step {
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
    border-left: 4px solid #fbbf24;
}

.flow-step h5 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.flow-step p {
    margin-bottom: 0;
}

.birthday-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.birthday-tier {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.diamond-gifts {
    background: linear-gradient(135deg, #1e1e3f, #2d2d5f);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #fbbf24;
    margin: 2rem 0;
}

.birthday-steps {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

.tournament-type {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

.tournament-type h5,
.tournament-type h6 {
    color: #fbbf24;
}

.tournament-type.tournament-grand {
    background: linear-gradient(135deg, #1e1e3f, #2d2d5f);
    border: 2px solid #fbbf24;
}

.tournament-rules {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

.tournament-schedule {
    margin: 2rem 0;
}

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

.schedule-week {
    background: #1e1e3f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.schedule-week h5 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.tournament-join {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

.terms-section {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

.terms-section h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.turnover-examples {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

.contact-support {
    background: linear-gradient(135deg, #1e1e3f, #2d2d5f);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #fbbf24;
    margin: 2rem 0;
}

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

.summary-card {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.summary-card h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.advantages {
    margin: 3rem 0;
}

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

.advantage-item {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
}

.advantage-item h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.get-started,
.follow-updates {
    background: #1e1e3f;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #262640;
    margin: 2rem 0;
}

/* Responsive Promotion Page */
@media (max-width: 1024px) {
    .promo-details-grid,
    .promo-highlight-grid,
    .freespin-grid,
    .birthday-tiers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .promo-hero,
    .promo-section {
        padding: 3rem 0;
    }

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

    .cashback-examples,
    .referral-examples,
    .seasonal-grid,
    .weekly-promos,
    .summary-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .promo-card,
    .highlight-card,
    .promo-info,
    .promo-terms,
    .vip-tier,
    .seasonal-promo,
    .referral-benefits,
    .terms-section,
    .summary-card,
    .advantage-item {
        padding: 1.5rem;
    }

    .step-item,
    .flow-step,
    .simple-step {
        padding: 1rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.privacy-policy-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.privacy-policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fcd34d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.privacy-policy-content h4 {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

.privacy-policy-content p strong {
    color: #fbbf24;
    font-weight: 600;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy-content li {
    margin-bottom: 0.5rem;
}

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

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

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

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 3rem 1.5rem;
    }

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

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

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

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

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        margin-left: 1.5rem;
    }
}

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

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

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

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

    .privacy-policy-content p,
    .privacy-policy-content ul,
    .privacy-policy-content ol {
        font-size: 0.9375rem;
    }

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        margin-left: 1.25rem;
    }
}
