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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
}

/* Header Styles */
.main-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Styles */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo a:hover img {
    transform: scale(1.1);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

/* CTA Button */
.nav-cta-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

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

.mobile-nav-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: block;
    padding: 15px 20px;
    border-radius: 25px;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo img {
        width: 35px;
        height: 35px;
    }
}

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

    .mobile-nav-menu {
        padding: 15px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .mobile-nav-cta {
        font-size: 16px;
        padding: 12px 16px;
        margin-top: 15px;
    }
}

/* Animation for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Promotion Page Styles */

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

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

.promo-section-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.promo-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.promo-hero-title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.promo-hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.promo-hero-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    display: inline-block;
}

.promo-hero-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Main Promotions Section */
.promo-main-section {
    padding: 4rem 0;
    background-color: #0f0f0f;
}

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

/* Promo Cards */
.promo-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

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

.promo-card-featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

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

.promo-card-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.promo-card-content p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-conditions,
.promo-benefits {
    margin-bottom: 2rem;
}

.promo-conditions h4,
.promo-benefits h4 {
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.promo-conditions ul,
.promo-benefits ul {
    list-style: none;
    padding: 0;
}

.promo-conditions li,
.promo-benefits li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.promo-conditions li::before,
.promo-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.promo-card-action {
    text-align: center;
}

/* Buttons */
.promo-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.promo-btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.promo-btn-secondary {
    background: linear-gradient(135deg, #4a4a4a, #6a6a6a);
    color: #fff;
    border: 1px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.promo-btn-gold {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #000;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

/* Slots Section */
.promo-slots-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

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

.slots-card,
.bonus-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    height: 100%;
}

.slots-card-title,
.bonus-card-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.slots-card p,
.bonus-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-providers {
    margin-bottom: 2rem;
}

.game-providers h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.providers-grid {
    display: grid;
    gap: 1rem;
}

.provider-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.provider-item strong {
    color: #ffd700;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.provider-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-type {
    color: #e0e0e0;
    font-weight: 500;
}

.bonus-value {
    color: #ffd700;
    font-weight: 700;
}

.slots-action {
    text-align: center;
    margin-top: 2rem;
}

/* VIP Section */
.promo-vip-section {
    padding: 4rem 0;
    background-color: #0f0f0f;
}

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

.vip-card,
.vip-levels-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    height: 100%;
}

.vip-card-title,
.vip-levels-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vip-card p,
.vip-levels-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.vip-benefits h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.vip-benefits li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.vip-benefits li::before {
    content: '👑';
    position: absolute;
    left: 0;
}

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

.vip-tiers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vip-tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.vip-tier:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.tier-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    min-width: 1.5rem;
}

.tier-name {
    font-weight: 700;
    color: #ffd700;
    min-width: 100px;
}

.tier-benefit {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.vip-tier-silver {
    border-color: #c0c0c0;
}

.vip-tier-gold {
    border-color: #ffd700;
}

.vip-tier-platinum {
    border-color: #e5e4e2;
}

.vip-tier-diamond {
    border-color: #b9f2ff;
}

/* Login Section */
.promo-login-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

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

.security-card,
.daily-promos-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    height: 100%;
}

.security-card-title,
.daily-promos-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.security-card p,
.daily-promos-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.login-steps h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.step-number {
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: #e0e0e0;
    line-height: 1.4;
}

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

.daily-promotions {
    margin-bottom: 1rem;
}

.daily-promotions h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.daily-promo-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.daily-promo-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.promo-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.promo-desc {
    color: #e0e0e0;
    line-height: 1.4;
}

/* Monthly Promotions Section */
.monthly-promotions-section {
    padding: 4rem 0;
    background-color: #0f0f0f;
}

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

.calendar-card,
.birthday-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    height: 100%;
}

.calendar-title,
.birthday-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.calendar-card p,
.birthday-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.monthly-schedule,
.birthday-benefits {
    margin-bottom: 2rem;
}

.monthly-schedule h4,
.birthday-benefits h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.schedule-items,
.birthday-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-item,
.birthday-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.schedule-date {
    color: #ffd700;
    font-weight: 700;
    font-size: 0.9rem;
}

.schedule-title {
    color: #e0e0e0;
    font-weight: 600;
}

