/* 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;
}

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

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-cta-btn {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    background: transparent;
    border: none;
    z-index: 1001;
}

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

.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 Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

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

.mobile-menu-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

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

.mobile-nav-item {
    margin-bottom: 2rem;
}

.mobile-nav-link {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem;
    display: block;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.mobile-nav-cta {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.mobile-nav-cta:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

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

    .nav-menu {
        display: none;
    }

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

    .logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem;
    }

    .logo {
        height: 30px;
    }

    .mobile-nav-link {
        font-size: 1.25rem;
    }

    .mobile-nav-cta {
        font-size: 1.25rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Active navigation state */
.nav-link.active,
.mobile-nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

.nav-link.active {
    font-weight: 700;
}

.mobile-nav-link.active {
    font-weight: 700;
    transform: translateX(5px);
}

/* Main content adjustment for fixed header */
main {
    margin-top: 80px;
}

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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 5rem 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, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.hero-cta-secondary {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

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

/* Technology Section */
.technology-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.tech-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.tech-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.tech-description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.tech-image {
    margin-top: 2rem;
}

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

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

.register-container {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

.btn-primary,
.btn-outline {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

@media (max-width: 768px) {
    .register-section {
        padding: 100px 1rem 40px;
    }

    .register-container {
        max-width: 320px;
        gap: 2rem;
    }

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

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

    .btn-primary,
    .btn-outline {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Demo Game Section */
.demo-game-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.demo-game-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.slot-machine {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #ffd700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
}

.slot-header h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
}

.slot-balance {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 215, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 15px;
    border: 1px solid #333;
}

.reel {
    background: #000;
    border: 2px solid #ffd700;
    border-radius: 10px;
    height: 120px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

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

.symbol {
    font-size: 3rem;
    text-align: center;
    padding: 0.5rem;
    display: none;
}

.symbol.active {
    display: block;
}

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

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

.bet-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: scale(1.05);
}

.bet-amount {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

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

.spin-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff8e8e 0%, #ff6b6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
}

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

.win-display {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    font-size: 1.1rem;
}

.demo-info {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #333;
}

.demo-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.demo-info li {
    padding: 0.5rem 0;
    color: #cccccc;
    font-size: 1rem;
}

.demo-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.demo-cta:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.game-category {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.game-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.game-features {
    padding-left: 1.5rem;
    color: #cccccc;
}

.game-features li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.game-image {
    margin-top: 2rem;
}

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

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

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

.financial-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.financial-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
}

.financial-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 1rem;
}

.financial-description {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.financial-features {
    list-style: none;
    padding: 0;
}

.financial-features li {
    padding: 0.75rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.financial-features li::before {
    content: '💰';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

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

/* VIP Section */
.vip-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.vip-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vip-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
}

.vip-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 1rem;
}

.vip-description {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

/* Support Section */
.support-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
}

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

.support-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
}

.support-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 1rem;
}

.support-description {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.support-description a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-description a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

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

/* Registration Section */
.registration-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.registration-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
}

.registration-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 1rem;
}

.registration-description {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.registration-description a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.registration-description a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
}

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

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

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        padding: 0 1.5rem;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

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

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

    .financial-content,
    .vip-content,
    .support-grid,
    .registration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

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

    .hero-section {
        padding: 3rem 0;
    }

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

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

    .tech-card,
    .game-category,
    .demo-info {
        padding: 1.5rem;
    }

    .slot-machine {
        padding: 1.5rem;
    }

    .slot-reels {
        padding: 1rem;
        gap: 0.5rem;
    }

    .symbol {
        font-size: 2rem;
    }

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

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

    .faq-item {
        padding: 1.5rem;
    }
}

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

    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .tech-title,
    .game-title,
    .financial-title,
    .vip-title,
    .support-title,
    .registration-title {
        font-size: 1.25rem;
    }

    .slot-machine {
        padding: 1rem;
    }

    .spin-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-bottom: 80px; /* Space for sticky buttons */
}

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

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.footer-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #333;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0 2rem;
}

