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

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

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

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

/* Privacy Policy Styles */
.privacy-policy {
    padding: 40px 0 60px;
    background-color: #0a0a0a;
}

.privacy-content {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.privacy-content h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.privacy-content h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    font-weight: 700;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.privacy-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

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

.privacy-content ul {
    margin: 15px 0 20px 20px;
    color: #cccccc;
}

.privacy-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.privacy-content hr {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 30px 0;
}

.privacy-content em {
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

/* Responsible Gambling Policy Styles */
.policy-content {
    padding: 40px 0 60px;
    background-color: #0a0a0a;
}

.policy-content .container {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
}

.policy-header {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.policy-header h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-dates {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

.policy-section {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.policy-section h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.policy-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.policy-section h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 20px 0 10px;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #cccccc;
    font-size: 1rem;
}

.policy-section ul {
    margin: 15px 0 20px 20px;
    color: #cccccc;
}

.policy-section ol {
    margin: 15px 0 20px 20px;
    color: #cccccc;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.policy-section em {
    color: #999;
    font-style: italic;
}

.highlight-text {
    background-color: #2a2a2a;
    border-left: 4px solid #ffd700;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1rem;
}

.emergency-help {
    background-color: #2d1b1b;
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.emergency-help p {
    margin-bottom: 15px;
    color: #ffcccc;
}

.emergency-hotline {
    color: #ff4444;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0 !important;
}

/* Policy Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 20px 0 40px;
    }

    .policy-header,
    .policy-section {
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .policy-header h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .policy-dates {
        font-size: 0.9rem;
    }

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

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

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

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

    .policy-section ul,
    .policy-section ol {
        margin: 10px 0 15px 15px;
    }

    .highlight-text {
        padding: 15px;
        font-size: 1rem;
        margin: 20px 0;
    }

    .emergency-help {
        padding: 20px;
        margin: 20px 0;
    }

    .emergency-hotline {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .policy-header,
    .policy-section {
        padding: 15px;
    }

    .policy-header h1 {
        font-size: 1.6rem;
    }

    .policy-dates {
        font-size: 0.85rem;
    }

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

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

    .policy-section h4 {
        font-size: 1rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.85rem;
    }

    .highlight-text {
        padding: 12px;
        font-size: 0.9rem;
    }

    .emergency-help {
        padding: 15px;
    }

    .emergency-hotline {
        font-size: 1rem;
    }
}

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

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

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

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

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

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

    .privacy-content ul {
        margin: 10px 0 15px 15px;
    }
}

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

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

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

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

    .privacy-content p,
    .privacy-content li {
        font-size: 0.85rem;
    }
}

/* Header Styles */
.header {
    background-color: #111111;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

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

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

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

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

.nav-link:hover {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.nav-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

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

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

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

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

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

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #111111;
    border-bottom: 1px solid #333;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

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

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

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.mobile-nav-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 16px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: block;
    margin-top: 10px;
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

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

    .nav-mobile {
        display: none;
    }

    .header-content {
        padding: 20px 0;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

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

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .nav-menu {
        gap: 40px;
    }

    .nav-link {
        font-size: 17px;
    }

    .nav-cta {
        font-size: 17px;
        padding: 14px 28px;
    }
}

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

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

/* Body overlay when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Main content styles to prevent overlap */
main {
    position: relative;
    z-index: 1;
}

/* Homepage Styles */

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

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

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

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

.hero-cta {
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

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

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

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

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

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.section-description {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 16px;
}

.subsection-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Experience Section */
.experience {
    background: #111111;
}

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

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Demo Gaming Section */
.demo-gaming {
    background: linear-gradient(135deg, #0f0f0f, #1f1f1f);
    position: relative;
}

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

.demo-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.demo-game-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.demo-game-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Slot Demo */
.slot-demo {
    padding: 20px;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    background: #000;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ffd700;
}

.reel {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    width: 80px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.symbol {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.spin-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Baccarat Demo */
.baccarat-demo {
    padding: 20px;
}

.baccarat-table {
    background: #0d4f0d;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #ffd700;
}

.card-area {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.player-cards, .banker-cards {
    display: flex;
    gap: 10px;
}

.card {
    background: #fff;
    color: #000;
    width: 40px;
    height: 60px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.betting-area {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.bet-btn {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    color: #fff;
    border: 2px solid #ffd700;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.bet-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

/* Roulette Demo */
.roulette-demo {
    padding: 20px;
}

.roulette-wheel {
    margin-bottom: 25px;
}

.wheel {
    width: 200px;
    height: 200px;
    border: 5px solid #ffd700;
    border-radius: 50%;
    background: conic-gradient(
        #ff0000 0deg 45deg,
        #000000 45deg 90deg,
        #ff0000 90deg 135deg,
        #000000 135deg 180deg,
        #ff0000 180deg 225deg,
        #000000 225deg 270deg,
        #ff0000 270deg 315deg,
        #000000 315deg 360deg
    );
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ball {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

.spin-roulette-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.spin-roulette-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Registration Section */
.registration {
    background: #111111;
}

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

.step {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

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

.step-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
}

.registration-note {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.7;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Customer Service Section */
.customer-service {
    background: linear-gradient(135deg, #0f0f0f, #1f1f1f);
}

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

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

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

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

.contact-item i {
    font-size: 2rem;
    color: #ffd700;
    min-width: 40px;
}

.contact-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

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

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

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

.service-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.service-item span {
    color: #cccccc;
    line-height: 1.6;
}

.service-note {
    font-size: 1rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.6;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.game-category {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-category:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.game-category:hover::before {
    opacity: 1;
}

.category-icon {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 25px;
}

.category-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.category-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.category-image {
    margin-top: 25px;
}

.category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.provider-item h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.games-note {
    font-size: 1rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.6;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, #0f0f0f, #1f1f1f);
}

.advantages-content {
    margin: 60px 0;
}

.advantage-section {
    margin-bottom: 80px;
}

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

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

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

.tech-item i {
    font-size: 2.5rem;
    color: #ffd700;
    min-width: 50px;
}

.tech-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.mobile-gaming {
    text-align: center;
    margin: 60px 0;
}

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

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

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

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

.service-feature i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.service-feature h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-feature p {
    color: #cccccc;
    line-height: 1.6;
}

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

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

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

.responsibility-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 2px;
    min-width: 25px;
}

.responsibility-item span {
    color: #cccccc;
    line-height: 1.6;
}

.advantages-note {
    font-size: 1rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.7;
    margin: 60px 0 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-reference {
    font-size: 1rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.6;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-reference a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.advantages-reference a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

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

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

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

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

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

.faq-question {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0f0f0f, #1f1f1f);
    padding: 60px 0;
}

.contact-info {
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 1rem;
}

.contact-detail i {
    color: #ffd700;
    font-size: 1.2rem;
}

.contact-tagline {
    color: #ffd700;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

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

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

    .service-content {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .demo-games {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .games-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .demo-games {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-details {
        gap: 60px;
    }
}

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

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

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

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

    section {
        padding: 60px 0;
    }

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

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

    .demo-game-card {
        padding: 25px 20px;
    }

    .slot-reels {
        gap: 10px;
    }

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

    .symbol {
        font-size: 1.5rem;
    }

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

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

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

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

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

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

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

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

    .ball {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .demo-game-card,
    .step,
    .contact-item,
    .service-item,
    .game-category,
    .provider-item,
    .tech-item,
    .service-feature,
    .responsibility-item,
    .faq-item {
        border-width: 2px;
    }
}

/* Footer Styles */
.footer {
    background-color: #111111;
    border-top: 1px solid #333;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

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

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
}

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

.footer-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    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: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.sticky-btn-login {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    color: #ffffff;
    border-color: #555;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #3a3a3a, #4a4a4a);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #0066cc, #0088ff);
    color: #ffffff;
    border-color: #0066cc;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #0088ff, #00aaff);
    border-color: #00aaff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.4);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    border-color: #ffd700;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ffed4e, #fff34d);
    border-color: #fff34d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

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

/* Footer Responsive Design */
@media (max-width: 767px) {
    .footer {
        padding: 30px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 12px 16px;
    }
}

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

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

    .sticky-btn {
        font-size: 0.8rem;
        padding: 10px 12px;
        max-width: none;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        font-size: 0.75rem;
        padding: 8px 10px;
    }

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

/* Adjust main content to account for sticky buttons */
body {
    padding-bottom: 70px;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
}

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 30px;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid #333;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    line-height: 1.3;
}

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

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

.form-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

/* Login Page Responsive Design */
@media (min-width: 768px) {
    .login-title {
        font-size: 2.2rem;
    }

    .login-container {
        padding: 50px 40px;
    }
}

@media (max-width: 767px) {
    .login-section {
        padding: 40px 0;
        min-height: calc(100vh - 160px);
    }

    .login-container {
        padding: 30px 24px;
        margin: 0 16px;
        border-radius: 16px;
    }

    .login-title {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }

    .form-input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .btn-login,
    .btn-register {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        margin: 0 12px;
        padding: 24px 20px;
    }

    .login-title {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }

    .form-input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .btn-login,
    .btn-register {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Register Page Styles */
.register-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.8));
}

.register-container {
    max-width: 500px;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

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

/* Register Page Responsive Design */
@media (min-width: 768px) {
    .register-title {
        font-size: 2.2rem;
    }

    .register-form {
        gap: 28px;
    }

    .form-input {
        padding: 18px 24px;
        font-size: 1.05rem;
    }

    .btn {
        padding: 18px 36px;
        font-size: 1.15rem;
    }
}

@media (min-width: 1024px) {
    .register-container {
        padding: 50px 40px;
    }

    .register-title {
        font-size: 2.4rem;
        margin-bottom: 50px;
    }

    .register-form {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .register-section {
        padding: 40px 0;
        min-height: calc(100vh - 160px);
    }

    .register-container {
        padding: 30px 24px;
        margin: 0 16px;
        border-radius: 16px;
    }

    .register-title {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }

    .form-input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .register-container {
        margin: 0 12px;
        padding: 24px 20px;
    }

    .register-title {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }

    .form-input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ==========================================
   PROMOTION PAGE STYLES
   ========================================== */

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

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.promotion-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.promotion-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.promotion-intro {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.promotion-list {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.promotion-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    font-size: 1rem;
}

.promotion-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.promotion-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.promotion-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

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

.vip-card {
    background: linear-gradient(135deg, #2a1a0a, #3a2a1a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.vip-card:hover {
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
}

.vip-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.vip-intro {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.vip-list {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.vip-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    font-size: 1rem;
}

.vip-list li::before {
    content: '👑';
    position: absolute;
    left: 0;
}

.vip-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.vip-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

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

.game-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.game-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.game-intro {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

.game-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.game-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    font-size: 0.95rem;
}

.game-list li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

.game-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.game-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.terms-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.terms-card:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.terms-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.terms-intro {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

.terms-list {
    list-style: none;
    margin-bottom: 30px;
}

.terms-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    font-size: 0.95rem;
}

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

.terms-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 30px;
}

.terms-steps li {
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    color: #ffffff;
    font-size: 1rem;
    counter-increment: step-counter;
}

.terms-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 8px;
    background: #ffd700;
    color: #000000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.terms-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.terms-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

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

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

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

.benefit-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.benefit-intro {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.benefit-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    font-size: 0.95rem;
}

.benefit-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.benefit-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.benefit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

.registration-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.registration-steps,
.registration-requirements {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.registration-steps:hover,
.registration-requirements:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.registration-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.registration-intro {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

.registration-list {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 30px;
}

.registration-list li {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    color: #ffffff;
    font-size: 1rem;
    counter-increment: step-counter;
}

.registration-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    background: #ffd700;
    color: #000000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.registration-req-list {
    list-style: none;
    margin-bottom: 30px;
}

.registration-req-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    font-size: 0.95rem;
}

.registration-req-list li::before {
    content: '🔑';
    position: absolute;
    left: 0;
}

.registration-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.registration-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

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

.contact-info,
.contact-service {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.contact-info:hover,
.contact-service:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.contact-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

.contact-list,
.contact-service-list {
    list-style: none;
    margin-bottom: 30px;
}

.contact-list li,
.contact-service-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    font-size: 1rem;
}

.contact-list li::before {
    content: '📞';
    position: absolute;
    left: 0;
}

.contact-service-list li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

.contact-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

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

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

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

.faq-cta-section {
    text-align: center;
}

.faq-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.faq-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Warning Section */
.warning-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2a1a1a 0%, #1a1a1a 100%);
    border-top: 2px solid #333;
}

.warning-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.warning-text {
    font-size: 1.1rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    font-weight: 600;
}

.final-message {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

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

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

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

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

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

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

    .registration-content {
        flex-direction: column;
    }

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

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

    .promotion-card,
    .vip-card,
    .game-card,
    .terms-card,
    .benefit-card,
    .registration-steps,
    .registration-requirements,
    .contact-info,
    .contact-service,
    .faq-item {
        padding: 25px;
    }
}

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

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

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

    .promotion-card,
    .vip-card,
    .game-card,
    .terms-card,
    .benefit-card,
    .registration-steps,
    .registration-requirements,
    .contact-info,
    .contact-service,
    .faq-item {
        padding: 20px;
    }

    .hero-cta,
    .promotion-cta,
    .vip-cta,
    .game-cta,
    .terms-cta,
    .benefit-cta,
    .registration-cta,
    .contact-cta,
    .faq-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Terms and Conditions Styles */
.terms-conditions {
    padding: 40px 0 60px;
    background-color: #0a0a0a;
}

.terms-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.terms-content h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.terms-content h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    font-weight: 700;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.terms-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.terms-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #cccccc;
    font-size: 1rem;
}

.terms-content ul {
    margin: 15px 0 20px 20px;
    color: #cccccc;
}

.terms-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.terms-content hr {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 30px 0;
}

.terms-content em {
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

/* Terms and Conditions Responsive Design */
@media (max-width: 768px) {
    .terms-conditions {
        padding: 30px 0 40px;
    }

    .terms-content {
        padding: 30px 20px;
        margin: 0 10px;
    }

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

    .terms-content h2 {
        font-size: 1.5rem;
        margin: 25px 0 15px;
    }

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

    .terms-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .terms-content ul {
        margin: 12px 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 25px 15px;
        margin: 0 5px;
    }

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

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

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

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

    .terms-content ul {
        margin: 10px 0 12px 12px;
    }
}