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

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

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

/* Header Styles */
.site-header {
    background-color: #1a1a1a;
    border-bottom: 2px solid #ff6b35;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
}

.navbar {
    position: relative;
}

.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 {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #ff6b35;
    transform: scale(1.05);
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffaa00);
    transform: translateX(0);
    transition: transform 0.3s ease;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle:hover .hamburger-line {
    background-color: #ff6b35;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

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

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

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(10px);
}

.mobile-cta-button {
    display: block;
    margin-top: 15px;
    padding: 15px 24px;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

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

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

    .nav-menu {
        display: none;
    }

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

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

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

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

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

    .mobile-cta-button {
        font-size: 16px;
        padding: 12px 20px;
    }
}

/* Additional Animation Effects */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-menu.active {
    animation: slideInDown 0.3s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Active Page State */
.nav-link.active-page,
.mobile-nav-link.active-page {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.nav-link.active-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffaa00);
}

/* Header backdrop blur effect */
.site-header {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.nav-link:focus,
.mobile-nav-link:focus,
.cta-button:focus,
.mobile-cta-button:focus,
.logo-link:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Promotion Page Styles */

/* Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 0;
    border-bottom: 3px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transform: translateY(0);
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

/* Section Common Styles */
section {
    padding: 4rem 0;
}

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

section:nth-child(odd) {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

/* Free Credit Section */
.free-credit-section {
    position: relative;
}

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

.credit-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 170, 0, 0.05) 100%);
    pointer-events: none;
}

.credit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

.primary-card {
    border-color: #ff6b35;
}

.secondary-card {
    border-color: #ffaa00;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.promotion-details {
    margin-bottom: 2rem;
}

.promotion-details h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.details-list li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 0;
    line-height: 1.4;
}

.card-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

