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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

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

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

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

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

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

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

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

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-top: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

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

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

.nav-mobile-list li {
    margin: 0;
}

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

.nav-mobile-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 30px;
}

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

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

/* Main Content Adjustment */
main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-list {
        gap: 24px;
    }

    .nav-link {
        font-size: 15px;
        padding: 6px 12px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

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

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

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

    .nav-desktop {
        display: none;
    }

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

    main {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }
}

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

    .header-content {
        height: 55px;
    }

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

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

    .mobile-menu-btn {
        width: 35px;
        height: 35px;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
    }

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

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

    main {
        margin-top: 55px;
        min-height: calc(100vh - 55px);
    }
}

/* Additional Mobile Menu Animation */
@media (max-width: 768px) {
    .nav-mobile-list li {
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.3s ease forwards;
    }

    .nav-mobile-list li:nth-child(1) { animation-delay: 0.1s; }
    .nav-mobile-list li:nth-child(2) { animation-delay: 0.2s; }
    .nav-mobile-list li:nth-child(3) { animation-delay: 0.3s; }
    .nav-mobile-list li:nth-child(4) { animation-delay: 0.4s; }
    .nav-mobile-list li:nth-child(5) { animation-delay: 0.5s; }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scroll Offset for Fixed Header */
html {
    scroll-padding-top: 70px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 60px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 55px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-top: 1px solid #333;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    list-style: none;
    flex-wrap: wrap;
}

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

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

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

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.sticky-btn {
    flex: 1;
    max-width: 300px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.sticky-btn-login:hover {
    background: linear-gradient(45deg, #357abd, #4a90e2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.sticky-btn-register {
    background: linear-gradient(45deg, #7b68ee, #6a5acd);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(123, 104, 238, 0.3);
}

.sticky-btn-register:hover {
    background: linear-gradient(45deg, #6a5acd, #7b68ee);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.4);
}

.sticky-btn-credit {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.sticky-btn-credit:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

/* Add bottom padding to body to prevent content from being hidden behind sticky buttons */
body {
    padding-bottom: 80px;
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
        margin-top: 40px;
    }

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

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

@media (max-width: 480px) {
    .footer {
        padding: 16px 0;
        margin-top: 30px;
    }

    .footer-nav-list {
        gap: 16px;
    }

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

/* Sticky Buttons Responsive Styles */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 10px 0;
    }

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

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

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        padding: 8px 0;
    }

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

    .sticky-btn {
        font-size: 12px;
        padding: 8px 10px;
        border-radius: 14px;
    }

    body {
        padding-bottom: 65px;
    }
}

/* Homepage Styles */

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

/* Promotion Page Styles */

/* Promotion Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

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

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

.promotion-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Promotion Introduction Section */
.promotion-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.promotion-intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promotion-benefits {
    margin-bottom: 48px;
}

.promotion-benefits h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
}

.promotion-benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.promotion-benefits-list li {
    font-size: 1.125rem;
    color: #e0e0e0;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.promotion-benefits-list li:hover {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* CTA Section */
.promotion-cta-section {
    text-align: center;
    margin-top: 48px;
}

.promotion-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.promotion-cta-button:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.promotion-cta-button-large {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 20px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.promotion-cta-button-large:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Main Promotions Section */
.main-promotions {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.promotion-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.promotion-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.promotion-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

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

.promotion-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.promotion-feature:hover {
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

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

.promotion-feature-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.promotion-feature-content p {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
}

/* Promotion Steps */
.promotion-steps {
    margin-bottom: 40px;
}

.promotion-steps h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.promotion-steps ol {
    list-style: none;
    counter-reset: step-counter;
    max-width: 800px;
}

.promotion-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 16px 0 16px 60px;
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.promotion-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #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: 1rem;
}

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

.promotion-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.promotion-benefit-item:hover {
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(8px);
}

/* Promotion Terms */
.promotion-terms {
    margin-bottom: 40px;
}

.promotion-terms h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.promotion-terms ul {
    list-style: none;
    max-width: 800px;
}

.promotion-terms li {
    position: relative;
    padding-left: 32px;
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.promotion-terms li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Slot Promotions Section */
.slot-promotions {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.slot-promotion-intro {
    text-align: center;
    margin-bottom: 64px;
}

.slot-promotion-intro h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.slot-promotion-intro p {
    font-size: 1.125rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

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

.slot-promotion-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slot-promotion-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 32px;
    text-align: center;
}

.slot-promotion-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.slot-promotion-item:hover {
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

/* Popular Games */
.popular-games {
    margin-bottom: 48px;
}

.popular-games h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.game-item:hover {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

.game-number {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    width: 40px;
    text-align: center;
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-info strong {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.game-info span {
    font-size: 1rem;
    color: #b0b0b0;
}

/* Wallet Promotions Section */
.wallet-promotions {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.wallet-intro {
    text-align: center;
    margin-bottom: 64px;
}

.wallet-intro h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.wallet-intro p {
    font-size: 1.125rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.wallet-promotions-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.wallet-section {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.wallet-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 32px;
    text-align: center;
}

.wallet-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.wallet-feature:hover {
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(8px);
}

/* Payment Channels */
.payment-channels {
    margin-bottom: 48px;
}

.payment-channels h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1.125rem;
    color: #e0e0e0;
}

.payment-item:hover {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
    color: #ffffff;
}

/* Contact & Access Section */
.contact-access {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.access-info {
    margin-bottom: 64px;
}

.access-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
}

.access-info p {
    font-size: 1.125rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.access-steps {
    max-width: 800px;
    margin: 0 auto;
}

.access-steps h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

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

.access-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 16px 0 16px 60px;
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.access-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #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: 1rem;
}

.contact-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details strong {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-details span {
    font-size: 1rem;
    color: #b0b0b0;
}

/* Limited Time Promotions Section */
.limited-promotions {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.limited-intro {
    text-align: center;
    margin-bottom: 64px;
}

.limited-intro h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.limited-intro p {
    font-size: 1.125rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.limited-promotions-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.limited-promotion-section {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.limited-promotion-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 32px;
    text-align: center;
}

.limited-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.limited-feature:hover {
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(8px);
}

/* Follow Promotions */
.follow-promotions {
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.follow-promotions h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
}

.follow-promotions ol {
    list-style: none;
    counter-reset: step-counter;
}

.follow-promotions li {
    counter-increment: step-counter;
    position: relative;
    padding: 16px 0 16px 60px;
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.follow-promotions li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #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: 1rem;
}

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

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.faq-item {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

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

.faq-item p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

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

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

.summary-benefits {
    margin-bottom: 64px;
}

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

.summary-benefits p {
    font-size: 1.125rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.summary-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.summary-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.summary-benefit:hover {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

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

.summary-guarantee {
    margin-bottom: 64px;
}

.summary-guarantee h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

.guarantee-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #4CAF50;
}

.summary-final {
    text-align: center;
    margin-bottom: 48px;
}

.summary-final h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.summary-final p {
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

.disclaimer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin-bottom: 32px;
}

.disclaimer p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

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

    .promotion-intro-content h2,
    .main-promotions-content h2,
    .slot-promotions-content h2,
    .wallet-promotions-content h2,
    .contact-access-content h2,
    .limited-promotions-content h2,
    .faq-content h2,
    .summary-content h2 {
        font-size: 2rem;
    }

    .promotion-card {
        padding: 32px;
    }

    .slot-promotions-grid,
    .wallet-promotions-layout,
    .limited-promotions-layout {
        grid-template-columns: 1fr;
    }
}

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

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

    .promotion-intro,
    .main-promotions,
    .slot-promotions,
    .wallet-promotions,
    .contact-access,
    .limited-promotions,
    .faq-section,
    .summary-section {
        padding: 60px 0;
    }

    .promotion-intro-content h2,
    .main-promotions-content h2,
    .slot-promotions-content h2,
    .wallet-promotions-content h2,
    .contact-access-content h2,
    .limited-promotions-content h2,
    .faq-content h2,
    .summary-content h2 {
        font-size: 1.75rem;
    }

    .promotion-card {
        padding: 24px;
        margin-bottom: 32px;
    }

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

    .promotion-benefits-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .games-grid,
    .payment-grid,
    .contact-grid,
    .summary-benefits-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .promotion-steps li,
    .access-steps li,
    .follow-promotions li {
        padding-left: 50px;
    }

    .promotion-steps li::before,
    .access-steps li::before,
    .follow-promotions li::before {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .promotion-hero {
        padding: 90px 0 50px;
    }

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

    .promotion-intro,
    .main-promotions,
    .slot-promotions,
    .wallet-promotions,
    .contact-access,
    .limited-promotions,
    .faq-section,
    .summary-section {
        padding: 50px 0;
    }

    .promotion-intro-content h2,
    .main-promotions-content h2,
    .slot-promotions-content h2,
    .wallet-promotions-content h2,
    .contact-access-content h2,
    .limited-promotions-content h2,
    .faq-content h2,
    .summary-content h2 {
        font-size: 1.5rem;
    }

    .promotion-card {
        padding: 20px;
    }

    .slot-promotion-card,
    .wallet-section,
    .limited-promotion-section,
    .faq-item {
        padding: 24px;
    }

    .promotion-cta-button,
    .promotion-cta-button-large {
        font-size: 1rem;
        padding: 14px 28px;
    }
}
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffd700" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

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

.hero-image {
    margin: 40px 0;
}

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

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 25px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Section Styles */
.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 60px;
}

.subsection-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* Slot Demo Section */
.slot-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

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

.slot-machine {
    background: linear-gradient(145deg, #333, #444);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
}

.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    background: #000;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #ffd700;
}

.reel {
    height: 80px;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px;
    border: 2px solid #444;
    position: relative;
}

.symbol {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-bottom: 1px solid #444;
    transition: transform 0.1s ease;
}

.slot-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.bet-amount {
    text-align: left;
}

.bet-amount label {
    display: block;
    margin-bottom: 5px;
    color: #ffd700;
    font-weight: 600;
}

#betSlider {
    width: 100%;
    height: 5px;
    background: #444;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

#betSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
}

.spin-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.balance {
    text-align: right;
    color: #ffd700;
    font-weight: 600;
}

.win-display {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    min-height: 30px;
}

/* Wallet System Section */
.wallet-system {
    padding: 80px 0;
    background: #0f0f0f;
}

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

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

.wallet-features {
    display: grid;
    gap: 20px;
}

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

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

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.feature-content p {
    color: #e0e0e0;
    line-height: 1.5;
}

.wallet-instructions {
    margin-bottom: 60px;
}

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

.instruction-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
}

.instruction-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

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

.instruction-section h5 {
    font-family: 'Prompt', sans-serif;
    color: #ff8c42;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.instruction-section ol {
    list-style: none;
    counter-reset: step-counter;
}

.instruction-section ol li {
    counter-increment: step-counter;
    margin-bottom: 10px;
    padding-left: 40px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.instruction-section ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: #ffd700;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-highlight {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.bonus-highlight p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.bonus-btn {
    background: white;
    color: #ff6b35;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Slot Games Section */
.slot-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

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

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

.game-providers {
    display: grid;
    gap: 30px;
}

.provider-section h4 {
    font-family: 'Prompt', sans-serif;
    color: #ff8c42;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.game-list {
    display: grid;
    gap: 10px;
}

.game-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
    line-height: 1.5;
}

.game-item strong {
    color: #ffd700;
}

.game-features {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    border: 1px solid #333;
}

.feature-item .feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
}

.feature-item h4 {
    color: #ffd700;
    margin-bottom: 5px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.games-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-align: center;
}

.games-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #0f0f0f;
}

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

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

.security-features {
    display: grid;
    gap: 20px;
}

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

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

.security-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    flex-shrink: 0;
}

.security-item h4 {
    color: #ffd700;
    margin-bottom: 5px;
    font-family: 'Prompt', sans-serif;
}

.security-item p {
    color: #e0e0e0;
    line-height: 1.5;
}

/* Customer Service Section */
.customer-service {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
}

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

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

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

.contact-item strong {
    color: #ff8c42;
}

.team-features {
    list-style: none;
    display: grid;
    gap: 10px;
}

.team-features li {
    color: #e0e0e0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

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

/* Promotions Section */
.promotions {
    padding: 60px 0;
    background: #0f0f0f;
}

.promo-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.promo-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
}

.promo-card h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

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

.promo-item {
    color: #e0e0e0;
    line-height: 1.6;
    padding: 10px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.promo-item strong {
    color: #ff8c42;
}

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

/* Registration Section */
.registration {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

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

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

.steps-container {
    display: grid;
    gap: 30px;
}

.step-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    border: 1px solid #333;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.step-content ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.step-content li {
    color: #e0e0e0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.step-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff8c42;
    font-weight: 700;
}

.gaming-start {
    margin-bottom: 40px;
}

.gaming-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gaming-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
}

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

.gaming-card ol {
    list-style: none;
    counter-reset: item-counter;
    display: grid;
    gap: 10px;
}

.gaming-card ol li {
    counter-increment: item-counter;
    color: #e0e0e0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.gaming-card ol li::before {
    content: counter(item-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #ff8c42;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.gaming-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.gaming-card ul li {
    color: #e0e0e0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.gaming-card ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.8rem;
}

.additional-info {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.registration-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.external-link {
    text-align: center;
    color: #e0e0e0;
    line-height: 1.6;
}

.external-link a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.external-link a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #0f0f0f;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.faq-category {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
}

.faq-category-title {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

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

.faq-question {
    margin-bottom: 10px;
}

.faq-question strong {
    color: #ff8c42;
    font-size: 1rem;
}

.faq-answer {
    color: #e0e0e0;
    line-height: 1.6;
    padding-left: 15px;
    border-left: 3px solid #ffd700;
    background: rgba(255, 215, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
}

.contact-card h4 {
    font-family: 'Prompt', sans-serif;
    color: #ffd700;
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-align: center;
}

.additional-services {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.final-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }

    .wallet-content,
    .games-content,
    .choose-content,
    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

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

    .gaming-info {
        grid-template-columns: 1fr;
    }

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

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

    .spin-btn {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .bet-amount,
    .balance {
        text-align: center;
    }
}

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

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

    .container {
        padding: 0 15px;
    }

    .slot-machine {
        padding: 20px;
    }

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

    .symbol {
        font-size: 1.5rem;
        height: 60px;
    }

    .reel {
        height: 60px;
    }

    .feature-card,
    .security-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

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

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

.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.login-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

.btn-login {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
}

.btn-login:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

.btn-register:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

    .login-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .login-form {
        padding: 25px 20px;
        border-radius: 14px;
    }

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

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

    .form-group input {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .btn-login {
        font-size: 15px;
        padding: 12px 24px;
        border-radius: 20px;
    }

    .btn-register {
        font-size: 14px;
        padding: 12px 24px;
        border-radius: 20px;
    }

    .form-buttons {
        gap: 14px;
        margin-top: 28px;
    }
}

/* Register Page Styles */
.register-section {
    padding: 120px 0 80px 0;
    min-height: calc(100vh - 140px);
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

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

.register-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-form {
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.form-label {
    display: block;
    font-family: 'Sarabun', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.form-input:focus {
    border-color: #ffd700;
    background: rgba(15, 15, 15, 0.9);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.register-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.register-btn:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

.login-btn:hover {
    background: #ffd700;
    color: #0f0f0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

    .register-content {
        max-width: 100%;
        padding: 0 20px;
    }

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

    .register-form {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

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

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .register-btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        border-radius: 20px;
    }

    .login-btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
        border-radius: 20px;
    }

    .form-buttons {
        gap: 0.875rem;
        margin-top: 1.75rem;
    }
}

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

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

    .register-form {
        padding: 1.75rem 1.25rem;
        border-radius: 14px;
    }

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

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .register-btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
        border-radius: 18px;
    }

    .login-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        border-radius: 18px;
    }

    .form-buttons {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: calc(100vh - 140px);
}

.privacy-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.privacy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.privacy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.privacy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff8c42;
    margin: 30px 0 15px 0;
}

.privacy-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

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

.privacy-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #e0e0e0;
    line-height: 1.7;
}

.privacy-content ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 0.8rem;
    margin-top: 2px;
}

.privacy-content ul li strong {
    color: #ff8c42;
}

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

/* Privacy Policy Responsive Design */
@media (max-width: 1024px) {
    .privacy-content {
        padding: 40px;
    }

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

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

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

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px 0;
    }

    .privacy-content {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .privacy-content h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .privacy-content h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }

    .privacy-content h3 {
        font-size: 1.1rem;
        margin: 25px 0 10px 0;
    }

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

@media (max-width: 480px) {
    .privacy-policy {
        padding: 90px 0 50px 0;
    }

    .privacy-content {
        padding: 25px 20px;
        border-radius: 14px;
        margin: 0 15px;
    }

    .privacy-content h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px 0;
    }

    .privacy-content h3 {
        font-size: 1rem;
        margin: 20px 0 8px 0;
    }

    .privacy-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .privacy-content ul li {
        padding-left: 20px;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
}

/* Responsible Gambling Policy Styles */
main {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 140px);
}

.content-wrapper {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.content-wrapper h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-wrapper h2 {
    color: #ff8c42;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 700;
    border-bottom: 2px solid #ff8c42;
    padding-bottom: 10px;
}

.content-wrapper h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 700;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
    color: #e0e0e0;
}

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

.content-wrapper li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #e0e0e0;
    position: relative;
}

.content-wrapper ul li::before {
    content: "▸";
    color: #ff8c42;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.content-wrapper ol li {
    padding-left: 10px;
}

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

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

/* Responsive Design for Responsible Gambling Content */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 40px;
    }

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

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

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

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

    .content-wrapper {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .content-wrapper h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .content-wrapper h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }

    .content-wrapper h3 {
        font-size: 1.1rem;
        margin: 25px 0 10px 0;
    }

    .content-wrapper p {
        font-size: 0.95rem;
        text-align: left;
    }
}

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

    .content-wrapper {
        padding: 25px 20px;
        border-radius: 14px;
        margin: 0 15px;
    }

    .content-wrapper h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .content-wrapper h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px 0;
    }

    .content-wrapper h3 {
        font-size: 1rem;
        margin: 20px 0 8px 0;
    }

    .content-wrapper p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .content-wrapper ul li {
        padding-left: 20px;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .content-wrapper ol li {
        padding-left: 15px;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
}