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

html {
    scroll-behavior: smooth;
}

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

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

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative;
}

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

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

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

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

.logo span {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-desktop li a {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-desktop li a:active {
    transform: translateY(0);
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
}

.cta-button a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
}

.cta-button a:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

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

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

.mobile-menu-toggle:hover .hamburger-line {
    background-color: #ffd700;
}

.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 */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

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

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

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

.nav-mobile li:last-child {
    margin-bottom: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-mobile li a {
    display: block;
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.nav-mobile .mobile-cta {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff !important;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-mobile .mobile-cta:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 12px 20px;
    }

    .nav-desktop ul {
        gap: 20px;
    }

    .nav-desktop li a {
        font-size: 15px;
        padding: 8px 12px;
    }

    .cta-button a {
        padding: 10px 16px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .cta-button {
        display: none;
    }

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

    .header-container {
        padding: 10px 15px;
    }

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

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

    main {
        margin-top: 70px;
    }
}

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

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

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

    .nav-mobile ul {
        padding: 15px;
    }

    .nav-mobile li a {
        font-size: 16px;
        padding: 12px 15px;
    }

    main {
        margin-top: 60px;
    }
}

/* Header Scroll Effect */
.header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Animation Classes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInDown 0.6s ease-out;
}

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

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

    .nav-desktop li a:hover,
    .nav-mobile li a:hover {
        background-color: #333333;
    }
}

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

/* Homepage Styles */

/* Container Base */
.hero-container,
.demo-container,
.games-container,
.win-container,
.membership-container,
.platform-container,
.responsible-container,
.faq-container,
.disclaimer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.primary-btn:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.secondary-btn {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
}

.secondary-btn:hover {
    background: #ffd700;
    color: #0a0a0a;
    transform: translateY(-2px);
}

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

/* Demo Game Section */
.demo-game {
    background: #111111;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.demo-container {
    text-align: center;
}

.demo-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.demo-container > p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 50px;
}

.slot-machine {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.slot-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    background: #0a0a0a;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #ffd700;
}

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

.slot-symbol {
    font-size: 3rem;
    text-align: center;
    padding: 10px 0;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

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

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

.slot-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 600;
    color: #ffd700;
}

.spin-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    min-width: 120px;
    justify-content: center;
}

.spin-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

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

.bet-controls {
    display: flex;
    gap: 10px;
}

.bet-btn {
    background: #333;
    border: 1px solid #ffd700;
    color: #ffd700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.bet-btn:hover {
    background: #ffd700;
    color: #0a0a0a;
}

