/* 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 */
.header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

.nav-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

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

/* CTA Button */
.header-cta {
    display: flex;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

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

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #d0d0d0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin: 3rem 0;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.cta-text {
    font-size: 1rem;
    color: #b0b0b0;
    max-width: 600px;
    text-align: center;
}

/* Slot Demo Section */
.slot-demo {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.slot-machine {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid #333;
    max-width: 400px;
    width: 100%;
}

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

.reel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 10px;
    border: 2px solid #555;
    overflow: hidden;
    position: relative;
}

.symbol {
    font-size: 2.5rem;
    animation: spin 0.5s ease-in-out;
}

@keyframes spin {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { transform: translateY(5px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.balance, .bet {
    background: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    border: 1px solid #555;
}

.balance span, .bet span {
    color: #ff6b35;
    font-weight: 700;
}

.spin-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.demo-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.demo-note i {
    color: #ff6b35;
    margin-right: 8px;
}

/* Section Layouts */
.games-section, .banking-section, .direct-web-section,
.features-section, .promotions-section, .support-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.games-section:nth-child(even), .banking-section:nth-child(even),
.direct-web-section:nth-child(even), .features-section:nth-child(even),
.promotions-section:nth-child(even), .support-section:nth-child(even) {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.games-intro, .banking-intro, .direct-intro, .features-intro,
.promotions-intro, .support-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.games-grid, .banking-grid, .certification-grid, .features-grid,
.promotions-grid, .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.game-category, .banking-method, .banking-process, .certification,
.security-system, .themed-games, .special-features, .new-member-bonus,
.monthly-promos, .contact-channels, .data-protection {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-title, .method-title, .process-title, .cert-title,
.security-title, .feature-title, .promo-title, .support-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.game-list, .method-list, .process-steps, .cert-list, .security-list,
.theme-list, .jackpot-list, .points-list, .bonus-list, .conditions-list,
.daily-list, .festival-list, .referral-list, .rates-list, .rewards-list,
.chat-benefits, .line-services, .email-services, .phone-services,
.protection-list, .rights-list, .verification-list, .aml-list,
.controls-list, .info-list {
    list-style: none;
    padding: 0;
}

.game-list li, .method-list li, .cert-list li, .security-list li,
.theme-list li, .bonus-list li, .daily-list li, .festival-list li,
.referral-list li, .rates-list li, .rewards-list li,
.chat-benefits li, .line-services li, .email-services li, .phone-services li,
.protection-list li, .verification-list li, .aml-list li,
.controls-list li, .info-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    color: #d0d0d0;
}

.game-list li:last-child, .method-list li:last-child, .cert-list li:last-child,
.security-list li:last-child, .theme-list li:last-child, .bonus-list li:last-child,
.daily-list li:last-child, .festival-list li:last-child, .referral-list li:last-child,
.rates-list li:last-child, .rewards-list li:last-child,
.chat-benefits li:last-child, .line-services li:last-child, .email-services li:last-child,
.phone-services li:last-child, .protection-list li:last-child, .verification-list li:last-child,
.aml-list li:last-child, .controls-list li:last-child, .info-list li:last-child {
    border-bottom: none;
}

.process-steps {
    counter-reset: step-counter;
}

.process-steps li, .conditions-list li, .rights-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    color: #d0d0d0;
    position: relative;
    padding-left: 3rem;
}

.process-steps li::before, .conditions-list li::before, .rights-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background: #ff6b35;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Images */
.games-image, .banking-image, .direct-image, .features-image,
.promotions-image, .support-image {
    text-align: center;
    margin: 3rem 0;
}

.games-image img, .banking-image img, .direct-image img,
.features-image img, .promotions-image img, .support-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Special Sections */
.banking-guarantee, .banking-advantages, .direct-advantages, .direct-warning,
.ai-features, .features-update, .promotions-note, .support-conclusion {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    margin: 2rem 0;
    color: #d0d0d0;
    line-height: 1.7;
}

.advantages-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff6b35;
}

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

.advantages-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    color: #d0d0d0;
    position: relative;
    padding-left: 2rem;
}

.advantages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

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

/* VIP Levels */
.vip-levels {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.vip-level {
    background: linear-gradient(135deg, #333, #2a2a2a);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.vip-level strong {
    color: #ff6b35;
    font-size: 1.1rem;
}

.vip-level ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.vip-level li {
    padding: 0.5rem 0;
    color: #d0d0d0;
    position: relative;
    padding-left: 1.5rem;
}

.vip-level li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

/* Other Games */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-games {
    list-style: none;
    padding: 0;
}

.category-games li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #444;
    color: #d0d0d0;
}

.category-games li:last-child {
    border-bottom: none;
}

/* Tournaments */
.tournaments {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #333;
    margin: 3rem 0;
}

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

.tournament-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    color: #d0d0d0;
    position: relative;
    padding-left: 2rem;
}

.tournament-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

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

/* Points System */
.points-rates, .points-rewards {
    margin-top: 1.5rem;
}

.points-rates h4, .points-rewards h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

/* Contact Methods */
.contact-method {
    margin-bottom: 2.5rem;
}

.contact-method h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: #d0d0d0;
    margin-bottom: 1rem;
}