.sticky-btn {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 1px solid #333;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Styles for Footer and Sticky Buttons */
@media (max-width: 1024px) {
    .sticky-buttons-container {
        padding: 0 1.5rem;
        gap: 0.75rem;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sticky-buttons-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .sticky-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        min-height: 45px;
    }

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

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

@media (max-width: 480px) {
    .sticky-buttons-container {
        gap: 0.25rem;
    }

    .sticky-btn {
        padding: 0.625rem 0.25rem;
        font-size: 0.75rem;
        min-height: 40px;
        border-radius: 8px;
    }

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

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

.login-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.login-content {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

.login-form {
    width: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

.login-btn {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    width: 100%;
}

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

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

.register-btn:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles for Login Page */
@media (max-width: 768px) {
    .login-section {
        padding: 6rem 0 3rem;
    }

    .login-container {
        padding: 0 1rem;
    }

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

    .login-form {
        padding: 2rem;
    }
}

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

    .login-form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
    }

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

/* Promotion Page Styles */

/* Hero Section */
.promotion-hero {
    padding-top: 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.promotion-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
}

/* Promotion Sections */
.promotion-section,
.main-promotions-section,
.game-promotions-section,
.vip-promotion-section,
.mobile-promotion-section,
.financial-promotion-section,
.sports-promotion-section,
.how-to-section,
.monthly-promotions-section,
.game-features-section,
.security-section,
.summary-section {
    padding: 4rem 0;
    border-bottom: 1px solid #333;
}

.promotion-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

/* Promotion Grid */
.promotion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.promotion-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.promotion-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.promotion-list {
    list-style: none;
    margin: 1.5rem 0;
}

.promotion-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    color: #cccccc;
}

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

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

.game-promo-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.game-promo-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.game-promo-list {
    list-style: none;
}

.game-promo-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

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

.promotion-action {
    text-align: center;
    margin-top: 2rem;
}

/* VIP Section */
.vip-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.vip-content h2 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.vip-content h3 {
    color: #ffed4e;
    margin: 1.5rem 0 1rem 0;
}

.vip-benefits-list {
    list-style: none;
}

.vip-benefits-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

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

.vip-monthly-promo {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.vip-monthly-promo h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.prize-list {
    margin: 1.5rem 0;
}

.prize-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #ffffff;
}

/* Mobile Promotions */
.mobile-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mobile-promo-card,
.mobile-app-features {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.mobile-promo-card h3,
.mobile-app-features h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.mobile-promo-list,
.app-features-list {
    list-style: none;
}

.mobile-promo-list li,
.app-features-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

.mobile-promo-list li:last-child,
.app-features-list li:last-child {
    border-bottom: none;
}

/* Financial Section */
.financial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.financial-info,
.deposit-bonus {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.financial-info h3,
.deposit-bonus h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.financial-list,
.payment-methods {
    list-style: none;
}

.financial-list li,
.payment-methods li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

.financial-list li:last-child,
.payment-methods li:last-child {
    border-bottom: none;
}

.bonus-tiers {
    margin: 1.5rem 0;
}

.bonus-tiers h5 {
    color: #ffed4e;
    margin-bottom: 1rem;
}

.bonus-tier {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #ffffff;
}

/* Sports Promotions */
.sports-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sports-promo-card,
.live-betting-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.sports-promo-card h3,
.live-betting-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.sports-promo-list,
.live-betting-list {
    list-style: none;
}

.sports-promo-list li,
.live-betting-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

.sports-promo-list li:last-child,
.live-betting-list li:last-child {
    border-bottom: none;
}

.live-betting-features h5 {
    color: #ffed4e;
    margin: 1rem 0;
}

/* How To Section */
.how-to-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.steps-card,
.terms-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.steps-card h3,
.terms-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 3rem;
    color: #cccccc;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background: #ffd700;
    color: #000;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.terms-content h4 {
    color: #ffed4e;
    margin: 1rem 0;
}

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

.terms-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

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

/* Contact Info */
.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    border: 1px solid #444;
}

.contact-info h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-item {
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.contact-action {
    text-align: center;
    margin-top: 2rem;
}

/* Monthly Promotions */
.monthly-promo-content {
    text-align: center;
}

.monthly-promo-content h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.grand-opening-promo {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    border: 1px solid #444;
}

.grand-opening-promo h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.opening-promo-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #ffffff;
}

.weekly-activities {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    border: 1px solid #444;
}

.weekly-activities h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.weekly-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #ffffff;
    text-align: center;
}

.monthly-action {
    margin-top: 2rem;
}

/* Game Features */
.game-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.game-feature-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.game-feature-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.game-feature-list {
    list-style: none;
}

.game-feature-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

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

.game-action {
    text-align: center;
    margin-top: 2rem;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.security-card,
.transparency-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.security-card h3,
.transparency-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.security-list,
.transparency-list {
    list-style: none;
}

.security-list li,
.transparency-list li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

.security-list li:last-child,
.transparency-list li:last-child {
    border-bottom: none;
}

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

.faq-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.faq-action {
    text-align: center;
    margin-top: 2rem;
}

/* Summary Section */
.summary-content {
    text-align: center;
}

.benefits-grid {
    margin: 2rem 0;
}

.benefits-grid h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.benefits-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.benefit-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #ffd700;
    color: #ffffff;
    text-align: center;
    min-width: 200px;
}

.summary-cta {
    margin-top: 2rem;
}

.final-contact {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    border: 1px solid #444;
}

.final-contact h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-details span {
    color: #cccccc;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 2rem 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

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

.disclaimer-content p {
    color: #888;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .vip-promo-grid,
    .financial-grid,
    .how-to-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-promo-grid,
    .mobile-promo-grid,
    .sports-promo-grid,
    .game-features-grid {
        grid-template-columns: 1fr;
    }

    .opening-promo-grid,
    .weekly-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list-container {
        flex-direction: column;
        align-items: center;
    }

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

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

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

@media (max-width: 480px) {
    .promotion-card,
    .game-promo-card,
    .mobile-promo-card,
    .mobile-app-features,
    .financial-info,
    .deposit-bonus,
    .sports-promo-card,
    .live-betting-card,
    .steps-card,
    .terms-card,
    .game-feature-card,
    .security-card,
    .transparency-card,
    .faq-item {
        padding: 1.5rem;
    }

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

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

/* Privacy Policy Page Styles */
.privacy-policy-content {
    max-width: 100%;
    padding: 3rem 0;
    line-height: 1.8;
    color: #cccccc;
    font-size: 1rem;
}

.privacy-policy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.privacy-policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.privacy-policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffed4e;
    margin: 2rem 0 1rem 0;
}

.privacy-policy-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffed4e;
    margin: 1.5rem 0 1rem 0;
}

.privacy-policy-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.privacy-policy-content ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.privacy-policy-content ul li:last-child {
    border-bottom: none;
}

.privacy-policy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.privacy-policy-content a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-policy-content a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

.privacy-policy-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 3rem 0;
}

.privacy-policy-content em {
    color: #aaaaaa;
    font-style: italic;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .privacy-policy-content {
        padding: 2rem 0;
    }

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

    .privacy-policy-content h2 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1.25rem 0;
    }

    .privacy-policy-content h3 {
        font-size: 1.125rem;
        margin: 1.75rem 0 0.875rem 0;
    }

    .privacy-policy-content h4 {
        font-size: 1rem;
        margin: 1.25rem 0 0.75rem 0;
    }
}

@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 1.5rem 0;
        font-size: 0.95rem;
    }

    .privacy-policy-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.375rem;
        margin: 2rem 0 1rem 0;
    }

    .privacy-policy-content h3 {
        font-size: 1.0625rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .privacy-policy-content h4 {
        font-size: 0.9375rem;
        margin: 1rem 0 0.5rem 0;
    }

    .privacy-policy-content p {
        margin-bottom: 1.25rem;
        text-align: left;
    }

    .privacy-policy-content ul {
        margin: 1.25rem 0;
    }

    .privacy-policy-content ul li {
        padding: 0.375rem 0 0.375rem 1.5rem;
        margin-bottom: 0.5rem;
    }
}

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

    .privacy-policy-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.25rem;
        margin: 1.75rem 0 0.875rem 0;
    }

    .privacy-policy-content h3 {
        font-size: 1rem;
        margin: 1.25rem 0 0.625rem 0;
    }

    .privacy-policy-content h4 {
        font-size: 0.875rem;
        margin: 1rem 0 0.5rem 0;
    }

    .privacy-policy-content p {
        margin-bottom: 1rem;
    }

    .privacy-policy-content ul {
        margin: 1rem 0;
    }

    .privacy-policy-content ul li {
        padding: 0.25rem 0 0.25rem 1.25rem;
        margin-bottom: 0.375rem;
    }

    .privacy-policy-content ul li::before {
        font-size: 1rem;
    }
}