.slot-message {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-message.win {
    color: #4CAF50;
    animation: pulse 1s ease-in-out;
}

.slot-message.lose {
    color: #ff6b35;
}

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

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

.slot-reel.spinning .slot-symbol {
    animation: spin 0.1s linear infinite;
}

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

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

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

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

.game-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.game-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-content {
    padding: 30px;
}

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

.game-content > p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

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

.game-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.game-features i {
    color: #ff6b35;
    width: 16px;
}

.features-grid h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.features-grid > p {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.feature-item {
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #151515);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.feature-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Win Section */
.win-section {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    padding: 80px 0;
}

.win-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.win-content > p {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.dimension-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dimension-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.dimension-card i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 25px;
    display: block;
}

.dimension-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
}

.dimension-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Membership Section */
.membership {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.membership-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.membership-content > p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.signup-steps h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
}

.signup-steps ol {
    color: #e0e0e0;
    line-height: 1.7;
    padding-left: 20px;
}

.signup-steps li {
    margin-bottom: 15px;
}

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

.member-benefits h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: linear-gradient(145deg, #1a1a1a, #151515);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

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

.platform h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.platform > .platform-container > p {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.platform-feature {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.platform-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.platform-feature i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 25px;
    display: block;
}

.platform-feature h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
}

.platform-feature p {
    color: #e0e0e0;
    line-height: 1.6;
}

.security-features h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
}

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

.security-item {
    background: linear-gradient(145deg, #1a1a1a, #151515);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

/* Responsible Gaming Section */
.responsible-gaming {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.responsible-text h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

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

.responsible-principles h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

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

.principle-item {
    background: linear-gradient(145deg, #1a1a1a, #151515);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.principle-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

.principle-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

.principle-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    padding: 80px 0;
}

.faq h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-category h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #151515);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

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

.faq-footer {
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

/* Disclaimer Section */
.disclaimer {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.disclaimer p {
    text-align: center;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.disclaimer a {
    color: #ffd700;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

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

    .hero-visual {
        order: -1;
    }
}

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

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

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

    .demo-game,
    .games,
    .win-section,
    .membership,
    .platform,
    .responsible-gaming,
    .faq {
        padding: 60px 0;
    }

    .section-header h2,
    .win-content h2,
    .membership-content h2,
    .platform h2,
    .responsible-text h2 {
        font-size: 1.8rem;
    }

    .slot-machine {
        padding: 20px;
    }

    .slot-display {
        gap: 10px;
        padding: 20px;
    }

    .slot-reel {
        width: 60px;
        height: 90px;
    }

    .slot-symbol {
        font-size: 2rem;
    }

    .slot-controls {
        flex-direction: column;
        align-items: center;
    }

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

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

@media (max-width: 480px) {
    .hero-container,
    .demo-container,
    .games-container,
    .win-container,
    .membership-container,
    .platform-container,
    .responsible-container,
    .faq-container,
    .disclaimer-container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-header h2,
    .win-content h2,
    .membership-content h2,
    .platform h2,
    .responsible-text h2 {
        font-size: 1.5rem;
    }

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

    .slot-reel {
        width: 50px;
        height: 75px;
    }

    .slot-symbol {
        font-size: 1.5rem;
    }

    .features-list,
    .win-dimensions,
    .benefits-grid,
    .platform-grid,
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

/* Footer Styles */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 40px 0;
}

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

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

.footer-legal-links a {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-legal-links a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.footer-legal-links a:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    padding: 15px 20px;
    gap: 15px;
    max-width: 1280px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    box-sizing: border-box;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 70px;
}

.sticky-btn i {
    font-size: 20px;
    display: block;
}

.sticky-btn span {
    text-align: center;
    line-height: 1.2;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #1976D2, #2196F3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

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

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

    .footer-legal-links a {
        font-size: 13px;
    }

    .sticky-buttons {
        padding: 12px 15px;
        gap: 12px;
    }

    .sticky-btn {
        padding: 10px 6px;
        gap: 6px;
        min-height: 65px;
        font-size: 13px;
    }

    .sticky-btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-legal-links {
        gap: 15px;
    }

    .footer-legal-links a {
        font-size: 12px;
    }

    .sticky-buttons {
        padding: 10px 12px;
        gap: 10px;
    }

    .sticky-btn {
        padding: 8px 4px;
        gap: 5px;
        min-height: 60px;
        font-size: 12px;
    }

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

    body {
        padding-bottom: 85px;
    }
}

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

    .footer-legal-links a:hover {
        background-color: #333333;
    }

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

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.98) 0%,
        rgba(26, 26, 26, 0.95) 50%,
        rgba(10, 10, 10, 0.98) 100%),
        url('images/casino-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 40px;
    position: relative;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
        rgba(255, 215, 0, 0.05) 0%,
        rgba(10, 10, 10, 0.8) 70%);
    z-index: 1;
}

.login-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.login-content {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-form {
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        #ffd700 50%,
        transparent 100%);
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

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

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

.login-btn {
    width: 100%;
    padding: 18px 24px;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    transition: left 0.5s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

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

.register-btn {
    width: 100%;
    padding: 18px 24px;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
    z-index: 1;
}

.register-btn:hover::before {
    width: 100%;
}

.register-btn i,
.register-btn span {
    position: relative;
    z-index: 2;
}

.register-btn:hover {
    color: #0a0a0a;
    border-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

/* Login Page Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 15px 30px;
        min-height: calc(100vh - 70px);
    }

    .login-content h1 {
        font-size: clamp(24px, 6vw, 30px);
        margin-bottom: 30px;
    }

    .login-form {
        padding: 30px 20px;
        border-radius: 16px;
    }

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

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

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

    .form-buttons {
        gap: 12px;
        margin-top: 25px;
    }

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

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

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

    .login-content h1 {
        font-size: clamp(20px, 7vw, 26px);
        margin-bottom: 25px;
    }

    .login-form {
        padding: 25px 15px;
        border-radius: 12px;
    }

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

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

/* High Contrast Mode Support for Login Page */
@media (prefers-contrast: high) {
    .login-form {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .form-group input {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .form-group input:focus {
        border-color: #ffffff;
        box-shadow: 0 0 0 2px #ffffff;
    }

    .login-btn {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }

    .register-btn {
        border-color: #ffffff;
        color: #ffffff;
    }

    .register-btn:hover {
        background: #ffffff;
        color: #000000;
    }
}

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.register-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.register-container h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.register-form {
    width: 100%;
    max-width: 450px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.register-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        #ffd700 50%,
        transparent 100%);
    z-index: 1;
}

.register-submit-btn {
    width: 100%;
    padding: 18px 24px;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.register-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.register-submit-btn:hover::before {
    left: 100%;
}

.register-submit-btn:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

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

.register-submit-btn i,
.register-submit-btn span {
    position: relative;
    z-index: 2;
}

.login-link-btn {
    width: 100%;
    padding: 18px 24px;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.login-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
    z-index: 1;
}

.login-link-btn:hover::before {
    width: 100%;
}

.login-link-btn i,
.login-link-btn span {
    position: relative;
    z-index: 2;
}

.login-link-btn:hover {
    color: #0a0a0a;
    border-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

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

    .register-container h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .register-form {
        padding: 30px 20px;
        border-radius: 16px;
        max-width: 400px;
    }

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

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

    .register-container h1 {
        font-size: 1.75rem;
    }

    .register-form {
        padding: 25px 15px;
        border-radius: 12px;
        max-width: 350px;
    }

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

/* High Contrast Mode Support for Register Page */
@media (prefers-contrast: high) {
    .register-form {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .register-submit-btn {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }

    .login-link-btn {
        border-color: #ffffff;
        color: #ffffff;
    }

    .login-link-btn:hover {
        background: #ffffff;
        color: #000000;
    }
}

/* Promotion Page Styles */

/* Welcome Bonus Section */
.welcome-bonus {
    background: #111111;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.bonus-highlight {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bonus-highlight h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-highlight h3 i {
    color: #ff6b35;
    font-size: 2rem;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.bonus-item {
    background: linear-gradient(145deg, #151515, #1a1a1a);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.bonus-item h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.bonus-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

.bonus-cta, .win-cta {
    text-align: center;
    margin-top: 30px;
}

.welcome-package {
    background: linear-gradient(145deg, #1a1a1a, #151515);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.welcome-package h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-package h3 i {
    color: #ff6b35;
    font-size: 1.8rem;
}

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

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

.benefit-item:hover {
    transform: translateY(-2px);
}

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

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

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

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

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

.slot-promo-main, .wintabet-win {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.slot-promo-main h3, .wintabet-win h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slot-promo-main h3 i, .wintabet-win h3 i {
    color: #ff6b35;
    font-size: 1.8rem;
}

.promo-features, .win-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.promo-features li, .win-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    color: #e0e0e0;
    line-height: 1.6;
}

.promo-features li i, .win-features li i {
    color: #ff6b35;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* VIP Membership Section */
.vip-membership {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    padding: 80px 0;
}

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

.vip-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vip-privileges {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.vip-privileges h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vip-privileges h3 i {
    color: #ff6b35;
    font-size: 2rem;
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.vip-benefit {
    background: linear-gradient(145deg, #151515, #1a1a1a);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vip-benefit:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.vip-benefit i {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.vip-benefit h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.vip-benefit p {
    color: #e0e0e0;
    line-height: 1.6;
}

.vip-levels {
    background: linear-gradient(145deg, #1a1a1a, #151515);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.vip-levels h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.vip-levels h3 i {
    color: #ff6b35;
    font-size: 1.8rem;
}

.vip-levels-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vip-level {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, #151515, #111111);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vip-level:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.level-content h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.level-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Daily Weekly Promotions */
.daily-weekly-promos {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.daily-promotions {
    margin-bottom: 60px;
}

.daily-promotions h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.daily-promotions h3 i {
    color: #ff6b35;
    font-size: 2rem;
}

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

.daily-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.daily-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.daily-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.daily-item h4 i {
    color: #ff6b35;
    font-size: 1.3rem;
}

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

.daily-item li {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.daily-item li:before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.daily-promo-cta {
    text-align: center;
}

.monthly-promotions h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.monthly-promotions h3 i {
    color: #ff6b35;
    font-size: 2rem;
}

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

.monthly-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.monthly-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.monthly-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.monthly-item li {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.monthly-item li:before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* How to Get Promotions */
.how-to-get {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    padding: 80px 0;
}

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

.signup-process {
    margin-bottom: 60px;
}

.signup-process h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.step-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

.step-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

.step-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.step-content a:hover {
    text-decoration: underline;
}

.contact-section h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-section h3 i {
    color: #ff6b35;
    font-size: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

.contact-info strong {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
}

.contact-info span {
    color: #e0e0e0;
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Terms and Conditions */
.terms-conditions {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

.general-terms, .betting-conditions {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.general-terms h3, .betting-conditions h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.general-terms h3 i, .betting-conditions h3 i {
    color: #ff6b35;
    font-size: 1.8rem;
}

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

.term-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: #e0e0e0;
    line-height: 1.6;
}

.term-item strong {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
}

.betting-terms {
    margin-bottom: 30px;
}

.betting-section {
    margin-bottom: 25px;
}

.betting-section h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.betting-section li {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.betting-section li:before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

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

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

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

.summary-content {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.summary-content p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.start-today h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.start-today h3 i {
    color: #ff6b35;
    font-size: 1.8rem;
}

.final-cta {
    text-align: center;
    margin-top: 30px;
}

.primary-btn.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.summary-contact {
    background: linear-gradient(145deg, #1a1a1a, #151515);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.summary-contact h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-final {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-final p {
    color: #e0e0e0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-final i {
    color: #ff6b35;
}

.disclaimer {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 20px;
}

/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1200px) {
    .slot-promo-content,
    .terms-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .welcome-bonus,
    .slot-promotions,
    .vip-membership,
    .daily-weekly-promos,
    .how-to-get,
    .terms-conditions,
    .summary {
        padding: 60px 0;
    }

    .bonus-features,
    .vip-benefits-grid,
    .steps-container,
    .contact-grid,
    .monthly-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vip-levels-list {
        gap: 12px;
    }

    .vip-level {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-final {
        flex-direction: column;
        gap: 15px;
    }

    .daily-schedule {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .welcome-bonus-container,
    .slot-promotions-container,
    .vip-membership-container,
    .daily-weekly-container,
    .how-to-get-container,
    .terms-conditions-container,
    .summary-container {
        padding: 0 15px;
    }

    .bonus-highlight,
    .welcome-package,
    .slot-promo-main,
    .wintabet-win,
    .vip-privileges,
    .vip-levels,
    .general-terms,
    .betting-conditions,
    .summary-content,
    .summary-contact {
        padding: 25px 20px;
    }

    .package-benefits,
    .promo-features,
    .win-features {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .level-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    display: flex;
    flex-direction: column;
}

.privacy-policy-content {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.privacy-policy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.privacy-policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

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

.privacy-policy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    text-align: justify;
}

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

.privacy-policy-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    list-style-type: disc;
}

.privacy-policy-content li strong {
    color: #FFD700;
    font-weight: 700;
}

.privacy-policy-content section {
    margin-bottom: 2rem;
}

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

.policy-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.policy-footer p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 0.8rem;
}

.policy-footer em {
    font-style: italic;
    color: #888888;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 100px 15px 40px;
    }

    .privacy-policy-content {
        padding: 25px;
        border-radius: 8px;
    }

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

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

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

    .privacy-policy-content p,
    .privacy-policy-content li {
        font-size: 1rem;
        line-height: 1.7;
    }

    .privacy-policy-content ul {
        margin-left: 1rem;
        padding-left: 0.8rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 90px 10px 30px;
    }

    .privacy-policy-content {
        padding: 20px;
    }

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

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

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

    .privacy-policy-content p,
    .privacy-policy-content li {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* Terms and Conditions Styles */
.terms-conditions {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.terms-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.terms-container h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.terms-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin: 2.5rem 0 1.5rem 0;
    line-height: 1.3;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 0.5rem;
}

.terms-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.terms-container h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #cccccc;
    margin: 1.5rem 0 0.8rem 0;
    line-height: 1.3;
}

.terms-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terms-container ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.terms-container ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    list-style-type: disc;
    list-style-position: outside;
}

.terms-container ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.terms-container ol li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    list-style-type: decimal;
    list-style-position: outside;
}

.terms-container strong {
    color: #ffd700;
    font-weight: 600;
}

.terms-container em {
    color: #cccccc;
    font-style: italic;
}

.terms-container hr {
    border: none;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    margin: 3rem 0;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .terms-conditions {
        padding: 100px 0 50px;
    }

    .terms-container {
        padding: 0 15px;
    }

    .terms-container h1 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .terms-container h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1.2rem 0;
    }

    .terms-container h3 {
        font-size: 1.3rem;
        margin: 1.8rem 0 0.8rem 0;
    }

    .terms-container h4 {
        font-size: 1.1rem;
        margin: 1.3rem 0 0.6rem 0;
    }

    .terms-container p,
    .terms-container li {
        font-size: 1rem;
        line-height: 1.7;
    }

    .terms-container ul,
    .terms-container ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .terms-conditions {
        padding: 90px 0 40px;
    }

    .terms-container {
        padding: 0 10px;
    }

    .terms-container h1 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    .terms-container h2 {
        font-size: 1.4rem;
        margin: 1.8rem 0 1rem 0;
    }

    .terms-container h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .terms-container h4 {
        font-size: 1rem;
        margin: 1.2rem 0 0.6rem 0;
    }

    .terms-container p,
    .terms-container li {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }

    .terms-container ul,
    .terms-container ol {
        padding-left: 1.2rem;
    }
}

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

    .terms-container {
        padding: 0 8px;
    }

    .terms-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .terms-container h2 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .terms-container h3 {
        font-size: 1.1rem;
        margin: 1.3rem 0 0.6rem 0;
    }

    .terms-container h4 {
        font-size: 0.95rem;
        margin: 1rem 0 0.5rem 0;
    }

    .terms-container p,
    .terms-container li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .terms-container ul,
    .terms-container ol {
        padding-left: 1rem;
    }

    .terms-container li {
        margin-bottom: 0.6rem;
    }
}

/* Responsible Gambling Policy Page Styles */
.responsible-gambling-policy {
    min-height: calc(100vh - 80px);
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.responsible-gambling-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.policy-content {
    width: 100%;
}

.policy-content h1 {
    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, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.policy-section {
    margin-bottom: 3rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.policy-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.subsection {
    margin-bottom: 2rem;
}

.subsection:last-child {
    margin-bottom: 0;
}

.subsection h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffed4e;
    margin-bottom: 1rem;
}

.principle {
    margin-bottom: 1.5rem;
}

.principle:last-child {
    margin-bottom: 0;
}

.principle h4 {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.principle h5 {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.6rem;
    margin-top: 1rem;
}

.policy-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-content li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.policy-content strong {
    color: #ffd700;
    font-weight: 700;
}

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

.help-organization {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.help-organization:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(30, 30, 30, 0.8);
}

.help-organization:last-child {
    margin-bottom: 0;
}

.commitment-list {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.commitment-list li {
    position: relative;
    padding-left: 1.5rem;
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

.policy-footer {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.policy-footer p {
    margin-bottom: 0.8rem;
    text-align: center;
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

.policy-footer strong {
    color: #ffd700;
}

.policy-footer .warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #fff3cd;
}

.policy-footer .reference {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

.policy-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.3) 50%,
        transparent 100%);
    margin: 2rem 0;
}

/* Responsive Design for Responsible Gambling Policy */
@media (max-width: 1024px) {
    .responsible-gambling-policy {
        padding: 100px 0 60px;
    }

    .policy-container {
        padding: 0 15px;
    }

    .policy-content h1 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .policy-section {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .subsection h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .responsible-gambling-policy {
        padding: 90px 0 50px;
    }

    .policy-container {
        padding: 0 10px;
    }

    .policy-content h1 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    .policy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 12px;
    }

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

    .subsection h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .principle h4 {
        font-size: 1rem;
    }

    .principle h5 {
        font-size: 0.95rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }

    .policy-content ul,
    .policy-content ol {
        padding-left: 1.5rem;
    }

    .help-organization {
        padding: 1.2rem;
    }

    .commitment-list {
        padding: 1.5rem;
    }

    .policy-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-policy {
        padding: 80px 0 40px;
    }

    .policy-container {
        padding: 0 8px;
    }

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

    .policy-section {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }

    .policy-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .subsection {
        margin-bottom: 1.5rem;
    }

    .subsection h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .principle {
        margin-bottom: 1.2rem;
    }

    .principle h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .principle h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .policy-content ul,
    .policy-content ol {
        padding-left: 1.2rem;
    }

    .policy-content li {
        margin-bottom: 0.4rem;
    }

    .help-organization {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .commitment-list {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }

    .commitment-list li {
        padding-left: 1.2rem;
    }

    .policy-footer {
        padding: 1.2rem;
    }

    .policy-footer p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .policy-footer .warning {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .policy-footer .reference {
        font-size: 0.8rem;
    }
}

/* High Contrast Mode Support for Responsible Gambling Policy */
@media (prefers-contrast: high) {
    .policy-section {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .help-organization {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .commitment-list {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .policy-footer {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .policy-footer .warning {
        background: #000000;
        border: 2px solid #ffffff;
        color: #ffffff;
    }
}