/* 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;
    overflow-x: hidden;
}

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

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

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

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

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

.logo img {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.logo a:hover img {
    filter: drop-shadow(0 0 10px #ff6b35);
}

.logo-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link {
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

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

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

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

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

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
}

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

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
    margin-top: 20px;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

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

.mobile-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin: 10px 20px;
}

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

/* Body Spacing for Fixed Header */
body {
    padding-top: 70px;
}

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

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

    .header-content {
        height: 60px;
    }

    body {
        padding-top: 60px;
    }

    .mobile-nav {
        top: 60px;
    }

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

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

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 55px;
    }

    body {
        padding-top: 55px;
    }

    .mobile-nav {
        top: 55px;
    }

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

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

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

    .mobile-cta-button {
        padding: 12px 28px;
        font-size: 14px;
        margin: 10px 16px;
    }
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-in-down {
    transform: translateY(-20px);
    opacity: 0;
    animation: slideInDown 0.5s ease-out forwards;
}

@keyframes slideInDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

/* High Contrast Support */
@media (prefers-contrast: high) {
    .header {
        border-bottom: 2px solid #ffffff;
    }

    .nav-link,
    .mobile-nav-link {
        color: #ffffff;
    }

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

/* Homepage Styles */

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

.hero-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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,107,53,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="200" fill="url(%23a)"/></svg>') no-repeat;
    background-size: cover;
    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-family: 'Prompt', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    display: inline-block;
    text-align: center;
}

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

.hero-cta-secondary {
    color: #ff6b35;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.hero-cta-secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

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

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

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* System Features Section */
.system-features {
    background: #111111;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 24px;
    color: #ffffff;
}

.feature-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

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

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

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

.feature-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
    position: relative;
}

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

.slot-machine {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.slot-display {
    background: #000000;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    overflow: hidden;
}

.reel {
    background: #1a1a1a;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    height: 120px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.symbol {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(145deg, #333333, #1a1a1a);
    border-bottom: 1px solid #ff6b35;
}

.symbol:last-child {
    border-bottom: none;
}

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

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

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

.credit-display, .bet-display {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
}

.credit-label, .bet-label {
    display: block;
    font-size: 12px;
    color: #ff6b35;
    margin-bottom: 4px;
}

.credit-amount, .bet-amount {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.spin-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

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

.payout-display {
    text-align: center;
    padding: 16px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid #ff6b35;
}

.last-win {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.demo-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.demo-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.demo-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.demo-info li {
    color: #cccccc;
    margin-bottom: 12px;
    font-size: 16px;
}

.demo-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    display: inline-block;
    text-align: center;
}

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

/* Games Section */
.games-section {
    background: #111111;
}

.games-content {
    display: grid;
    gap: 40px;
}

.games-description {
    text-align: center;
    margin-bottom: 40px;
}

.games-description h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.games-description p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.game-category, .game-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.game-category h4, .game-features h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.game-provider {
    margin-bottom: 30px;
}

.game-provider h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 8px;
}

.game-provider p {
    color: #cccccc;
    margin-bottom: 12px;
    font-size: 14px;
}

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

.game-provider li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    font-size: 14px;
}

.game-provider li::before {
    content: '🎰';
    position: absolute;
    left: 0;
}

.games-visual {
    text-align: center;
    margin: 40px 0;
}

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

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

.games-cta-text a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.games-cta-text a:hover {
    color: #f7931e;
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
}