/* Footer adjustment for privacy policy page (no sticky buttons) */
.privacy-policy-content ~ .site-footer {
    margin-bottom: 0;
}

/* Terms and Conditions Content Styles */
.terms-conditions-content {
    max-width: 100%;
    padding: 3rem 0;
    line-height: 1.8;
    color: #cccccc;
    font-size: 1rem;
}

.terms-conditions-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.terms-conditions-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.terms-conditions-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffed4e;
    margin: 2rem 0 1rem 0;
}

.terms-conditions-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffed4e;
    margin: 1.5rem 0 1rem 0;
}

.terms-conditions-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terms-conditions-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.terms-conditions-content ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.terms-conditions-content ul li:last-child {
    border-bottom: none;
}

.terms-conditions-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.terms-conditions-content a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-conditions-content a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

.terms-conditions-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 3rem 0;
}

.terms-conditions-content em {
    color: #aaaaaa;
    font-style: italic;
}

/* Responsive Design for Terms and Conditions */
@media (max-width: 1024px) {
    .terms-conditions-content {
        padding: 2rem 0;
    }

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

    .terms-conditions-content h2 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1.25rem 0;
    }

    .terms-conditions-content h3 {
        font-size: 1.125rem;
        margin: 1.75rem 0 0.875rem 0;
    }

    .terms-conditions-content h4 {
        font-size: 1rem;
        margin: 1.25rem 0 0.75rem 0;
    }
}

