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

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

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

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

/* Header Styles */
.header {
    background-color: #111111;
    border-bottom: 1px solid #333333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    gap: 12px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 24px;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #ff6b35;
}

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

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

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

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

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

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

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

.cta-button:hover {
    background: linear-gradient(135deg, #ff8c42, #ffaa5e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

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

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

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

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

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

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

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
}

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

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

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

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

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #ff8c42, #ffaa5e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

    .header-content {
        height: 60px;
    }

    .logo a {
        font-size: 20px;
        gap: 8px;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .nav-desktop {
        display: none;
    }

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

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

    .header-content {
        height: 55px;
    }

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

    .logo img {
        width: 28px;
        height: 28px;
    }
}

/* Main Content */
main {
    padding-top: 0;
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: #ff6b35;
}

.bg-dark {
    background-color: #111111;
}

.bg-darker {
    background-color: #0a0a0a;
}

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

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

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

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

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #e0e0e0;
}

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

.secondary-button {
    background: transparent;
    color: #ff6b35;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
    display: inline-block;
}

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

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

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.section-description {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 48px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.demo-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slot-machine {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #333333;
    max-width: 500px;
    width: 100%;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

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

.credits {
    background: #333333;
    padding: 8px 16px;
    border-radius: 20px;
    color: #ffffff;
    font-weight: 700;
}

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

.reel {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 10px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333333;
    overflow: hidden;
    position: relative;
}

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

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

.symbol {
    font-size: 2.5rem;
    display: none;
}

.symbol.active {
    display: block;
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.bet-controls select {
    background: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 16px;
}

.spin-button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.spin-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff8c42, #ffaa5e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.win-display {
    background: #333333;
    padding: 10px 16px;
    border-radius: 20px;
    color: #ffffff;
    font-weight: 700;
    min-width: 100px;
    text-align: center;
}

.win-display.winning {
    background: linear-gradient(135deg, #28a745, #20c997);
    animation: pulse 1s ease-in-out;
}

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

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

.games-grid {
    margin-bottom: 60px;
}

.game-category h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
}

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

.game-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.game-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.game-info h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.game-info p {
    color: #cccccc;
    line-height: 1.6;
}

.providers-section {
    margin-bottom: 60px;
}

.providers-section h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 24px;
    text-align: center;
}

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

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

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

.provider-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.provider-item h4 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

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

.guide-section {
    text-align: center;
}

.guide-section h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 24px;
}

.guide-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Login Section */
.login-section {
    padding: 80px 0;
    background-color: #111111;
}

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

.login-text h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.login-text h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin: 32px 0 16px 0;
}

.login-text h4 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 24px 0 16px 0;
}

.login-text p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 16px;
}

.login-steps {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.8;
}

.login-steps li {
    margin-bottom: 12px;
}

.login-steps strong {
    color: #ff6b35;
}

.backup-links {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.8;
}

.backup-links li {
    margin-bottom: 8px;
}

.backup-links strong {
    color: #ff6b35;
}

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

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

.security-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
}

.security-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.security-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.security-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.security-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.security-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

.bonus-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
}

.bonus-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bonus-category h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

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

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

.bonus-item strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 4px;
}

.bonus-item p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.bonus-image {
    text-align: center;
    margin-bottom: 40px;
}

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

.rtp-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
}

.rtp-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.rtp-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}

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

.rtp-item h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 12px;
}

.rtp-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.payout-system {
    margin-bottom: 60px;
}

.payout-system h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.payout-system p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.payout-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.payout-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.payout-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.payout-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.jackpot-section {
    text-align: center;
}

.jackpot-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
}

.jackpot-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Banking Section */
.banking-section {
    padding: 80px 0;
    background-color: #111111;
}

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

.deposit-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
}

.deposit-section h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 32px 0 20px 0;
}

.deposit-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.payment-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

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