.experience-grid {
    display: grid;
    gap: 40px;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-features h3, .experience-features h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.experience-features h3 {
    font-size: 24px;
}

.experience-features h4 {
    font-size: 20px;
    color: #ff6b35;
    margin-top: 30px;
}

.experience-features p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.experience-features ol, .experience-features ul {
    margin-bottom: 20px;
}

.experience-features li {
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.5;
}

.device-list li {
    padding-left: 20px;
    position: relative;
}

.device-list li::before {
    content: '📱';
    position: absolute;
    left: 0;
}

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

.experience-cta-text a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.experience-cta-text a:hover {
    color: #f7931e;
}

/* Promotions Section */
.promotions-section {
    background: #111111;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.promotion-main {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.promotion-main h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

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

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

.promotion-column h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 16px;
}

.promotion-column ol, .promotion-column ul {
    margin-bottom: 20px;
}

.promotion-column li {
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.5;
}

.vip-section {
    background: rgba(255, 107, 53, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #ff6b35;
    margin-top: 30px;
}

.vip-section h4, .vip-section h5 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.vip-section h4 {
    font-size: 20px;
}

.vip-section h5 {
    font-size: 18px;
    color: #ff6b35;
}

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

.vip-section ol {
    margin-bottom: 20px;
}

.vip-section li {
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.5;
}

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

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

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

.promotions-cta-text a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.promotions-cta-text a:hover {
    color: #f7931e;
}

/* Banking Section */
.banking-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
}

.banking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.banking-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.banking-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banking-features h3, .banking-features h4, .banking-features h5 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.banking-features h3 {
    font-size: 24px;
}

.banking-features h4 {
    font-size: 20px;
    color: #ff6b35;
    margin-top: 30px;
}

.banking-features h5 {
    font-size: 18px;
    color: #ff6b35;
}

.banking-features p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.payment-category {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ff6b35;
}

.payment-category h5 {
    font-size: 16px;
    margin-bottom: 12px;
}

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

.payment-category li {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 14px;
    padding-left: 16px;
    position: relative;
}

.payment-category li::before {
    content: '💳';
    position: absolute;
    left: 0;
}

.deposit-steps, .withdrawal-info {
    margin-top: 30px;
}

.deposit-steps ol, .withdrawal-info ul {
    margin-bottom: 20px;
}

.deposit-steps li, .withdrawal-info li {
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.5;
}

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

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

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

.banking-cta-text a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.banking-cta-text a:hover {
    color: #f7931e;
}

/* FAQ Section */
.faq-section {
    background: #111111;
}

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

.faq-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.faq-category h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

.faq-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 12px;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 12px;
}

.faq-item ol, .faq-item ul {
    margin-bottom: 12px;
}

.faq-item li {
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-section {
    background: rgba(255, 107, 53, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #ff6b35;
    text-align: center;
}

.contact-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.contact-item i {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 12px;
    display: block;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-item {
    color: #cccccc;
    font-size: 14px;
}

.contact-cta-text {
    margin-top: 30px;
}

.contact-cta-text a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact-cta-text a:hover {
    color: #f7931e;
}

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

    .hero-title {
        font-size: 40px;
    }

    .demo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .promotions-grid, .banking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

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

    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

    .feature-card {
        padding: 30px;
    }

    .slot-machine {
        padding: 20px;
    }

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

    .hero-actions {
        align-items: center;
        width: 100%;
    }

    .hero-cta-primary, .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
    }

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

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

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

    .hero-description {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .feature-card {
        padding: 20px;
    }

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

    .symbol {
        height: 35px;
        font-size: 24px;
    }

    .reel {
        height: 105px;
    }

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

    .demo-info, .banking-content, .promotion-main {
        padding: 25px;
    }
}

/* Additional Slot Machine Styles */
.bet-control {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.bet-control:hover {
    background: #f7931e;
    transform: scale(1.1);
}

.bet-control:active {
    transform: scale(0.95);
}

.win-animation {
    animation: winPulse 1s ease-in-out;
    color: #ff6b35 !important;
}

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

.celebration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    animation: celebrationBounce 2s ease-in-out;
    z-index: 10;
}

@keyframes celebrationBounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, -50%) scale(1); }
    40% { transform: translate(-50%, -50%) scale(1.2); }
    60% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Touch device optimizations */
.touch-device .spin-button {
    min-height: 48px;
    min-width: 120px;
}

.touch-device .bet-control {
    min-height: 44px;
    min-width: 44px;
}

/* Keyboard navigation styles */
.keyboard-navigation .spin-button:focus,
.keyboard-navigation .bet-control:focus {
    outline: 3px solid #ff6b35;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .reel.spinning {
        animation: none;
    }

    .win-animation {
        animation: none;
    }

    .celebration {
        animation: none;
    }

    .slot-machine::before {
        animation: none;
    }
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 30px 0;
    margin-top: 40px;
}

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

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

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

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

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

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 999;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-buttons-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

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

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