@media (max-width: 768px) {
    .terms-conditions-content {
        padding: 1.5rem 0;
        font-size: 0.95rem;
    }

    .terms-conditions-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .terms-conditions-content h2 {
        font-size: 1.375rem;
        margin: 2rem 0 1rem 0;
    }

    .terms-conditions-content h3 {
        font-size: 1.0625rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .terms-conditions-content h4 {
        font-size: 0.9375rem;
        margin: 1rem 0 0.5rem 0;
    }

    .terms-conditions-content p {
        margin-bottom: 1.25rem;
        text-align: left;
    }

    .terms-conditions-content ul {
        margin: 1.25rem 0;
    }

    .terms-conditions-content ul li {
        padding: 0.375rem 0 0.375rem 1.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .terms-conditions-content {
        padding: 1rem 0;
        font-size: 0.9rem;
    }

    .terms-conditions-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .terms-conditions-content h2 {
        font-size: 1.25rem;
        margin: 1.75rem 0 0.875rem 0;
    }

    .terms-conditions-content h3 {
        font-size: 1rem;
        margin: 1.25rem 0 0.625rem 0;
    }

    .terms-conditions-content h4 {
        font-size: 0.875rem;
        margin: 1rem 0 0.5rem 0;
    }

    .terms-conditions-content p {
        margin-bottom: 1rem;
    }

    .terms-conditions-content ul {
        margin: 1rem 0;
    }

    .terms-conditions-content ul li {
        padding: 0.25rem 0 0.25rem 1.25rem;
        margin-bottom: 0.375rem;
    }

    .terms-conditions-content ul li::before {
        font-size: 1rem;
    }
}

/* Footer adjustment for terms and conditions page (no sticky buttons) */
.terms-conditions-content ~ .site-footer {
    margin-bottom: 0;
}