.schedule-bonus {
    color: #ffd700;
    font-weight: 700;
    font-size: 0.9rem;
}

.birthday-item {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.birthday-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.birthday-desc {
    color: #e0e0e0;
    line-height: 1.4;
}

.calendar-action {
    text-align: center;
}

/* How To Section */
.how-to-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.how-to-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.steps-card,
.terms-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    height: 100%;
}

.steps-title,
.terms-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.steps-card p,
.terms-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-steps {
    margin-bottom: 2rem;
}

.process-step {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-num {
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-title {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

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

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

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

.steps-action {
    text-align: center;
}

.terms-sections {
    margin-bottom: 1rem;
}

.terms-general,
.terms-specific {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.terms-general h4,
.terms-specific h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.terms-general ul,
.terms-specific ul {
    list-style: none;
    padding: 0;
}

.terms-general li,
.terms-specific li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.terms-general li::before,
.terms-specific li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Additional Bonuses Section */
.additional-bonuses-section {
    padding: 4rem 0;
    background-color: #0f0f0f;
}

.additional-bonuses-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.bonus-section,
.cashback-section,
.points-section {
    width: 100%;
}

.bonus-main-card,
.cashback-card,
.points-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
}

.bonus-main-title,
.cashback-title,
.points-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bonus-main-card p,
.cashback-card p,
.points-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-examples,
.cashback-examples,
.points-earning,
.points-rewards {
    margin-bottom: 2rem;
}

.bonus-examples h4,
.cashback-examples h4,
.points-earning h4,
.points-rewards h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.examples-list,
.cashback-items,
.earning-rates,
.rewards-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.example-item,
.cashback-item,
.earning-item,
.reward-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.example-deposit,
.loss-amount,
.game-type,
.reward-points {
    color: #e0e0e0;
    font-weight: 500;
}

.example-arrow,
.cashback-arrow,
.reward-equal {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.2rem;
}

.example-bonus,
.cashback-amount,
.points-earned,
.reward-prize {
    color: #ffd700;
    font-weight: 700;
}

.example-total {
    color: #e0e0e0;
    font-style: italic;
}

.bonus-main-action,
.points-action {
    text-align: center;
}

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

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

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

.faq-item:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.faq-question {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

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

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

/* Summary Section */
.summary-section {
    padding: 4rem 0;
    background-color: #0f0f0f;
}

.summary-content {
    margin-top: 2rem;
}

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

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

.summary-highlights,
.easy-steps,
.special-offer {
    margin-bottom: 3rem;
}

.highlights-title,
.easy-steps-title,
.special-offer-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.highlight-icon {
    font-size: 1.25rem;
    color: #ffd700;
    flex-shrink: 0;
}

.highlight-text {
    color: #e0e0e0;
    line-height: 1.4;
}

.easy-steps-list,
.special-offer-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.easy-step,
.special-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.easy-step-num {
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.easy-step-text,
.special-text {
    color: #e0e0e0;
    line-height: 1.4;
}

.special-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

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

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-description {
    margin-bottom: 2rem;
}

.final-cta-description p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    display: inline-block;
}

.final-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Footer Info Section */
.footer-info-section {
    padding: 2rem 0;
    background-color: #0a0a0a;
    border-top: 1px solid #333;
}

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

.footer-info-content p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info span {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Responsive Design for Promotion Page */
@media screen and (max-width: 1024px) {
    .promo-grid,
    .slots-content-grid,
    .vip-content-grid,
    .login-content-grid,
    .monthly-content-grid,
    .how-to-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .final-cta-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .content-container {
        padding: 0 15px;
    }

    .promo-hero-section,
    .promo-main-section,
    .promo-slots-section,
    .promo-vip-section,
    .promo-login-section,
    .monthly-promotions-section,
    .how-to-section,
    .additional-bonuses-section,
    .faq-section,
    .summary-section,
    .final-cta-section {
        padding: 3rem 0;
    }

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

    .promo-card,
    .slots-card,
    .bonus-card,
    .vip-card,
    .vip-levels-card,
    .security-card,
    .daily-promos-card,
    .calendar-card,
    .birthday-card,
    .steps-card,
    .terms-card,
    .bonus-main-card,
    .cashback-card,
    .points-card,
    .faq-item {
        padding: 1.5rem;
    }

    .promo-section-title {
        font-size: 1.75rem;
    }

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

    .promo-hero-description {
        font-size: 1.1rem;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

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

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

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .example-item,
    .cashback-item,
    .earning-item,
    .reward-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .example-arrow,
    .cashback-arrow,
    .reward-equal {
        align-self: center;
    }
}

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

    .promo-hero-section,
    .promo-main-section,
    .promo-slots-section,
    .promo-vip-section,
    .promo-login-section,
    .monthly-promotions-section,
    .how-to-section,
    .additional-bonuses-section,
    .faq-section,
    .summary-section,
    .final-cta-section {
        padding: 2rem 0;
    }

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

    .promo-section-title {
        font-size: 1.5rem;
    }

    .promo-hero-title {
        font-size: 1.75rem;
    }

    .promo-hero-description {
        font-size: 1rem;
    }

    .promo-hero-btn,
    .final-cta-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }

    .promo-card,
    .slots-card,
    .bonus-card,
    .vip-card,
    .vip-levels-card,
    .security-card,
    .daily-promos-card,
    .calendar-card,
    .birthday-card,
    .steps-card,
    .terms-card,
    .bonus-main-card,
    .cashback-card,
    .points-card,
    .faq-item {
        padding: 1rem;
    }

    .promo-card-title,
    .slots-card-title,
    .bonus-card-title,
    .vip-card-title,
    .vip-levels-title,
    .security-card-title,
    .daily-promos-title,
    .calendar-title,
    .birthday-title,
    .steps-title,
    .terms-title,
    .bonus-main-title,
    .cashback-title,
    .points-title,
    .faq-question {
        font-size: 1.25rem;
    }

    .process-step,
    .terms-general,
    .terms-specific {
        padding: 1rem;
    }

    .step-num {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .easy-step-num {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.9rem;
    }
}

.mobile-nav.active {
    animation: fadeIn 0.3s ease-in-out;
}

/* Active navigation states */
.nav-link.active,
.mobile-nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

.mobile-nav-link.active {
    background-color: transparent;
    border-bottom-color: #ffd700;
}

/* Header smooth transitions */
.main-header {
    transition: transform 0.3s ease-in-out;
}

/* Accessibility improvements */
.nav-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.nav-link:focus,
.nav-cta-btn:focus,
.mobile-nav-link:focus,
.mobile-nav-cta:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Enhanced hover effects */
.nav-item:hover .nav-link {
    transform: translateY(-1px);
}

/* Loading animation for mobile menu */
.mobile-nav {
    transition: all 0.3s ease-in-out;
    transform: translateY(-10px);
    opacity: 0;
}

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

/* Improved responsive typography */
@media screen and (max-width: 360px) {
    .nav-container {
        padding: 0 8px;
    }

    .mobile-nav-link {
        font-size: 15px;
    }

    .mobile-nav-cta {
        font-size: 15px;
        padding: 10px 14px;
    }
}

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

/* Section Title Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-cta-secondary {
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
    border: 2px solid #ffd700;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta-secondary:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
}

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

/* Demo Game Section */
.demo-game-section {
    background: #0f0f0f;
    padding: 80px 0;
}

.demo-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.demo-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.slot-machine-demo {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.slot-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: #000;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #ffd700;
}

.reel {
    width: 80px;
    height: 120px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.symbol {
    font-size: 2.5rem;
    line-height: 1;
    transition: transform 0.1s ease;
}

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

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

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

.spin-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.demo-credits {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 600;
}

/* Entry Section */
.entry-section {
    background: #1a1a1a;
    padding: 80px 0;
}

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

.entry-card {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.entry-card:hover {
    transform: translateY(-5px);
}

.entry-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.entry-card-description {
    color: #cccccc;
    line-height: 1.6;
}

.entry-image {
    text-align: center;
    margin-top: 2rem;
}

.entry-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Slots Section */
.slots-section {
    background: #0f0f0f;
    padding: 80px 0;
}

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

.slots-feature {
    margin-bottom: 2.5rem;
}

.slots-feature:last-child {
    margin-bottom: 0;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
}

.slots-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Registration Section */
.registration-section {
    background: #1a1a1a;
    padding: 80px 0;
}

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

.reg-card {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.reg-card:hover {
    transform: translateY(-5px);
}

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

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

.reg-description {
    color: #cccccc;
    line-height: 1.6;
}

.reg-additional {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.reg-additional p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

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

.registration-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* VIP Section */
.vip-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 80px 0;
}

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

.vip-feature {
    margin-bottom: 2.5rem;
}

.vip-feature:last-child {
    margin-bottom: 0;
}

.vip-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.vip-feature-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vip-feature-additional {
    color: #cccccc;
    line-height: 1.6;
}

.vip-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.promotions-section {
    background: #1a1a1a;
    padding: 80px 0;
}

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

.promo-card {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    right: 20px;
}

.promo-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.promo-description {
    color: #cccccc;
    line-height: 1.6;
}

.promotions-additional {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.promotions-additional p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.promotions-additional p:last-child {
    margin-bottom: 0;
}

.promotions-additional a {
    color: #ffd700;
    text-decoration: none;
}

.promotions-additional a:hover {
    text-decoration: underline;
}

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

.promotions-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    background: #0f0f0f;
    padding: 80px 0;
}

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

.faq-group-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #cccccc;
    line-height: 1.6;
}

.faq-answer ol, .faq-answer ul {
    margin: 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
}

.cta-description, .cta-community {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-highlight {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 700px;
    font-size: 1.2rem;
}

.cta-actions {
    margin: 3rem 0;
}

.cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.contact-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 600px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.contact-list li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.cta-closing {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 900px;
    margin: 2rem auto 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .slots-content, .vip-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .entry-grid, .registration-grid, .promotions-grid {
        grid-template-columns: 1fr;
    }

    .demo-title, .cta-title {
        font-size: 2rem;
    }

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

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

    .symbol {
        font-size: 2rem;
    }

    .content-container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-primary, .hero-cta-secondary {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title, .demo-title, .cta-title {
        font-size: 1.6rem;
    }

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

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

    .symbol {
        font-size: 1.5rem;
    }

    .spin-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .content-container {
        padding: 0 10px;
    }

    .reg-card, .promo-card, .faq-item {
        padding: 1.5rem;
    }

    .cta-highlight {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
        width: 100%;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #0a0a0a;
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    padding: 1rem 0;
}

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

.sticky-btn {
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    flex: 1;
    max-width: 200px;
    white-space: nowrap;
}

.sticky-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.sticky-btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: 2px solid #ffd700;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .main-footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-container {
        padding: 0 15px;
    }
}

/* Responsive Sticky Buttons */
@media screen and (max-width: 768px) {
    .sticky-container {
        padding: 0 15px;
        gap: 0.5rem;
    }

    .sticky-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
        max-width: none;
        flex: 1;
    }

    .sticky-buttons {
        padding: 0.8rem 0;
    }
}

@media screen and (max-width: 480px) {
    .footer-nav {
        gap: 0.3rem;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .sticky-container {
        padding: 0 10px;
        gap: 0.4rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 9px 12px;
    }

    .sticky-buttons {
        padding: 0.7rem 0;
    }

    .footer-container {
        padding: 0 10px;
    }
}

/* Ensure sticky buttons don't obscure footer */
body {
    padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding-bottom: 65px;
    }
}

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

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

.login-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
}

.login-form-wrapper {
    width: 100%;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.login-form {
    width: 100%;
}

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

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

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Sarabun', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
}

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

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

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    width: 100%;
}

.login-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: 2px solid #ffd700;
}

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

.login-btn.secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

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

/* Responsive Design for Login Page */
@media screen and (max-width: 768px) {
    .login-section {
        padding: 60px 0;
        min-height: calc(100vh - 70px);
    }

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

    .login-form-wrapper {
        padding: 2rem;
        margin: 0 10px;
    }

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

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

@media screen and (max-width: 480px) {
    .login-section {
        padding: 40px 0;
    }

    .login-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .login-form-wrapper {
        padding: 1.5rem;
        border-radius: 15px;
    }

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

    .login-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-height: 45px;
    }
}

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

.register-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.register-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.register-form {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
}

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

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

.register-form .form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #333;
    border-radius: 12px;
    background-color: #0f0f0f;
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.register-form .form-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
}

.register-form .form-input::placeholder {
    color: #888;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    width: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: 2px solid #ffd700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    border: 2px solid #ffd700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    width: 100%;
    background: transparent;
    color: #ffd700;
}

.btn-outline:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* Responsive Design for Register Page */
@media screen and (max-width: 768px) {
    .register-section {
        padding: 60px 0;
        min-height: calc(100vh - 70px);
    }

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

    .register-form {
        padding: 2rem;
        margin: 0 10px;
    }

    .register-form .form-input {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

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

@media screen and (max-width: 480px) {
    .register-section {
        padding: 40px 0;
    }

    .register-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .register-form {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .register-form .form-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .btn-primary, .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-height: 45px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-page .content-container {
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.privacy-policy-page article {
    line-height: 1.8;
}

.privacy-policy-page h1 {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
    font-weight: 700;
}

.privacy-policy-page h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    font-weight: 600;
}

.privacy-policy-page h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

.privacy-policy-page strong {
    color: #ffd700;
    font-weight: 600;
}

.privacy-policy-page section {
    margin-bottom: 2.5rem;
}

.privacy-policy-page section:last-child {
    margin-bottom: 0;
}

/* Privacy Policy Responsive Styles */
@media screen and (max-width: 1024px) {
    .privacy-policy-page .content-container {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .privacy-policy-page h1 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .privacy-policy-page h2 {
        font-size: 1.6rem;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .privacy-policy-page h3 {
        font-size: 1.3rem;
        margin-top: 1.75rem;
        margin-bottom: 0.875rem;
    }
}

@media screen and (max-width: 768px) {
    .privacy-policy-page .content-container {
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 15px;
    }

    .privacy-policy-page h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .privacy-policy-page h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

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

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

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

@media screen and (max-width: 480px) {
    .privacy-policy-page .content-container {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.75rem;
        border-radius: 10px;
    }

    .privacy-policy-page h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .privacy-policy-page h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }

    .privacy-policy-page h3 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.625rem;
        line-height: 1.3;
    }

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

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

    .privacy-policy-page section {
        margin-bottom: 2rem;
    }
}

/* Terms and Conditions Page Styles */
.terms-conditions-page .content-container {
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.terms-conditions-page article {
    line-height: 1.8;
}

.terms-conditions-page h1 {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
    font-weight: 700;
}

.terms-conditions-page h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    font-weight: 600;
}

.terms-conditions-page h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-conditions-page p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terms-conditions-page ul,
.terms-conditions-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.terms-conditions-page li {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.terms-conditions-page ul li {
    list-style-type: disc;
}

.terms-conditions-page ol li {
    list-style-type: decimal;
}

.terms-conditions-page strong {
    color: #ffd700;
    font-weight: 600;
}

.terms-conditions-page section {
    margin-bottom: 2.5rem;
}

.terms-conditions-page section:last-child {
    margin-bottom: 0;
}

/* Terms and Conditions Responsive Styles */
@media screen and (max-width: 1024px) {
    .terms-conditions-page .content-container {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    .terms-conditions-page h1 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    .terms-conditions-page h2 {
        font-size: 1.6rem;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
    }
    .terms-conditions-page h3 {
        font-size: 1.3rem;
        margin-top: 1.75rem;
        margin-bottom: 0.875rem;
    }
}

@media screen and (max-width: 768px) {
    .terms-conditions-page .content-container {
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 15px;
    }
    .terms-conditions-page h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .terms-conditions-page h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .terms-conditions-page h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    .terms-conditions-page p,
    .terms-conditions-page li {
        font-size: 0.95rem;
    }
    .terms-conditions-page ul,
    .terms-conditions-page ol {
        padding-left: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .terms-conditions-page .content-container {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.75rem;
        border-radius: 10px;
    }
    .terms-conditions-page h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    .terms-conditions-page h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }
    .terms-conditions-page h3 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.625rem;
        line-height: 1.3;
    }
    .terms-conditions-page p,
    .terms-conditions-page li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .terms-conditions-page ul,
    .terms-conditions-page ol {
        padding-left: 1.25rem;
    }
    .terms-conditions-page section {
        margin-bottom: 2rem;
    }
}