.sticky-btn-login {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #357abd, #4a90e2);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.sticky-btn-credit {
    background: linear-gradient(135deg, #28a745, #20833a);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #20833a, #28a745);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

/* Body padding for sticky buttons */
body {
    padding-bottom: 80px;
}

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
        flex-direction: column;
    }

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

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

    .sticky-buttons-content {
        gap: 8px;
        max-width: none;
    }

    .sticky-btn {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 20px;
    }

    body {
        padding-bottom: 70px;
    }
}

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

    .footer-links {
        gap: 15px;
    }

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

    .sticky-buttons {
        padding: 8px 0;
    }

    .sticky-btn {
        padding: 10px 12px;
        font-size: 11px;
        border-radius: 18px;
        min-height: 40px;
    }

    body {
        padding-bottom: 60px;
    }
}

/* High Contrast Support for Footer and Sticky Buttons */
@media (prefers-contrast: high) {
    .footer {
        border-top: 2px solid #ffffff;
    }

    .footer-link {
        color: #ffffff;
    }

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

    .sticky-buttons {
        border-top: 2px solid #ffffff;
    }
}

/* Focus States for Accessibility */
.footer-link:focus,
.sticky-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Touch device optimizations for sticky buttons */
.touch-device .sticky-btn {
    min-height: 48px;
    padding: 12px 16px;
}

/* Promotion Page Styles */

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

.promotion-hero-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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,107,53,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="300" cy="300" r="400" fill="url(%23a)"/><circle cx="700" cy="700" r="300" fill="url(%23a)"/></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}

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

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

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

.promotion-hero-cta {
    margin-top: 32px;
}

.promotion-hero-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    display: inline-block;
}

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

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

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

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.promotion-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

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

.promotion-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.promotion-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promotion-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.promotion-benefits li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

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

.promotion-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* Access and Security Section */
.access-security-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
    padding: 80px 0;
}

.access-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.access-content p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.access-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.access-feature h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.access-feature p {
    color: #cccccc;
    margin-bottom: 20px;
    text-align: left;
}

.access-feature ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.access-feature li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

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

.feature-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

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

.slot-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slot-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.slot-providers, .slot-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.slot-providers h3, .slot-features h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.slot-providers p, .slot-features p {
    color: #cccccc;
    margin-bottom: 20px;
}

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

.provider-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ff6b35;
    text-align: center;
}

.provider-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 8px;
}

.provider-card p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.slot-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.slot-benefits li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.slot-benefits li::before {
    content: '🎰';
    position: absolute;
    left: 0;
}

.section-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* Credit Guide Section */
.credit-guide-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
    padding: 80px 0;
}