/* Security Subsections */
.security-subsection {
    margin-top: 2rem;
}

.security-subsection h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

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

.faq-category {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-category-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ff6b35;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #d0d0d0;
    line-height: 1.7;
}

.faq-answer ul, .faq-answer ol {
    list-style-position: inside;
    margin: 1rem 0;
    padding-left: 1rem;
}

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

.faq-answer strong {
    color: #ff6b35;
}

.deposit-method, .transaction-time, .limits, .game-providers,
.new-member-promos, .rtp-rates {
    margin: 1.5rem 0;
}

.deposit-method strong, .transaction-time strong, .limits strong,
.game-providers strong, .new-member-promos strong, .rtp-rates strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background: #0a0a0a;
    border-top: 1px solid #333;
}

.disclaimer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.warning-notice {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 2rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
}

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

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

.contact-list li {
    color: #d0d0d0;
}

.additional-info, .site-info {
    color: #b0b0b0;
}

.additional-info a {
    color: #ff6b35;
    text-decoration: none;
}

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

/* CTAs */
.games-cta, .banking-cta, .direct-cta, .features-cta, .promotions-cta, .support-cta {
    text-align: center;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .games-grid, .banking-grid, .certification-grid, .features-grid,
    .promotions-grid, .support-grid {
        grid-template-columns: 1fr;
    }

    .game-categories {
        grid-template-columns: 1fr;
    }

    .vip-levels {
        gap: 1.5rem;
    }
}

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

    .hero {
        padding: 4rem 0;
    }

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

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

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

    .games-section, .banking-section, .direct-web-section,
    .features-section, .promotions-section, .support-section,
    .faq-section {
        padding: 4rem 0;
    }

    .game-category, .banking-method, .banking-process, .certification,
    .security-system, .themed-games, .special-features, .new-member-bonus,
    .monthly-promos, .contact-channels, .data-protection, .faq-category {
        padding: 2rem;
    }

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

    .slot-display {
        gap: 10px;
        padding: 15px;
    }

    .reel {
        height: 80px;
    }

    .symbol {
        font-size: 2rem;
    }

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

    .contact-list {
        flex-direction: column;
        gap: 1rem;
    }
}

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

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

    .cta-button.primary, .cta-button.secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }

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

    .reel {
        height: 60px;
    }

    .symbol {
        font-size: 1.5rem;
    }

    .balance, .bet {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .spin-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button i {
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

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

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
}

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

.nav-mobile-menu {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.nav-mobile-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

.nav-mobile-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-mobile-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.nav-mobile-cta i {
    font-size: 16px;
}

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

    .header-cta {
        display: none;
    }

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

    .header-container {
        padding: 0 16px;
        height: 60px;
    }

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

    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
        height: 55px;
    }

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

    .logo-text {
        font-size: 18px;
    }

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

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

@media (max-width: 768px) {
    main {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 12px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

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

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

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.95) 20%, #0a0a0a 100%);
    padding: 15px 0 20px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.sticky-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-btn-login {
    background: linear-gradient(135deg, #333333, #444444);
    color: #ffffff;
    border: 2px solid #555555;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #444444, #555555);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.sticky-btn-bonus {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.5);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .site-footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 3rem;
    }
}

/* Sticky Buttons Responsive Design */
@media (max-width: 768px) {
    .sticky-container {
        padding: 0 16px;
        gap: 10px;
    }

    .sticky-btn {
        padding: 12px 8px;
        font-size: 0.9rem;
        min-height: 48px;
    }
}

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

    .footer-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .sticky-container {
        padding: 0 12px;
        gap: 8px;
    }

    .sticky-btn {
        padding: 10px 6px;
        font-size: 0.85rem;
        min-height: 45px;
        border-radius: 20px;
    }

    .sticky-buttons {
        padding: 12px 0 18px;
    }
}

/* Add bottom padding to body to prevent content being hidden behind sticky buttons */
body {
    padding-bottom: 100px;
}

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

.login-content {
    max-width: 480px;
    width: 100%;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.form-label {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 4px;
}

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

.form-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: #1a1a1a;
}

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

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.login-btn, .register-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.login-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.register-btn {
    background: transparent;
    border: 2px solid #ff6b35 !important;
    color: #ff6b35;
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-container {
        padding: 20px 16px;
        min-height: 70vh;
    }

    .login-content {
        padding: 30px 24px;
        margin: 0 auto;
    }

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

    .form-input {
        padding: 14px 16px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .login-btn, .register-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

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

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

/* ========================================
   REGISTER PAGE STYLES
   ======================================== */

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.register-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.register-title {
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.2;
}

.register-form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 48px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Register Form Responsive */
@media (max-width: 768px) {
    .register-section {
        padding: 60px 20px;
        min-height: calc(100vh - 100px);
    }

    .register-container {
        gap: 32px;
    }

    .register-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .register-form {
        padding: 32px 24px;
        border-radius: 16px;
    }
}

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

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

    .register-form {
        padding: 24px 20px;
    }
}

/* Promotion Page Styles */

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

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Latest Promotions Section */
.latest-promotions {
    padding: 80px 0;
    background-color: #0f0f0f;
}

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

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

.promotion-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.promotion-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.promotion-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.promotion-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.promotion-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #d0d0d0;
    line-height: 1.6;
}

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

/* About Superflik Section */
.about-superflik {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #e0e0e0;
}

.features-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

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

.feature-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333333;
    color: #d0d0d0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
}

