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

/* Root Variables - Dark Mode Only */
:root {
    --primary-color: #ffd700;
    --secondary-color: #ff6b35;
    --accent-color: #00d4ff;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* 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 var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px var(--shadow-dark);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(360deg);
}

.logo-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: var(--gradient-secondary);
}

.cta-button i {
    font-size: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.nav-mobile.active {
    transform: translateX(0);
}

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

.nav-mobile-list li {
    border-bottom: 1px solid var(--border-color);
}

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

.nav-mobile-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-mobile-link:hover {
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

.cta-button-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 10px 20px;
    border-radius: 25px;
    justify-content: center;
}

.cta-button-mobile:hover {
    background: var(--gradient-secondary);
}

.cta-button-mobile i {
    font-size: 1rem;
}

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

    .nav-wrapper {
        height: 60px;
    }

    .logo {
        font-size: 1.3rem;
    }

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

    .nav-desktop {
        display: none;
    }

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

    .nav-mobile {
        top: 60px;
    }
}

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

    .nav-wrapper {
        height: 55px;
    }

    .logo {
        font-size: 1.2rem;
    }

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

    .nav-mobile {
        top: 55px;
    }

    .cta-button-mobile {
        margin: 10px 15px;
        padding: 12px 15px;
    }
}

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

@media (max-width: 768px) {
    main {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    main {
        margin-top: 55px;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Styling */
::selection {
    background: var(--primary-color);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--bg-primary);
}

/* Homepage Styles */

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: var(--gradient-secondary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

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

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

/* Access Section */
.access-section {
    background: var(--bg-secondary);
}

.access-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.access-card {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.access-card h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.access-list {
    margin-bottom: 30px;
}

.access-list h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.access-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.access-list strong {
    color: var(--text-primary);
}

.access-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.mobile-features {
    text-align: center;
}

.mobile-features h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mobile-features p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.feature-item {
    background: var(--bg-tertiary);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Demo Section Styles */
.demo-section {
    background: var(--bg-primary);
    text-align: center;
}

.demo-game {
    max-width: 600px;
    margin: 0 auto;
}

.slot-machine {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slot-display {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.reel {
    background: var(--bg-secondary);
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    width: 100px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.symbol {
    font-size: 2.5rem;
    padding: 10px;
    transition: transform 0.3s ease;
}

.symbol.winning {
    animation: pulse 0.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.paylines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 3px;
}

.payline {
    height: 1px;
    background: var(--accent-color);
    margin: 8px 0;
    opacity: 0.3;
}

.payline.active {
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-color);
}

.slot-controls {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.game-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.balance, .bet-amount, .last-win {
    text-align: center;
    padding: 10px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.balance span:first-child,
.bet-amount span:first-child,
.last-win span:first-child {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.balance span:last-child,
.bet-amount span:last-child,
.last-win span:last-child {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-game {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-game:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-spin {
    padding: 15px 30px;
    font-size: 1.1rem;
    background: var(--gradient-secondary);
}

.game-message {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-weight: bold;
    text-align: center;
}

.game-message.win {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    animation: celebrate 0.5s ease-in-out;
}

@keyframes celebrate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Games Section */
.games-section {
    background: var(--bg-secondary);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.game-category {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.game-category h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.games-list {
    display: grid;
    gap: 15px;
}

.game-item {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.game-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.game-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.game-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.rtp {
    color: var(--accent-color);
    font-weight: bold;
}

.multiplier {
    color: var(--primary-color);
    font-weight: bold;
}

.bonus {
    color: var(--secondary-color);
    font-weight: bold;
}

.easy-win, .big-win {
    color: #4CAF50;
    font-weight: bold;
}

.game-image {
    text-align: center;
    margin: 40px 0;
}

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

.game-features {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.game-features h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.features-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-group h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.feature-group ul {
    list-style: none;
    padding: 0;
}

.feature-group li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.feature-group li:last-child {
    border-bottom: none;
}

/* Wallet Section */
.wallet-section {
    background: var(--bg-primary);
}

.wallet-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.wallet-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.wallet-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.wallet-benefits h3 {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.benefits-grid {
    display: grid;
    gap: 30px;
}

.benefit-category {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.benefit-category h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.benefit-category li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.benefit-category strong {
    color: var(--text-primary);
}

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

.wallet-guide {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.wallet-guide h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.step-category h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.step-list li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.step-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    background: var(--primary-color);
    color: var(--bg-primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Promotions Section */
.promotions-section {
    background: var(--bg-secondary);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.promo-category {
    background: var(--bg-tertiary);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.promo-category h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.6rem;
    text-align: center;
}

.promo-item {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

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

.promo-item h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.promo-item ul {
    list-style: none;
    padding: 0;
}

.promo-item li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.promo-item li:last-child {
    border-bottom: none;
}

.promo-item strong {
    color: var(--text-primary);
}

.promo-terms {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.promo-terms h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.promo-image {
    text-align: center;
    margin: 40px 0;
}

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

/* Security Section */
.security-section {
    background: var(--bg-primary);
}

.security-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.security-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.security-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.security-features h3 {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.security-grid {
    display: grid;
    gap: 30px;
}

.security-category {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.security-category h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.security-category li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.security-category strong {
    color: var(--text-primary);
}

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

.faq-section {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.faq-section h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.8rem;
}

.faq-section h4 {
    color: var(--accent-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.3rem;
}

.faq-grid {
    display: grid;
    gap: 25px;
}

.faq-item {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-question {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

.customer-service {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.customer-service h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-category h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.service-category li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.service-category strong {
    color: var(--text-primary);
}

/* Tips Section */
.tips-section {
    background: var(--bg-secondary);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tip-category {
    background: var(--bg-tertiary);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.tip-category h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.6rem;
    text-align: center;
}

.tip-section {
    margin-bottom: 30px;
}

.tip-section:last-child {
    margin-bottom: 0;
}

.tip-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.tip-section ul {
    list-style: none;
    padding: 0;
}

.tip-section li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.tip-section li:last-child {
    border-bottom: none;
}

.tip-section strong {
    color: var(--text-primary);
}

.strategy-box {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.strategy-box:last-child {
    margin-bottom: 0;
}

.strategy-box h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Summary Section */
.summary-section {
    background: var(--bg-primary);
}

.summary-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.summary-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.summary-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.summary-highlights {
    display: grid;
    gap: 30px;
}

.highlight-category {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.highlight-category h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.highlight-category li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

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

.getting-started {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.getting-started h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.start-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.steps-category h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.steps-category ol {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.steps-category ol li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.steps-category ol li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    background: var(--primary-color);
    color: var(--bg-primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

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

.steps-category ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.final-call {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.final-call p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-final {
    margin-bottom: 40px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-info strong {
    color: var(--text-primary);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.final-message {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.related-link {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer Styles */
.footer {
    background: var(--bg-secondary);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

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

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 48px;
}

.sticky-btn-text {
    color: inherit;
    white-space: nowrap;
}

.sticky-btn-login {
    background: linear-gradient(135deg, var(--accent-color), #0099cc);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.sticky-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #00e6ff, var(--accent-color));
}

.sticky-btn-register {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: var(--gradient-secondary);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, var(--secondary-color), #e5551a);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.sticky-btn-credit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c66, var(--secondary-color));
}

/* Add bottom padding to body to prevent content overlap */
body {
    padding-bottom: 80px;
}

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

    .access-grid,
    .wallet-content,
    .security-content,
    .summary-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .games-grid,
    .promo-grid,
    .tips-grid,
    .features-dual,
    .benefits-grid,
    .security-grid,
    .service-grid,
    .guide-steps,
    .start-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

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

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

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

    .game-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .control-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .slot-reels {
        gap: 10px;
    }

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

    .symbol {
        font-size: 2rem;
    }

    /* Footer responsive styles for tablets */
    .footer {
        padding: 25px 0;
    }

    .footer-links {
        gap: 30px;
    }

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

    /* Sticky buttons responsive styles for tablets */
    .sticky-buttons {
        padding: 10px;
        gap: 15px;
    }

    .sticky-btn {
        padding: 11px 14px;
        font-size: 0.85rem;
        min-height: 46px;
    }
}

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

    .hero {
        padding: 80px 0 40px;
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .slot-machine {
        padding: 20px;
    }

    .slot-reels {
        gap: 8px;
    }

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

    .symbol {
        font-size: 1.8rem;
    }

    .game-info {
        gap: 10px;
    }

    .access-card,
    .game-category,
    .promo-category,
    .tip-category {
        padding: 25px;
    }

    .wallet-guide,
    .getting-started,
    .final-call {
        padding: 30px;
    }

    /* Footer responsive styles */
    .footer {
        padding: 20px 0;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    /* Sticky buttons responsive styles */
    .sticky-buttons {
        padding: 8px 5px;
        gap: 8px;
    }

    .sticky-btn {
        padding: 10px 8px;
        font-size: 0.75rem;
        border-radius: 20px;
        min-height: 44px;
    }

    .sticky-btn-text {
        font-size: 0.75rem;
    }
}

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, var(--bg-primary) 50%);
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.login-title {
    text-align: center;
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-form {
    width: 100%;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: var(--bg-primary);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

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

.form-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 24px;
    border-radius: 12px;
}

/* Login page responsive styles */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 0 60px;
        min-height: calc(100vh - 140px);
    }

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

    .login-form {
        padding: 30px 24px;
        margin: 0 10px;
    }

    .form-actions {
        gap: 12px;
    }

    .form-actions .btn {
        font-size: 1rem;
        padding: 14px 20px;
    }
}

/* Register Page Styles */
.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 120px 0 80px;
}

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

.register-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.register-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

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

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

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

    .register-container {
        max-width: 400px;
        margin: 0 20px;
    }

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

    .register-form {
        padding: 30px 24px;
        margin: 0 10px;
    }

    .form-actions {
        gap: 12px;
    }

    .form-actions .btn {
        font-size: 1rem;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .register-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

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

/* Promotion Page Styles */

/* Promotion Hero Section */
.promo-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

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

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

.hero-content .hero-title {
    font-size: 3.2rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content .hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Promotion Sections */
.promo-section {
    padding: 80px 0;
    position: relative;
}

.promo-section.bg-secondary {
    background: var(--bg-secondary);
}

/* Promotion Cards */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.promo-card {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.promo-card:hover::before {
    transform: scaleX(1);
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.promo-icon i {
    font-size: 1.5rem;
    color: var(--bg-primary);
}

.promo-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 1.3;
}

.promo-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.promo-details h4,
.promo-steps h4,
.bonus-details h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.promo-details ul,
.terms-list,
.warning-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.promo-details li,
.terms-list li,
.warning-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.promo-details li::before,
.terms-list li::before,
.warning-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.warning-list li::before {
    content: '⚠';
    color: var(--secondary-color);
}

.promo-details li:last-child,
.terms-list li:last-child,
.warning-list li:last-child {
    border-bottom: none;
}

/* Daily Promotions Layout */
.promo-dual-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.promo-card-large {
    background: var(--bg-tertiary);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.promo-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.promo-card-large h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Step Lists */
.step-list,
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.step-number {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Grids */
.feature-grid,
.condition-grid,
.bonus-list,
.privilege-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-item,
.condition-item,
.bonus-item,
.privilege-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover,
.condition-item:hover,
.bonus-item:hover,
.privilege-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-item i,
.condition-item i,
.privilege-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bonus-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Slot Promotions Featured */
.promo-featured {
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.promo-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.promo-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.benefits-grid {
    margin-top: 30px;
}

.benefit-item h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    padding: 8px 0 8px 25px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    position: relative;
}

.benefit-item li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

.benefit-item li:last-child {
    border-bottom: none;
}

.promo-highlight {
    background: var(--bg-primary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.highlight-card {
    padding: 30px;
}

.highlight-card h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.withdrawal-conditions {
    margin: 25px 0;
}

.withdrawal-conditions h5 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Wallet Promotions */
.wallet-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.wallet-card {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.wallet-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wallet-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.wallet-header h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0;
}

/* VIP Program */
.vip-program-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.vip-main-card,
.birthday-promo {
    background: var(--bg-tertiary);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.vip-main-card:hover,
.birthday-promo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.vip-header,
.birthday-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.vip-header i,
.birthday-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.vip-header h3,
.birthday-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.vip-tiers {
    margin: 30px 0;
}

.tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.tier-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tier-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.tier-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.tier-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.tier-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: var(--bg-primary);
}

.tier-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: var(--bg-primary);
}

.tier-badge.platinum {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: var(--bg-primary);
}

.tier-badge.diamond {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
}

.tier-requirement {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
}

.vip-benefits,
.birthday-gifts {
    margin-top: 30px;
}

.benefits-list,
.gift-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.gift-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.gift-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.gift-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Special Events */
.special-events-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.tournament-card,
.midnight-promo {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tournament-card:hover,
.midnight-promo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.tournament-header,
.midnight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tournament-header i,
.midnight-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tournament-info,
.midnight-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.info-item,
.midnight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.info-item i,
.midnight-item i {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Referral Layout */
.referral-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
}

.referral-main,
.team-promo {
    background: var(--bg-tertiary);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.referral-header,
.team-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.referral-header i,
.team-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.referral-rewards {
    margin-top: 30px;
}

.rewards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.reward-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.reward-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.reward-item.unlimited {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.reward-count {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.reward-amount {
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.9rem;
}

.team-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.team-item i {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Terms and Conditions */
.terms-layout {
    max-width: 900px;
    margin: 0 auto;
}

.terms-card {
    background: var(--bg-tertiary);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.terms-card h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.terms-section,
.warning-section {
    margin: 30px 0;
}

.terms-section h4,
.warning-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.warning-section h4 {
    color: var(--secondary-color);
}

.contact-section {
    text-align: center;
    margin-top: 40px;
}

/* How to Guide */
.how-to-guide {
    background: var(--bg-secondary);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-header h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.guide-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-group h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.numbered-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.numbered-list li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.numbered-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.numbered-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* FAQ Layout */
.faq-layout {
    display: grid;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
}

/* Summary Content */
.summary-content {
    max-width: 1000px;
    margin: 0 auto;
}

.summary-intro {
    text-align: center;
    margin-bottom: 50px;
}

.summary-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.highlights-section,
.security-guarantee {
    margin-bottom: 50px;
}

.highlights-section h3,
.security-guarantee h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.highlights-grid,
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-item,
.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight-item:hover,
.security-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.highlight-item i,
.security-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-item span,
.security-item span {
    color: var(--text-secondary);
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.disclaimer {
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.disclaimer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

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

    .promo-grid,
    .promo-dual-layout,
    .wallet-promo-grid,
    .vip-program-layout,
    .special-events-layout,
    .referral-layout,
    .guide-steps,
    .highlights-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid,
    .condition-grid,
    .bonus-list,
    .privilege-grid,
    .tier-grid,
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .promo-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }

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

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

    .promo-section {
        padding: 60px 0;
    }

    .promo-card,
    .promo-card-large,
    .wallet-card,
    .vip-main-card,
    .birthday-promo,
    .tournament-card,
    .midnight-promo,
    .referral-main,
    .team-promo,
    .terms-card,
    .how-to-guide {
        padding: 30px;
    }

    .promo-featured {
        padding: 35px;
    }

    .final-cta {
        padding: 35px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

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

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

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

    .promo-section {
        padding: 40px 0;
    }

    .promo-card,
    .promo-card-large,
    .wallet-card,
    .vip-main-card,
    .birthday-promo,
    .tournament-card,
    .midnight-promo,
    .referral-main,
    .team-promo,
    .terms-card,
    .how-to-guide {
        padding: 25px;
    }

    .promo-featured {
        padding: 25px;
    }

    .final-cta {
        padding: 25px;
    }

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

    .highlight-card {
        padding: 20px;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .step-item .step-text {
        text-align: left;
    }
}

/* Privacy Policy Styles */
.privacy-policy-content {
    padding: 120px 0 80px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-policy-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.privacy-policy-content h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.privacy-policy-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-policy-content ul {
    margin: 15px 0 20px 20px;
    color: var(--text-secondary);
}

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

.privacy-policy-content li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.privacy-policy-content hr {
    border: none;
    height: 2px;
    background: var(--gradient-primary);
    margin: 40px 0;
    border-radius: 1px;
}

.privacy-policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
    color: var(--primary-color);
}

/* Responsive styles for privacy policy */
@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 100px 0 60px;
    }

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

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

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

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

/* Terms and Conditions Styles */
.terms-content {
    padding: 120px 0 80px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
}

.terms-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.terms-content h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.terms-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.terms-content ul {
    margin: 15px 0 20px 20px;
    color: var(--text-secondary);
}

.terms-content ol {
    margin: 15px 0 20px 20px;
    color: var(--text-secondary);
}

.terms-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-content li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.terms-content section {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.terms-content section:hover {
    border-color: var(--primary-color);
    background: var(--bg-tertiary);
}

.terms-content hr {
    border: none;
    height: 2px;
    background: var(--gradient-primary);
    margin: 40px 0;
    border-radius: 1px;
}

.terms-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: var(--primary-color);
}

.terms-content em {
    color: var(--text-muted);
    font-style: italic;
}

.terms-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Special styling for intro paragraph */
.terms-content > p:first-of-type {
    background: var(--bg-tertiary);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

/* Responsive styles for terms and conditions */
@media (max-width: 768px) {
    .terms-content {
        padding: 100px 0 60px;
    }

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

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

    .terms-content h3 {
        font-size: 1.2rem;
    }

    .terms-content section {
        padding: 20px;
    }

    .terms-content ul,
    .terms-content ol {
        margin-left: 15px;
    }
}

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

    .terms-content h1 {
        font-size: 1.7rem;
    }

    .terms-content h2 {
        font-size: 1.3rem;
    }

    .terms-content h3 {
        font-size: 1.1rem;
    }

    .terms-content section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .terms-content p {
        text-align: left;
    }
}