.credit-guide-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credit-guide-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.guide-steps, .guide-terms {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.guide-steps h3, .guide-terms h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.steps-list li {
    counter-increment: step-counter;
    color: #cccccc;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

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

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

.terms-list li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.terms-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.guide-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* VIP Program Section */
.vip-program-section {
    background: #111111;
    padding: 80px 0;
}

.vip-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.vip-benefits, .vip-levels {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.vip-benefits h3, .vip-levels h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.vip-perks {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vip-perks li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.vip-perks li::before {
    content: '🌟';
    position: absolute;
    left: 0;
}

.levels-grid {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.level-card {
    padding: 16px 20px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    border: 1px solid;
}

.level-card.bronze {
    background: linear-gradient(135deg, #cd7f32, #b8691a);
    border-color: #cd7f32;
}

.level-card.silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    border-color: #c0c0c0;
}

.level-card.gold {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    border-color: #ffd700;
    color: #000000;
}

.level-card.diamond {
    background: linear-gradient(135deg, #b9f2ff, #87ceeb);
    border-color: #b9f2ff;
    color: #000000;
}

.vip-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* Platform Features Section */
.platform-features-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
    padding: 80px 0;
}

.platform-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.platform-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 40px;
}

.platform-features h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.game-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ff6b35;
    text-align: center;
    color: #cccccc;
    font-size: 14px;
}

.casino-experience {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.casino-experience h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.casino-experience p {
    color: #cccccc;
    margin-bottom: 20px;
}

.casino-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.casino-features li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.casino-features li::before {
    content: '💰';
    position: absolute;
    left: 0;
}

.platform-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* Mobile App Section */
.mobile-app-section {
    background: #111111;
    padding: 80px 0;
}

.app-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.app-features, .app-notifications {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.app-features h3, .app-notifications h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.app-benefits, .notification-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.app-benefits li, .notification-features li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.app-benefits li::before {
    content: '📱';
    position: absolute;
    left: 0;
}

.notification-features li::before {
    content: '🔔';
    position: absolute;
    left: 0;
}

.app-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* Member Benefits Section */
.member-benefits-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
    padding: 80px 0;
}

.member-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.member-benefits, .cashback-program {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.member-benefits h3, .cashback-program h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.member-perks {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.member-perks li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.member-perks li::before {
    content: '🎁';
    position: absolute;
    left: 0;
}

.cashback-tiers {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.tier {
    background: rgba(255, 107, 53, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #ff6b35;
    color: #cccccc;
    font-size: 14px;
    text-align: center;
}

.member-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* Gaming Strategy Section */
.gaming-strategy-section {
    background: #111111;
    padding: 80px 0;
}

.strategy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.strategy-tips, .game-selection {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.strategy-tips h3, .game-selection h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.game-selection p {
    color: #cccccc;
    margin-bottom: 20px;
}

.tips-list {
    counter-reset: tip-counter;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tips-list li {
    counter-increment: tip-counter;
    color: #cccccc;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

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

.game-types {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.game-type {
    background: rgba(255, 107, 53, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #ff6b35;
    color: #cccccc;
    font-size: 14px;
}

.strategy-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* Security Section */
.security-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
    padding: 80px 0;
}

.security-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.security-features, .certifications {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.security-features h3, .certifications h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.security-list, .cert-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.security-list li, .cert-list li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

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

.cert-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

.security-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

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

.banking-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banking-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.banking-methods, .banking-advantages {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.banking-methods h3, .banking-advantages h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.banking-methods p {
    color: #cccccc;
    margin-bottom: 20px;
}

.methods-grid {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.method-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #ff6b35;
    color: #cccccc;
    font-size: 14px;
    text-align: center;
}

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

.advantages-list li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.advantages-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
}

.banking-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* Latest Games Section */
.latest-games-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0a 100%);
    padding: 80px 0;
}

.latest-games-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.latest-games-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.new-games, .popular-games {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.new-games h3, .popular-games h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.popular-games p {
    color: #cccccc;
    margin-bottom: 20px;
}

.new-games-grid {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.new-game {
    background: rgba(255, 107, 53, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #ff6b35;
    color: #cccccc;
    font-size: 14px;
    text-align: center;
}

.popular-list {
    counter-reset: popular-counter;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.popular-list li {
    counter-increment: popular-counter;
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 40px;
    position: relative;
}

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

.games-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 20px;
}

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

/* FAQ Section - Promotion Page */
.faq-section {
    background: #111111;
    padding: 80px 0;
}

.faq-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.faq-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

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

.summary-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-content > p {
    color: #cccccc;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.highlights, .contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.highlights h3, .contact-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.highlights-list, .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

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

.contact-list li {
    color: #cccccc;
    margin-bottom: 12px;
    font-size: 16px;
}

.final-cta {
    text-align: center;
    margin: 40px 0;
}

.final-cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    display: inline-block;
}

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

.disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    margin-top: 40px;
}

.disclaimer p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1024px) {
    .promotions-grid,
    .access-features,
    .slot-grid,
    .guide-grid,
    .vip-grid,
    .app-grid,
    .member-grid,
    .strategy-grid,
    .security-grid,
    .banking-grid,
    .games-showcase,
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .promotion-hero-title {
        font-size: 36px;
    }
}

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

    .promotion-hero-title {
        font-size: 28px;
    }

    .promotion-hero-description {
        font-size: 16px;
    }

    .main-promotions-section,
    .access-security-section,
    .slot-games-section,
    .credit-guide-section,
    .vip-program-section,
    .platform-features-section,
    .mobile-app-section,
    .member-benefits-section,
    .gaming-strategy-section,
    .security-section,
    .banking-system-section,
    .latest-games-section,
    .faq-section,
    .summary-section {
        padding: 60px 0;
    }

    .promotion-card,
    .access-feature,
    .slot-providers,
    .slot-features,
    .guide-steps,
    .guide-terms,
    .vip-benefits,
    .vip-levels,
    .platform-features,
    .casino-experience,
    .app-features,
    .app-notifications,
    .member-benefits,
    .cashback-program,
    .strategy-tips,
    .game-selection,
    .security-features,
    .certifications,
    .banking-methods,
    .banking-advantages,
    .new-games,
    .popular-games,
    .highlights,
    .contact-info {
        padding: 30px;
    }

    .faq-item {
        padding: 25px;
    }

    section h2 {
        font-size: 28px;
    }

    section h3 {
        font-size: 20px;
    }

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

@media (max-width: 480px) {
    .promotion-hero-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .promotion-hero-description {
        font-size: 14px;
    }

    .promotion-card,
    .access-feature,
    .slot-providers,
    .slot-features,
    .guide-steps,
    .guide-terms,
    .vip-benefits,
    .vip-levels,
    .platform-features,
    .casino-experience,
    .app-features,
    .app-notifications,
    .member-benefits,
    .cashback-program,
    .strategy-tips,
    .game-selection,
    .security-features,
    .certifications,
    .banking-methods,
    .banking-advantages,
    .new-games,
    .popular-games,
    .highlights,
    .contact-info {
        padding: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    section h2 {
        font-size: 24px;
    }

    section h3 {
        font-size: 18px;
    }

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

    .levels-grid,
    .cashback-tiers,
    .game-types,
    .methods-grid,
    .new-games-grid {
        gap: 10px;
    }
}

/* Performance Optimizations */
.promotion-hero-section::before,
.access-security-section,
.credit-guide-section,
.platform-features-section,
.member-benefits-section,
.security-section,
.latest-games-section,
.summary-section {
    will-change: transform;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.promotion-card,
.faq-item,
.access-feature,
.slot-providers,
.slot-features {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.promotion-card:nth-child(1) { animation-delay: 0.1s; }
.promotion-card:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus improvements for accessibility */
.promotion-cta:focus,
.feature-cta:focus,
.section-cta:focus,
.guide-cta:focus,
.vip-cta:focus,
.platform-cta:focus,
.app-cta:focus,
.member-cta:focus,
.strategy-cta:focus,
.security-cta:focus,
.banking-cta:focus,
.games-cta:focus,
.final-cta-button:focus {
    outline: 3px solid #ff6b35;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.2);
}

/* Print styles */
@media print {
    .promotion-hero-section::before,
    .access-security-section,
    .credit-guide-section,
    .platform-features-section,
    .member-benefits-section,
    .security-section,
    .latest-games-section,
    .summary-section {
        background: none !important;
    }

    .promotion-cta,
    .feature-cta,
    .section-cta,
    .guide-cta,
    .vip-cta,
    .platform-cta,
    .app-cta,
    .member-cta,
    .strategy-cta,
    .security-cta,
    .banking-cta,
    .games-cta,
    .final-cta-button {
        color: #333 !important;
        background: none !important;
        border: 2px solid #333 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .promotion-card,
    .faq-item,
    .access-feature,
    .slot-providers,
    .slot-features,
    .guide-steps,
    .guide-terms,
    .vip-benefits,
    .vip-levels,
    .platform-features,
    .casino-experience,
    .app-features,
    .app-notifications,
    .member-benefits,
    .cashback-program,
    .strategy-tips,
    .game-selection,
    .security-features,
    .certifications,
    .banking-methods,
    .banking-advantages,
    .new-games,
    .popular-games,
    .highlights,
    .contact-info {
        border: 2px solid #ffffff;
    }
}

/* Dark mode confirmation */
@media (prefers-color-scheme: light) {
    /* Force dark mode regardless of system preference */
    body {
        background-color: #0a0a0a !important;
        color: #ffffff !important;
    }
}

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    width: 100%;
    padding: 40px;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.form-input:valid {
    border-color: rgba(34, 197, 94, 0.5);
}

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

.login-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    outline: none;
}

.login-btn:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.6);
}

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

.login-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.register-btn {
    width: 100%;
    padding: 16px 24px;
    color: #ff6b35;
    text-decoration: none;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    outline: none;
}

.register-btn:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

.register-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

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

    .login-container {
        margin: 0 20px;
        padding: 30px 20px;
    }

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

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

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

@media (max-width: 480px) {
    .login-container {
        margin: 0 15px;
        padding: 25px 15px;
    }

    .login-title {
        font-size: 22px;
        line-height: 1.2;
    }

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

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

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

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

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

.btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    display: inline-block;
}

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

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

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

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

.btn-outline:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

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

    .register-container {
        margin: 0 20px;
        padding: 30px 20px;
    }

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

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

    .btn {
        padding: 16px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .register-container {
        margin: 0 15px;
        padding: 25px 15px;
    }

    .register-title {
        font-size: 22px;
        line-height: 1.2;
    }

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

    .btn {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* Responsible Gambling Content Styles */
.responsible-gambling-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 100px auto 60px;
    padding: 40px;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.responsible-gambling-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.responsible-gambling-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ff6b35;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.responsible-gambling-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #f7931e;
    margin: 30px 0 15px;
}

.responsible-gambling-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 25px 0 12px;
}

.responsible-gambling-content h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #cccccc;
    margin: 20px 0 10px;
}

.responsible-gambling-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

.responsible-gambling-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.responsible-gambling-content ul li {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.responsible-gambling-content ul li::before {
    content: '•';
    color: #ff6b35;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}

.responsible-gambling-content ol {
    padding-left: 20px;
    margin: 20px 0;
}

.responsible-gambling-content ol li {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.responsible-gambling-content ol li::marker {
    color: #ff6b35;
    font-weight: bold;
}

.responsible-gambling-content strong {
    color: #ffffff;
    font-weight: 600;
}

.responsible-gambling-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    margin: 40px 0;
}

/* Mobile Responsive for Responsible Gambling Content */
@media (max-width: 768px) {
    .responsible-gambling-content {
        margin: 80px auto 40px;
        padding: 30px 20px;
        border-radius: 8px;
    }

    .responsible-gambling-content h1 {
        font-size: 26px;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .responsible-gambling-content h2 {
        font-size: 22px;
        margin: 30px 0 18px;
    }

    .responsible-gambling-content h3 {
        font-size: 20px;
        margin: 25px 0 12px;
    }

    .responsible-gambling-content h4 {
        font-size: 17px;
        margin: 20px 0 10px;
    }

    .responsible-gambling-content h5 {
        font-size: 15px;
        margin: 18px 0 8px;
    }

    .responsible-gambling-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
        text-align: left;
    }

    .responsible-gambling-content ul li,
    .responsible-gambling-content ol li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .responsible-gambling-content ul li {
        padding-left: 20px;
    }

    .responsible-gambling-content ol {
        padding-left: 18px;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-content {
        margin: 70px auto 30px;
        padding: 25px 15px;
    }

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

    .responsible-gambling-content h2 {
        font-size: 20px;
        margin: 25px 0 15px;
    }

    .responsible-gambling-content h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .responsible-gambling-content h4 {
        font-size: 16px;
        margin: 18px 0 8px;
    }

    .responsible-gambling-content h5 {
        font-size: 14px;
        margin: 15px 0 6px;
    }

    .responsible-gambling-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .responsible-gambling-content ul li,
    .responsible-gambling-content ol li {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .responsible-gambling-content ul li {
        padding-left: 18px;
    }

    .responsible-gambling-content ol {
        padding-left: 16px;
    }
}