/* How to Get Credit Section */
.how-to-get-credit {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.how-to-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.how-to-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.how-to-card:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.how-to-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.steps-list, .conditions-list {
    margin-bottom: 30px;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    color: #d0d0d0;
    line-height: 1.6;
}

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

.conditions-list {
    list-style: none;
}

.conditions-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #d0d0d0;
    line-height: 1.6;
}

.conditions-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #ff6b35;
}

/* Game Promotions Section */
.game-promotions {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.game-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.game-promo-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.game-promo-card:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.game-promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.game-promo-list {
    list-style: none;
}

.game-promo-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #d0d0d0;
    line-height: 1.6;
}

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

.game-cta {
    text-align: center;
}

/* Financial System Section */
.financial-system {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.financial-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.financial-card:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.financial-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.financial-list {
    list-style: none;
}

.financial-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #d0d0d0;
    line-height: 1.6;
}

.financial-list li::before {
    content: '💳';
    position: absolute;
    left: 0;
}

.financial-cta {
    text-align: center;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.security-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.security-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.security-list {
    list-style: none;
}

.security-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #d0d0d0;
    line-height: 1.6;
}

.security-list li::before {
    content: '🔒';
    position: absolute;
    left: 0;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

.faq-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6b35;
}

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

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 15px;
    color: #d0d0d0;
    line-height: 1.6;
}

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

.contact-list a:hover {
    color: #f7931e;
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
}

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

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

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

.summary-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.summary-cta {
    margin: 50px 0;
}

.summary-contact {
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.summary-contact p {
    color: #d0d0d0;
    font-size: 1.1rem;
}

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

.summary-contact a:hover {
    color: #f7931e;
    text-decoration: underline;
}

/* CTA Button Enhancements */
.cta-button.large {
    font-size: 1.4rem;
    padding: 20px 50px;
}

/* Promotion Page Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

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

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

    .how-to-grid, .financial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-promotion {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .promotion-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .promotion-card {
        padding: 30px 25px;
    }

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

    .game-promo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .about-superflik, .latest-promotions, .how-to-get-credit,
    .game-promotions, .financial-system, .security-section,
    .faq-section, .contact-section, .summary-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-promotion {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

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

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .promotion-card, .how-to-card, .financial-card,
    .security-card, .contact-card {
        padding: 25px 20px;
    }

    .promotion-title, .how-to-title, .financial-title,
    .security-title, .contact-title, .game-promo-title {
        font-size: 1.3rem;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .cta-button.large {
        font-size: 1.2rem;
        padding: 16px 40px;
    }

    .about-superflik, .latest-promotions, .how-to-get-credit,
    .game-promotions, .financial-system, .security-section,
    .faq-section, .contact-section, .summary-section {
        padding: 40px 0;
    }
}

/* Privacy Policy Styles */
.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.privacy-policy-content {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #333333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-policy-content h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 20px;
}

.privacy-policy-content h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444444;
}

.privacy-policy-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-policy-content p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

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

.privacy-policy-content ul {
    margin: 15px 0 20px 30px;
    color: #e0e0e0;
}

.privacy-policy-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-policy-content hr {
    border: none;
    border-top: 2px solid #444444;
    margin: 40px 0;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 20px 15px;
    }

    .privacy-policy-content {
        padding: 30px 25px;
    }

    .privacy-policy-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .privacy-policy-content h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .privacy-policy-content h3 {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .privacy-policy-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .privacy-policy-content ul {
        margin-left: 25px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 15px 10px;
    }

    .privacy-policy-content {
        padding: 25px 20px;
    }

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

    .privacy-policy-content h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .privacy-policy-content h3 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .privacy-policy-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .privacy-policy-content ul {
        margin-left: 20px;
    }

    .privacy-policy-content ul li {
        margin-bottom: 6px;
    }
}