/* PGONLY - Dark Mode CSS Styles */

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-content {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo Styles */
.logo {
    display: flex !important;
    align-items: center;
    z-index: 1001;
    visibility: visible !important;
    opacity: 1 !important;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

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

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #ff6b35;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

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

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

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

/* CTA Button */
.header-cta {
    display: flex !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

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

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

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

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

.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);
    background: #ff6b35;
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 80px 20px 20px;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-item {
    margin: 0 0 24px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.nav-mobile.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile.active .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
.nav-mobile.active .mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav-link i {
    font-size: 20px;
    width: 24px;
}

/* Mobile CTA Button */
.mobile-cta {
    margin-top: 16px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    width: 100%;
}

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

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

/* Main Content Spacing */
main {
    margin-top: 80px;
}

/* Responsive Design */
/* Desktop Navigation - Show on larger screens */
@media (min-width: 769px) {
    .nav-desktop,
    .header-cta {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
}

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

    .header-content {
        padding: 12px 0;
    }

    .nav-desktop,
    .header-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

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

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

    main {
        margin-top: 70px;
    }
}

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

    .mobile-nav-content {
        padding: 70px 16px 16px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 14px 20px;
    }

    .mobile-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Scrolled Header Effect */
.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.nav-link:focus,
.cta-button:focus,
.mobile-nav-link:focus,
.mobile-cta-button:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .nav-link:hover,
    .mobile-nav-link:hover {
        background: rgba(255, 107, 53, 0.2);
        border: 1px solid #ff6b35;
    }
}

/* Homepage Styles */

/* Section Common Styles */
.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-title {
    text-align: center;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary.large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 0, 0, 0.8));
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-description {
    font-size: 1.125rem;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

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

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

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

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slot-title {
    font-size: 1.5rem;
    color: #ff6b35;
}

.slot-balance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.balance-label,
.balance-currency {
    color: #b0b0b0;
}

.balance-amount {
    color: #ffffff;
    font-size: 1.25rem;
}

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

.reel {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 1rem 0;
    text-align: center;
    border: 1px solid #444444;
    position: relative;
    overflow: hidden;
}

.symbol {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    transition: transform 0.3s ease;
}

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

@keyframes spin {
    0% { transform: translateY(0); }
    25% { transform: translateY(-20px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(20px); }
    100% { transform: translateY(0); }
}

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

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

.bet-select {
    background: #2a2a2a;
    border: 1px solid #444444;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 8px;
    font-family: 'Sarabun', sans-serif;
}

.spin-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.win-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: end;
    font-weight: 700;
}

.win-label,
.win-currency {
    color: #b0b0b0;
}

.win-amount {
    color: #4ade80;
    font-size: 1.25rem;
}

.demo-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-features h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.demo-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d0d0d0;
}

.demo-features li i {
    color: #4ade80;
    width: 16px;
}

.play-real-cta {
    text-align: center;
}

.play-real-cta p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Wallet Section */
.wallet-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.security-features {
    margin: 2rem 0;
}

.security-features h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.wallet-benefits h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

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

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

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

.benefit-item i {
    color: #ff6b35;
    font-size: 1.25rem;
    width: 24px;
    flex-shrink: 0;
}

.wallet-visual {
    text-align: center;
}

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

/* Games Section */
.games-section {
    padding: 80px 0;
    background: #111111;
}

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

.games-list h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.popular-games {
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.game-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.game-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.game-info h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.trial-system {
    margin-top: 2rem;
}

.trial-system h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.games-visual {
    text-align: center;
}

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

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

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

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

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

.new-member-promos {
    margin: 2rem 0;
}

.new-member-promos h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.promo-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.daily-promos h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.daily-schedule {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.day-promo {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.day-name {
    font-weight: 700;
    color: #ff6b35;
}

.promo-name {
    color: #ffffff;
    font-weight: 700;
}

.day-promo p {
    color: #d0d0d0;
    margin: 0;
}

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

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

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

.registration-steps h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.steps-container {
    display: grid;
    gap: 1.5rem;
}

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

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

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

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #b0b0b0;
    margin: 0;
}

.login-info {
    margin: 2rem 0;
}

.login-info h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-list {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

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

.contact-item i {
    color: #ff6b35;
    font-size: 1.25rem;
    width: 24px;
    flex-shrink: 0;
}

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

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

/* Responsible Gaming Section */
.responsible-gaming-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.responsible-gaming-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.policy-section h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.policy-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

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

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

.feature-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #b0b0b0;
    margin: 0;
}

.external-link {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.external-link a {
    color: #ff6b35;
    text-decoration: none;
}

.external-link a:hover {
    text-decoration: underline;
}

.after-sales-service {
    margin: 3rem 0;
}

.after-sales-service h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.service-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

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

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

.service-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.service-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #b0b0b0;
    margin: 0;
}

.conclusion {
    margin: 3rem 0;
}

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

.cta-description {
    margin-top: 1rem;
    color: #b0b0b0;
    font-style: italic;
}

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .hero-content,
    .wallet-grid,
    .games-content,
    .promotions-grid,
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .policy-features {
        grid-template-columns: 1fr;
    }
}

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

    .demo-section,
    .wallet-section,
    .games-section,
    .promotions-section,
    .registration-section,
    .responsible-gaming-section {
        padding: 60px 0;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .win-display {
        justify-self: center;
    }

    .slot-reels {
        padding: 1rem;
    }

    .symbol {
        font-size: 2rem;
    }

    .day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

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

    .demo-section,
    .wallet-section,
    .games-section,
    .promotions-section,
    .registration-section,
    .responsible-gaming-section {
        padding: 40px 0;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .slot-machine {
        padding: 1rem;
    }

    .slot-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .demo-info {
        padding: 1.5rem;
    }

    .step-item,
    .service-item,
    .feature-item {
        padding: 1rem;
    }

    .step-number,
    .service-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 60px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

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

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

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

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    min-height: 60px;
}

.sticky-btn i {
    font-size: 18px;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.sticky-btn span {
    font-family: 'Sarabun', sans-serif;
    font-size: 13px;
    line-height: 1.2;
}

.sticky-btn:hover i {
    transform: scale(1.1);
}

.sticky-btn:active {
    transform: scale(0.95);
}

/* Sticky Button Variants */
.sticky-login {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-login:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.sticky-register {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.1));
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.sticky-register:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.2));
    border-color: rgba(255, 107, 53, 0.5);
    color: #ff6b35;
    transform: translateY(-2px);
}

.sticky-credit {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: 1px solid transparent;
}

.sticky-credit:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }

    .footer-links {
        gap: 24px;
        flex-direction: column;
    }

    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
        margin-top: 30px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-link {
        font-size: 12px;
    }
}

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

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

    .sticky-btn {
        padding: 10px 12px;
        min-height: 55px;
        border-radius: 10px;
        max-width: none;
    }

    .sticky-btn i {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .sticky-btn span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        padding: 8px 0;
    }

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

    .sticky-btn {
        padding: 8px 10px;
        min-height: 50px;
        border-radius: 8px;
    }

    .sticky-btn i {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .sticky-btn span {
        font-size: 11px;
    }
}