/* Slot Promotions */
.promotion-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.promo-item {
    flex: 1;
    min-width: 450px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

.promo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.bonus-details,
.cashback-details {
    margin-bottom: 2rem;
}

.bonus-details h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.promo-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

/* VIP Program */
.vip-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.vip-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.vip-levels-title {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
}

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

.vip-tier {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vip-tier.bronze {
    border-color: #cd7f32;
}

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

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

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

.vip-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.tier-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

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

.tier-benefits li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.vip-cta-wrapper {
    text-align: center;
}

.vip-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.vip-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

/* Game Promotions */
.game-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.game-promo-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.game-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

.game-promo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-promo-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-promo-details {
    margin-bottom: 1.5rem;
}

.game-promo-details h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.game-promo-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.game-promo-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

/* Sports Betting */
.sports-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.sports-promo {
    flex: 1;
    min-width: 450px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.sports-promo:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

.sports-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.sports-details {
    margin-bottom: 1rem;
}

.sports-details h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Mobile App */
.app-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.app-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.app-steps,
.app-benefits {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 1.5rem;
}

.app-steps h4,
.app-benefits h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.steps-list,
.benefits-list {
    color: #cccccc;
    padding-left: 1rem;
}

.steps-list li,
.benefits-list li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.app-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.app-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

/* How to Get */
.how-to-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.how-to-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.step-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: left;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

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

.step-details {
    color: #cccccc;
    padding-left: 1rem;
}

.step-details li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.how-to-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.how-to-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

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

.terms-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

.terms-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.terms-list li {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Monthly Promotions */
.monthly-content {
    max-width: 900px;
    margin: 0 auto;
}

.monthly-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-table {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    padding: 1rem;
}

.header-cell {
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(255, 107, 53, 0.1);
}

.table-cell {
    color: #cccccc;
    text-align: center;
    padding: 0.5rem;
}

.festival-promotions {
    margin-bottom: 3rem;
}

.festival-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.festival-description {
    color: #cccccc;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.festival-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.festival-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

.monthly-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.monthly-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.faq-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

/* Summary Section */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.summary-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: #ffaa00;
}

.summary-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-list {
    color: #cccccc;
    padding-left: 1.5rem;
}

.summary-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.final-cta-wrapper {
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.final-message {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.final-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.final-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

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

.contact-info,
.service-info {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.contact-title,
.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-list {
    list-style: none;
    padding: 0;
    color: #cccccc;
}

.contact-list li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

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

.responsible-gaming {
    text-align: center;
    color: #888888;
    font-style: italic;
    margin-top: 2rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

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

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

    .credit-grid,
    .promotion-flex,
    .sports-flex,
    .game-promo-grid,
    .terms-grid,
    .faq-grid,
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .promo-item,
    .sports-promo {
        min-width: auto;
    }

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

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

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

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .header-cell,
    .table-cell {
        text-align: left;
        padding: 0.5rem 0;
    }

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

    section {
        padding: 2rem 0;
    }
}

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

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

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

    .credit-card,
    .promo-item,
    .sports-promo,
    .game-promo-card,
    .terms-card,
    .faq-item,
    .summary-card {
        padding: 1.5rem;
    }

    .card-title,
    .promo-title,
    .sports-title,
    .game-promo-title,
    .terms-title,
    .faq-question,
    .summary-title {
        font-size: 1.2rem;
    }

    .vip-title,
    .app-title,
    .how-to-title,
    .monthly-title,
    .festival-title {
        font-size: 1.5rem;
    }

    .contact-info,
    .service-info {
        padding: 1.5rem;
    }
}

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

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

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

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

.hero-btn.secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

/* Slot Demo Section */
.game-demo-section {
    background: #1a1a1a;
    padding: 4rem 0;
    position: relative;
}

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

.slot-machine {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.slot-header {
    text-align: center;
    margin-bottom: 2rem;
}

.slot-header h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.balance {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: #0f0f0f;
    padding: 1rem;
    border-radius: 10px;
    border: 3px solid #ff6b35;
}

.reel {
    background: #2d2d2d;
    border-radius: 8px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

@keyframes spin {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.symbol {
    font-size: 2.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.reel.winning {
    border-color: #ffaa00;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.5);
    animation: pulse 0.5s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.slot-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bet-controls label {
    color: #ffffff;
    font-weight: 600;
}

.bet-controls select {
    background: #2d2d2d;
    color: #ffffff;
    border: 1px solid #ff6b35;
    border-radius: 5px;
    padding: 0.5rem;
    font-size: 1rem;
}

.spin-button, .auto-spin-button {
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.auto-spin-button {
    background: linear-gradient(135deg, #666666, #888888);
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
}

.win-display {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 170, 0, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-top: 1rem;
}

.win-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffaa00;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.demo-info {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.demo-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.demo-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.demo-register-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.demo-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 4rem 0;
}

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

.feature-card {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

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

.feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Providers Section */
.providers-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

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

.provider-item {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.provider-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.provider-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.provider-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Access Section */
.access-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 4rem 0;
}

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

.access-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.access-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.access-methods {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.access-methods h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

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

.method-list li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.method-list i {
    color: #ff6b35;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Platform Section */
.platform-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

.platform-features {
    margin-top: 2rem;
}

.platform-content {
    margin-bottom: 3rem;
}

.platform-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.platform-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.platform-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.game-categories h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
}

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

.category-item {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.category-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.category-item h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.category-item p {
    color: #cccccc;
    line-height: 1.5;
}

/* Financial Section */
.financial-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 4rem 0;
}

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

.financial-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.financial-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.payment-methods {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.payment-methods h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.1);
}

.payment-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.payment-item h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.payment-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Tools Section */
.tools-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

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

.tools-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.tools-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tools-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.analysis-tools {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.analysis-tools h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tool-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.tool-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.1);
}

.tool-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tool-item h5 {
    font-family: 'Prompt', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.tool-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Promotions Section */
.promotions-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 4rem 0;
}

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

.promotion-main h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.promotion-main p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promotion-main img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.promotion-list {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.promotion-list h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.promo-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promo-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.promo-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.1);
}

.promo-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.promo-item h5 {
    font-family: 'Prompt', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.promo-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Support Section */
.support-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

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

.support-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-methods {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-methods h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

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

.final-cta-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 170, 0, 0.1));
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.cta-highlight h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 250px;
}

.cta-btn.primary-large {
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-btn.primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffaa00, #ff6b35);
}

.cta-btn.secondary-large {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

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

.final-cta-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 2rem;
}

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

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

.faq-item {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 3rem 0;
}

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

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.contact-info .contact-item:hover {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.05);
}

.contact-info .contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.contact-info .contact-item span {
    color: #ffffff;
    font-weight: 500;
}

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

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

.partner-info {
    text-align: center;
    color: #cccccc;
    font-style: italic;
    margin-top: 2rem;
}

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

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

/* Disclaimers Section */
.disclaimers-section {
    background: #1a1a1a;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.disclaimer-item {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.disclaimer-item:last-child {
    margin-bottom: 0;
}

.disclaimer-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.disclaimer-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

    .access-content,
    .financial-grid,
    .tools-grid,
    .promotions-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

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

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

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

    .hero-btn {
        min-width: 180px;
    }

    .slot-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

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

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        min-width: 200px;
    }
}

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

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

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

    .symbol {
        font-size: 2rem;
    }

    .reel {
        height: 80px;
    }

    .spin-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

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

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 2rem 0;
    margin-bottom: 80px; /* Space for sticky buttons */
}

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

.footer-legal-link {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-legal-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-top: 2px solid #ff6b35;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 0.25rem;
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.sticky-btn:hover::before {
    left: 100%;
}

.login-btn {
    background: linear-gradient(135deg, #666666, #888888);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-btn:hover {
    background: linear-gradient(135deg, #777777, #999999);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.register-btn {
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

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

.credit-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

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

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0;
        margin-bottom: 70px; /* Adjust for smaller sticky buttons */
    }

    .footer-legal {
        gap: 1rem;
        flex-direction: column;
    }

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

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

    .sticky-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        margin: 0 0.15rem;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1rem 0;
        margin-bottom: 65px; /* Adjust for even smaller sticky buttons */
    }

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

    .sticky-buttons {
        padding: 0.5rem 0.25rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        margin: 0 0.1rem;
        max-width: 120px;
        border-radius: 8px;
    }
}

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

.login-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 2px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.form-label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #333333;
    border-radius: 12px;
    background-color: #1a1a1a;
    color: #ffffff;
    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-color: #222222;
}

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

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

.login-btn, .register-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    outline: none;
}

.login-btn.primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.login-btn.primary:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ffad5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

.register-btn.outline:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Login Page Responsive Styles */
@media (max-width: 768px) {
    .login-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

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

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

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

@media (max-width: 480px) {
    .login-section {
        min-height: calc(100vh - 120px);
        padding: 1rem 0;
    }

    .login-container {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

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

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

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

/* Register Page Styles */
.register-container {
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.register-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.register-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ff6b35;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

.btn {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9500 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff8f00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.btn-outline:hover {
    background-color: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

/* Responsive Design for Register Page */
@media (max-width: 768px) {
    .register-container {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 120px);
    }

    .register-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

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

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

    .btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .register-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

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

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

/* Privacy Policy Page Styles */
.privacy-policy-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #333;
}

.page-header h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.effective-date,
.update-date {
    color: #cccccc;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
}

.policy-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

.policy-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.policy-section p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.policy-section li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section li::before {
    content: "•";
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.policy-section strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-info ul {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

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

.contact-info li::before {
    content: "📞";
    margin-right: 0.5rem;
}

.contact-info li:nth-child(2)::before {
    content: "💬";
}

.contact-info li:nth-child(3)::before {
    content: "✉️";
}

.contact-info li:nth-child(4)::before {
    content: "🌐";
}

.policy-section hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 2rem 0;
}

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

    .page-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .policy-section {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

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

    .policy-section h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }

    .contact-info ul {
        padding: 1rem;
    }
}

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

    .page-header h1 {
        font-size: 1.7rem;
        margin-bottom: 0.75rem;
    }

    .effective-date,
    .update-date {
        font-size: 0.9rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.5rem 0;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .policy-section li {
        padding-left: 1.25rem;
    }

    .contact-info ul {
        padding: 0.75rem;
    }
}