.payment-item i {
    font-size: 2rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.payment-item h5 {
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 1rem;
}

.payment-item p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.deposit-steps {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.8;
}

.deposit-steps li {
    margin-bottom: 12px;
}

.deposit-steps strong {
    color: #ff6b35;
}

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

.withdrawal-section {
    margin-bottom: 60px;
}

.withdrawal-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.withdrawal-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.withdrawal-features h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.feature-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.feature-item h5 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.withdrawal-conditions {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.withdrawal-conditions li {
    margin-bottom: 8px;
}

.security-banking {
    margin-bottom: 60px;
}

.security-banking h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.security-banking p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.security-feature {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

.security-feature:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.security-feature i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.security-feature h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.security-feature p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.customer-service-banking {
    text-align: center;
}

.customer-service-banking h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
}

.customer-service-banking p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.service-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.contact-info p {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

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

.contact-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

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

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

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

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

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

.registration-steps-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
}

.registration-steps-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.step-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

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

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

.step-content h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.step-content ul {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.6;
}

.step-content li {
    margin-bottom: 8px;
}

.step-content strong {
    color: #ff6b35;
}

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

.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-category h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

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

.benefit-item i {
    font-size: 2rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.benefit-item strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 4px;
}

.benefit-item p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.strategy-section {
    margin-bottom: 60px;
}

.strategy-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.strategy-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.strategy-category {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.strategy-category:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.strategy-category h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.strategy-list {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.6;
}

.strategy-list li {
    margin-bottom: 12px;
}

.strategy-list strong {
    color: #ff6b35;
}

.game-selection-tips {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.6;
}

.game-selection-tips li {
    margin-bottom: 12px;
}

.game-selection-tips strong {
    color: #ff6b35;
}

.safety-section {
    text-align: center;
}

.safety-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 24px;
}

.safety-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.safety-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.safety-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.safety-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.safety-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.review-note {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 0;
}

/* Customer Service Section */
.customer-service-section {
    padding: 80px 0;
    background-color: #111111;
}

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

.contact-methods h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-method {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-details h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.contact-details p {
    color: #ff6b35;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-details span {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.expertise-section {
    text-align: center;
}

.expertise-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.expertise-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.expertise-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.expertise-item h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0;
}

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

.summary-highlights {
    margin-bottom: 60px;
}

.summary-highlights h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.highlight-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.highlight-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.highlight-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.highlight-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.final-message {
    color: #cccccc;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    font-size: 1.25rem;
    padding: 16px 32px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .login-content,
    .banking-grid,
    .registration-content,
    .customer-service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

@media (max-width: 768px) {
    .hero-section,
    .demo-section,
    .games-section,
    .login-section,
    .rewards-section,
    .banking-section,
    .registration-section,
    .customer-service-section,
    .summary-section {
        padding: 60px 0;
    }

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

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

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

    .game-list,
    .providers-grid,
    .security-features,
    .feature-grid,
    .security-grid,
    .service-features,
    .benefits-grid,
    .strategy-grid,
    .safety-grid,
    .expertise-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

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

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

    .symbol {
        font-size: 2rem;
    }

    .slot-controls {
        flex-direction: column;
        gap: 15px;
    }

    .bonus-categories {
        gap: 30px;
    }

    .steps-container {
        gap: 20px;
    }

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

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }
}

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

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

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

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

    .cta-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .slot-machine {
        padding: 20px;
    }

    .slot-controls {
        gap: 10px;
    }

    .spin-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .game-item,
    .provider-item,
    .security-item,
    .feature-item,
    .security-feature,
    .service-item,
    .payout-item,
    .benefit-item,
    .safety-item,
    .expertise-item,
    .highlight-item {
        padding: 20px;
    }

    .step-item,
    .contact-method {
        padding: 20px;
    }

    .final-cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* Footer Styles */
.footer {
    background-color: #111111;
    border-top: 1px solid #333333;
    padding: 40px 0;
    margin-top: 0;
}

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

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

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

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

.footer-link:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover:before {
    width: 80%;
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 20%, rgba(17, 17, 17, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333333;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding: 12px 0 20px 0;
}

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

.sticky-button {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border: 2px solid #333333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    position: relative;
    overflow: hidden;
}

.sticky-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    transition: left 0.5s ease;
}

.sticky-button:hover:before {
    left: 0;
}

.sticky-button span {
    position: relative;
    z-index: 1;
}

.sticky-login:hover {
    border-color: #17a2b8;
    background: linear-gradient(145deg, #17a2b8, #138496);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.sticky-register:hover {
    border-color: #28a745;
    background: linear-gradient(145deg, #28a745, #218838);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.sticky-bonus:hover {
    border-color: #ff6b35;
    background: linear-gradient(145deg, #ff6b35, #ff8c42);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

/* Responsive Sticky Buttons */
@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
    }

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

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

    .sticky-button {
        padding: 14px 16px;
        font-size: 14px;
        min-height: 50px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-link {
        font-size: 12px;
        padding: 8px 16px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

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

    .sticky-button {
        padding: 12px 14px;
        font-size: 13px;
        min-height: 45px;
        border-radius: 8px;
    }

    .sticky-buttons {
        padding: 10px 0 16px 0;
    }
}

/* Add bottom padding to main content to prevent overlap with sticky buttons */
main {
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    main {
        padding-bottom: 90px;
    }
}

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

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

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

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

.promotion-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #e0e0e0;
}

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

/* Main Promotion Sections */
.promotion-main-section,
.monthly-promotion-section,
.referral-section,
.terms-section,
.how-to-section,
.games-promotion-section,
.payment-promotion-section,
.faq-section,
.customer-service-promotion-section,
.summary-promotion-section {
    padding: 80px 0;
}

.promotion-main-section {
    background-color: #111111;
}

.monthly-promotion-section {
    background-color: #0a0a0a;
}

.referral-section {
    background-color: #111111;
}

.terms-section {
    background-color: #0a0a0a;
}

.how-to-section {
    background-color: #111111;
}

.games-promotion-section {
    background-color: #0a0a0a;
}

.payment-promotion-section {
    background-color: #111111;
}

.faq-section {
    background-color: #0a0a0a;
}

.customer-service-promotion-section {
    background-color: #111111;
}

.summary-promotion-section {
    background-color: #0a0a0a;
}

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

.promotion-category {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

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

.promotion-category-title {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.promotion-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promotion-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

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

.promotion-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.promotion-details h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.promotion-details p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
}

.promotion-cta-center {
    text-align: center;
    margin-top: 40px;
}

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

.vip-promo-column,
.special-events-column {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.vip-promo-column:hover,
.special-events-column:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

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

.promo-subtitle {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 30px 0 20px 0;
    text-align: center;
}

.vip-tier-list,
.cashback-tier-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vip-tier-item,
.cashback-tier-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #444444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.vip-tier-item:hover,
.cashback-tier-item:hover {
    border-color: #ff6b35;
    background: linear-gradient(145deg, #ff6b35, #ff8c42);
    color: #ffffff;
}

.tier-amount,
.tier-name {
    color: #ffffff;
    font-weight: 600;
}

.tier-bonus,
.tier-percentage {
    color: #ff6b35;
    font-weight: 700;
}

.vip-tier-item:hover .tier-bonus,
.cashback-tier-item:hover .tier-percentage {
    color: #ffffff;
}

.special-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.special-event-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.special-event-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

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

.event-content h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.event-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Referral Section */
.referral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.referral-rewards,
.app-promotions {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.referral-rewards:hover,
.app-promotions:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

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

.referral-tier-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.referral-tier {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}

.referral-tier:hover {
    border-color: #ff6b35;
    background: linear-gradient(145deg, #ff6b35, #ff8c42);
    color: #ffffff;
    transform: translateY(-2px);
}

.referral-count {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.referral-reward {
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 700;
}

.referral-tier:hover .referral-reward {
    color: #ffffff;
}

.app-promo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-promo-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.app-promo-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.app-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.app-details h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.app-details p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Terms Section */
.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.easy-terms,
.safety-features {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.easy-terms:hover,
.safety-features:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.terms-title,
.safety-title {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.terms-list,
.safety-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.terms-item,
.safety-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #444444;
    color: #cccccc;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.terms-item:hover,
.safety-item:hover {
    border-color: #ff6b35;
    background: linear-gradient(145deg, #ff6b35, #ff8c42);
    color: #ffffff;
}

.terms-item strong,
.safety-item strong {
    color: #ff6b35;
}

.terms-item:hover strong,
.safety-item:hover strong {
    color: #ffffff;
}

/* How-to Section */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

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

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

.step-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-instructions {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.7;
}

.step-instructions li {
    margin-bottom: 10px;
}

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

.popular-games,
.new-games-promo {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.popular-games:hover,
.new-games-promo:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.games-section-title {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.game-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.game-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

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

.game-name {
    color: #ff6b35;
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-align: center;
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.stat-label {
    color: #ffffff;
    font-weight: 600;
    flex-shrink: 0;
}

.stat-value {
    color: #ff6b35;
    font-weight: 700;
}

.stat-desc {
    color: #cccccc;
    text-align: right;
    font-size: 0.9rem;
}

.new-game-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-game-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.new-game-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.new-game-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.new-game-content h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.new-game-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Payment System Section */
.payment-system-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.deposit-methods,
.withdrawal-system {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.deposit-methods:hover,
.withdrawal-system:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

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

.deposit-method-list,
.withdrawal-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-method-item,
.withdrawal-feature-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.payment-method-item:hover,
.withdrawal-feature-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.payment-icon,
.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.payment-details h4,
.feature-details h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.payment-details p,
.feature-details p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

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

.faq-answer p {
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

/* Customer Service Section */
.customer-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-channels,
.premium-service {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.contact-channels:hover,
.premium-service:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

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

.contact-channel-list,
.premium-service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-channel-item,
.premium-service-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.contact-channel-item:hover,
.premium-service-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.contact-icon,
.premium-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.contact-info h4,
.premium-content h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.contact-info p,
.premium-content p {
    color: #ff6b35;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Summary Section */
.summary-content {
    margin-bottom: 40px;
}

.summary-description {
    text-align: center;
    margin-bottom: 60px;
}

.summary-description p {
    color: #cccccc;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

.summary-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.summary-highlights,
.final-call-to-action {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.summary-highlights:hover,
.final-call-to-action:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.highlights-title,
.final-cta-title {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.highlight-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

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

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.highlight-content h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.highlight-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.final-cta-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.final-cta-button-container {
    text-align: center;
}

.final-cta-button {
    font-size: 1.25rem;
    padding: 16px 32px;
}

.disclaimer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.disclaimer p {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1024px) {
    .promotion-grid,
    .monthly-promo-grid,
    .referral-grid,
    .terms-grid,
    .games-promo-grid,
    .payment-system-grid,
    .customer-service-grid,
    .summary-highlights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .promotion-main-section,
    .monthly-promotion-section,
    .referral-section,
    .terms-section,
    .how-to-section,
    .games-promotion-section,
    .payment-promotion-section,
    .faq-section,
    .customer-service-promotion-section,
    .summary-promotion-section {
        padding: 60px 0;
    }

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

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

    .promotion-category {
        padding: 30px 20px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .game-cards {
        gap: 20px;
    }

    .game-card {
        padding: 20px;
    }

    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .stat-desc {
        text-align: left;
    }
}

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

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

    .promotion-category,
    .vip-promo-column,
    .special-events-column,
    .referral-rewards,
    .app-promotions,
    .easy-terms,
    .safety-features,
    .popular-games,
    .new-games-promo,
    .deposit-methods,
    .withdrawal-system,
    .contact-channels,
    .premium-service,
    .summary-highlights,
    .final-call-to-action,
    .faq-item {
        padding: 20px;
    }

    .step-item {
        padding: 20px;
    }

    .vip-tier-item,
    .cashback-tier-item,
    .referral-tier {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .final-cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

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

.login-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
}

.login-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.login-page-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.login-form-container {
    width: 100%;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

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

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

.form-label {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

.form-input {
    padding: 16px 20px;
    border: 2px solid #333;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

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

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

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

.login-submit-btn {
    padding: 18px 32px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.login-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.register-btn {
    padding: 16px 32px;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

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

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

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-page-section {
        padding: 40px 0;
    }

    .login-form-container {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .login-page-content {
        max-width: 100%;
    }

    .form-actions {
        gap: 14px;
    }

    .login-submit-btn {
        padding: 16px 28px;
        font-size: 16px;
    }

    .register-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

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

    .login-form-container {
        padding: 24px 20px;
        margin: 0 12px;
        border-radius: 12px;
    }

    .login-page-title {
        margin-bottom: 30px;
    }

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

    .form-actions {
        gap: 12px;
    }

    .login-submit-btn {
        padding: 15px 24px;
        font-size: 15px;
    }

    .register-btn {
        padding: 13px 24px;
        font-size: 14px;
    }

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

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.register-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.register-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.register-form {
    width: 100%;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: #222222;
    border: 2px solid #333333;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Sarabun', sans-serif;
}

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

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

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

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

.register-button:hover {
    background: linear-gradient(135deg, #ff5722, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.login-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
    background: transparent;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Prompt', sans-serif;
    display: inline-block;
}

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

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

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

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

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

    .register-button,
    .login-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

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

    .register-form {
        padding: 1.5rem;
        margin: 0 15px;
    }

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

    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

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

    .register-button,
    .login-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Terms and Conditions Page Styles */
.terms-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.8;
}

.terms-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #333333;
    padding-bottom: 20px;
}

.terms-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #ff6b35;
}

.terms-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #cccccc;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 16px;
    text-align: justify;
}

.terms-content ul,
.terms-content ol {
    margin: 16px 0;
    padding-left: 30px;
}

.terms-content li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

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

.terms-content strong {
    color: #ff6b35;
    font-weight: 600;
}

.terms-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 40px 0;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-content {
        padding: 40px 15px 60px;
    }

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

    .terms-content h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-left: 15px;
    }

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

    .terms-content h4 {
        font-size: 1.1rem;
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .terms-content p {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 14px;
    }

    .terms-content ul,
    .terms-content ol {
        padding-left: 25px;
        margin: 14px 0;
    }

    .terms-content li {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 30px 10px 50px;
    }

    .terms-content h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .terms-content h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
        padding-left: 12px;
    }

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

    .terms-content h4 {
        font-size: 1rem;
        margin-top: 12px;
        margin-bottom: 6px;
    }

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

    .terms-content ul,
    .terms-content ol {
        padding-left: 20px;
        margin: 12px 0;
    }

    .terms-content li {
        font-size: 0.9rem;
        margin-bottom: 5px;
        line-height: 1.6;
    }
}

/* Responsible Gambling Policy Page Styles */
.responsible-gambling-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    padding: 40px 20px 60px;
    margin: 0 auto;
}

.responsible-gambling-content h1 {
    color: #ff6b35;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.policy-section {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border-radius: 12px;
    border: 1px solid #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.policy-section h2 {
    color: #ff6b35;
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
    position: relative;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.policy-section h3 {
    color: #ffa726;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
}

.policy-section h4 {
    color: #ffcc80;
    font-size: 1.1rem;
    margin: 20px 0 12px 0;
    font-weight: 600;
}

.policy-section p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-section li {
    color: #d0d0d0;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.policy-section li::marker {
    color: #ff6b35;
}

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

/* Commitment section special styling */
.policy-section.commitment {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border: none;
}

.policy-section.commitment h2 {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

.policy-section.commitment h2::after {
    background: #ffffff;
}

.policy-section.commitment p,
.policy-section.commitment li {
    color: #ffffff;
}

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

.highlight-message {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.highlight-message strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.effective-date {
    text-align: center;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design for Responsible Gambling Page */
@media (max-width: 768px) {
    .responsible-gambling-content {
        padding: 30px 15px 50px;
    }

    .responsible-gambling-content h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .policy-section h3 {
        font-size: 1.2rem;
        margin: 20px 0 12px 0;
    }

    .policy-section h4 {
        font-size: 1rem;
        margin: 15px 0 10px 0;
    }

    .policy-section p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .policy-section ul,
    .policy-section ol {
        padding-left: 25px;
        margin: 12px 0;
    }

    .policy-section li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-content {
        padding: 25px 10px 40px;
    }

    .responsible-gambling-content h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .policy-section {
        padding: 15px;
        margin-bottom: 25px;
    }

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

    .policy-section h3 {
        font-size: 1.1rem;
        margin: 15px 0 10px 0;
    }

    .policy-section h4 {
        font-size: 0.95rem;
        margin: 12px 0 8px 0;
    }

    .policy-section p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .policy-section ul,
    .policy-section ol {
        padding-left: 20px;
        margin: 10px 0;
    }

    .policy-section li {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .highlight-message {
        padding: 15px;
        margin: 15px 0;
    }

    .highlight-message strong {
        font-size: 1.1rem;
    }
}