/* Add bottom margin to main content to account for sticky buttons */
main {
    margin-bottom: 90px;
}

@media (max-width: 768px) {
    main {
        margin-bottom: 80px;
    }
}

@media (max-width: 480px) {
    main {
        margin-bottom: 70px;
    }
}

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    width: 100%;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    -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;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.form-label i {
    color: #ff6b35;
    width: 16px;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Sarabun', sans-serif;
}

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

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

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: #ff6b35;
}

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

.login-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.register-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Responsive Login Styles */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 0 30px;
    }

    .login-container {
        max-width: 380px;
        padding: 30px 25px;
        margin: 0 20px;
    }

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

    .form-input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .login-btn,
    .register-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 90px 0 20px;
    }

    .login-container {
        max-width: 320px;
        padding: 25px 20px;
        margin: 0 15px;
    }

    .login-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .login-btn,
    .register-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Login Form Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container {
    animation: fadeInUp 0.6s ease-out;
}

.form-group {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-actions { animation-delay: 0.3s; }

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

.register-section::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 80% 60%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.register-container {
    max-width: 450px;
    width: 100%;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.register-title {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 35px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

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

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9e9e9e;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #ff6b35;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.btn-register {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

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

.btn-login {
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

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

/* Responsive Register Styles */
@media (max-width: 768px) {
    .register-section {
        padding: 100px 0 30px;
    }

    .register-container {
        max-width: 380px;
        padding: 30px 25px;
        margin: 0 20px;
    }

    .register-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .btn-register,
    .btn-login {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 90px 0 20px;
    }

    .register-container {
        max-width: 320px;
        padding: 25px 20px;
        margin: 0 15px;
    }

    .register-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .btn-register,
    .btn-login {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Register Form Animation */
.register-container {
    animation: fadeInUp 0.6s ease-out;
}

.register-form .form-group {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.register-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.register-form .form-group:nth-child(2) { animation-delay: 0.2s; }

/* =================================================================== */
/* PROMOTION PAGE STYLES */
/* =================================================================== */

/* Promotion Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(0, 0, 0, 0.9));
    padding: 120px 0 80px;
}

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

.promotion-hero .hero-title {
    font-size: 2.8rem;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
}

.promotion-hero .hero-description {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
}

/* Promotion Sections */
.free-credits-section,
.promotion-wallet,
.campaigns-section,
.vip-section,
.festival-section,
.security-section,
.terms-section,
.faq-section,
.final-section {
    padding: 80px 0;
}

.free-credits-section {
    background: #111111;
}

.promotion-wallet {
    background: #0f0f0f;
}

.campaigns-section {
    background: #111111;
}

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

.festival-section {
    background: #111111;
}

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

.terms-section {
    background: #111111;
}

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

.final-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 0, 0, 0.9));
    text-align: center;
}

/* Promo Cards */
.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promo-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.promo-card.featured {
    border-color: rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #2a1a1a, #3a2a2a);
    transform: scale(1.02);
}

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

.promo-title {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.promo-section-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.promo-benefits,
.cashback-benefits {
    space-y: 1rem;
}

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

.benefit-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.benefit-item i {
    color: #ff6b35;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Wallet Features */
.wallet-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.feature-item i {
    color: #ff6b35;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item span {
    color: #e0e0e0;
    font-weight: 500;
}

/* Cashback Promo */
.cashback-promo {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.cashback-title {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Campaign Cards */
.campaigns-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.campaign-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.campaign-card.large {
    grid-row: span 2;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.campaign-title {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rewards-title,
.bonus-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rewards-list {
    margin-bottom: 2rem;
}

.reward-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.reward-item.first-prize {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.prize-position {
    color: #b0b0b0;
    font-weight: 600;
}

.prize-amount {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Participation Steps */
.participation-steps {
    margin-top: 2rem;
}

.steps-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    space-y: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Bonus Tiers */
.bonus-tiers {
    margin-bottom: 1.5rem;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tier-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.deposit-amount {
    color: #b0b0b0;
    font-weight: 600;
}

.get-amount {
    color: #ff6b35;
    font-weight: 700;
}

.campaign-note {
    text-align: center;
    color: #d0d0d0;
    font-style: italic;
}

/* VIP Section */
.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tier-card {
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

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

.tier-card.silver {
    background: linear-gradient(135deg, #c0c0c0, #888888);
}

.tier-card.gold {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.tier-card.platinum {
    background: linear-gradient(135deg, #e5e4e2, #a8a8a8);
}

.tier-card.diamond {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
}

.tier-name {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.tier-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
}

.advantages-list,
.app-features {
    space-y: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.advantage-item i {
    color: #ff6b35;
    font-size: 20px;
    flex-shrink: 0;
}

/* Mobile App Promo */
.mobile-app-promo {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.app-title {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-align: center;
}

.app-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Festival Cards */
.festival-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.festival-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.festival-card.featured {
    border-color: rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #2a1a1a, #3a2a2a);
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.festival-title {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-title,
.daily-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-details,
.daily-credits {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 12px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
}

.detail-item i {
    color: #ff6b35;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.day-credit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.date {
    color: #b0b0b0;
    font-weight: 600;
}

.amount {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

.register-note {
    text-align: center;
    color: #d0d0d0;
    font-style: italic;
    margin-top: 1rem;
}

/* Grand Prizes */
.grand-prizes {
    margin-top: 2rem;
}

.prizes-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.prizes-list {
    space-y: 1rem;
}

.prize-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.prize-item.grand {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.prize-rank {
    color: #b0b0b0;
    font-weight: 600;
}

.prize-value {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Security Section */
.license-list,
.guarantee-list {
    space-y: 1rem;
    margin-bottom: 2rem;
}

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

.license-item:hover,
.guarantee-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.license-item i,
.guarantee-item i {
    color: #ff6b35;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-title,
.contact-title,
.terms-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.licenses-title,
.guarantee-title,
.contact-subtitle,
.terms-subtitle {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

/* Contact Methods */
.contact-methods {
    space-y: 1.5rem;
    margin-bottom: 3rem;
}

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

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.contact-item i {
    color: #ff6b35;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    color: #b0b0b0;
    font-weight: 600;
}

.contact-value {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Terms Section */
.terms-section-block {
    margin-bottom: 3rem;
}

.terms-list,
.withdrawal-terms {
    space-y: 1rem;
}

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

.term-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.term-item i {
    color: #ff6b35;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-list {
    space-y: 2rem;
}

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

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

.faq-question h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Final Section */
.final-content {
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-text {
    margin-bottom: 3rem;
}

.conclusion-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-detail .contact-label {
    color: #b0b0b0;
    font-weight: 600;
}

.contact-detail .contact-value {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

.update-info {
    color: #888888;
    font-style: italic;
}

/* Call to Action Buttons */
.promo-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.btn-primary.large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

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

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

    .promo-cards {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .free-credits-section,
    .promotion-wallet,
    .campaigns-section,
    .vip-section,
    .festival-section,
    .security-section,
    .terms-section,
    .faq-section,
    .final-section {
        padding: 60px 0;
    }

    .promo-card {
        padding: 2rem;
    }

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

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

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

    .campaign-title,
    .festival-title {
        font-size: 1.5rem;
    }

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

    .contact-methods {
        space-y: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .wallet-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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

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

    .promotion-hero .hero-title {
        font-size: 1.7rem;
    }

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

    .promo-card {
        padding: 1.5rem;
    }

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

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

    .campaign-card,
    .festival-card {
        padding: 2rem;
    }

    .cashback-promo,
    .mobile-app-promo {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .btn-primary.large {
        padding: 16px 24px;
        font-size: 1.1rem;
    }

    .vip-tiers {
        grid-template-columns: 1fr;
    }

    .tier-card {
        padding: 1.2rem;
    }

    .step-item,
    .benefit-item,
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .reward-item,
    .tier-item,
    .day-credit,
    .prize-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
.register-form .form-actions { animation-delay: 0.3s; }