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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    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, 0, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

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

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

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

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

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

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    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(135deg, #ffd700, #ff6b35);
    -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: 30px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    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);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8a65, #ffa726);
}

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

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

.mobile-menu-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.2);
}

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

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

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

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

/* Mobile Navigation - Same as Desktop */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    overflow-y: auto;
}

.nav-mobile.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-mobile-content {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-desktop {
        display: none;
    }

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

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

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

    main {
        margin-top: 60px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        height: 55px;
    }

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

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

    .nav-mobile-list {
        gap: 15px;
    }

    .nav-mobile .nav-link {
        font-size: 18px;
        padding: 15px 25px;
        text-align: center;
        border-radius: 12px;
    }

    .nav-mobile .cta-button {
        font-size: 18px;
        padding: 18px 30px;
        text-align: center;
        border-radius: 25px;
    }

    main {
        margin-top: 55px;
    }
}

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

/* Focus states for keyboard navigation */
.nav-link:focus,
.cta-button:focus,
.mobile-menu-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .header {
        background: #000000;
        border-bottom-color: #ffffff;
    }

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

/* Homepage Styles */

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.8));
    position: relative;
    overflow: hidden;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cta-primary, .hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8a65, #ffa726);
}

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

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

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

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

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

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.demo-game {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.slot-reel {
    width: 80px;
    height: 120px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.slot-symbol {
    font-size: 2.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.slot-reel.spinning .slot-symbol {
    animation: spin 0.5s ease-in-out;
}

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

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

.spin-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

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

.demo-credits {
    background: rgba(255, 215, 0, 0.1);
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: 700;
    color: #ffd700;
}

.winning-display {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winning-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(0, 255, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(0, 255, 0, 0.8); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

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

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #d0d0d0;
}

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

.registration-image {
    text-align: center;
    margin-top: 60px;
}

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

/* Security Section */
.security-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.security-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #ffd700;
}

.security-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #d0d0d0;
}

.security-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Account Section */
.account-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.account-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.account-image {
    flex: 1;
}

.account-content {
    flex: 1;
}

.account-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.account-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #ffd700;
}

.account-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #d0d0d0;
}

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

.account-content li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #d0d0d0;
}

.account-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 0.8rem;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.games-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #ffd700;
}

.games-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #d0d0d0;
}

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

.games-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #d0d0d0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-list li::before {
    content: '🎰';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

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

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

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

.promo-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.promo-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 30px;
    text-align: center;
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
}

.promo-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
}

.promo-content {
    padding: 30px;
}

.promo-content p {
    margin-bottom: 20px;
    color: #d0d0d0;
    line-height: 1.6;
}

.promo-content ul {
    list-style: none;
    padding: 0;
}

.promo-content li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #d0d0d0;
}

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

.promo-info {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.promo-info p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #d0d0d0;
}

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

.promo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

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

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

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

.faq-item h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: '❓';
    margin-right: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-info h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info p {
    color: #d0d0d0;
    margin: 0;
    font-weight: 500;
}

.contact-info a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffd700;
}

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

.contact-description p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #d0d0d0;
}

.contact-description a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-description a:hover {
    color: #ffd700;
}

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

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

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

    .account-flex {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .hero-section,
    .demo-section,
    .features-section,
    .security-section,
    .account-section,
    .games-section,
    .promotions-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }

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

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

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

    .slot-machine {
        padding: 30px 20px;
    }

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

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

    .feature-card {
        padding: 30px;
    }

    .promo-header,
    .promo-content {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

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

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

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

    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }

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

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

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

    .spin-button {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .demo-credits {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .feature-card,
    .promo-card,
    .faq-item,
    .contact-item {
        padding: 20px;
    }

    .feature-icon,
    .promo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Footer Styles */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-bottom: 80px;
}

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

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

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 50px;
    position: relative;
    overflow: hidden;
}

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

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

.sticky-btn-register {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    font-weight: 700;
}

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

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

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

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-bottom: 80px;
    }

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

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

    .footer-link {
        font-size: 15px;
        padding: 10px 20px;
    }
}

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

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

    .footer-link {
        font-size: 14px;
        padding: 8px 16px;
    }
}

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

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

    .sticky-btn {
        padding: 10px 16px;
        font-size: 15px;
        min-height: 45px;
        border-radius: 20px;
    }
}

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

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

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

/* Login Section Styles */
.login-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
}

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

.login-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-form {
    width: 100%;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

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

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

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(50, 50, 50, 0.9);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

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

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

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

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

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

.login-btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

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

    .login-form {
        padding: 30px 25px;
        margin: 0 15px;
    }

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

    .login-btn-primary,
    .login-btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

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

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

    .login-form {
        padding: 25px 20px;
        margin: 0 10px;
    }

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

    .login-btn-primary,
    .login-btn-secondary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Accessibility and High Contrast Support */
@media (prefers-contrast: high) {
    .footer {
        background: #000000;
        border-top-color: #ffffff;
    }

    .footer-link {
        color: #ffffff;
    }

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

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

    .sticky-btn-login {
        background: #000000;
        border-color: #ffffff;
        color: #ffffff;
    }

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

    .login-form {
        background: #000000;
        border-color: #ffffff;
    }

    .form-input {
        background: #000000;
        border-color: #ffffff;
        color: #ffffff;
    }

    .form-input:focus {
        border-color: #ffffff;
        background: #333333;
    }

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

    .login-btn-secondary {
        background: #000000;
        color: #ffffff;
        border-color: #ffffff;
    }

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

/* Register Page Styles */
.register-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.register-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

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

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffd700;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

.register-btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

    .register-btn-primary,
    .register-btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

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

    .register-form {
        padding: 25px 15px;
    }

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

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

/* Promotion Page Styles */

/* Promotion Hero Section */
.promotion-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(25, 25, 25, 0.9));
    position: relative;
    overflow: hidden;
}

.promotion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.hero-text {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-cta {
    display: flex;
    justify-content: center;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 35px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8a65, #ffa726);
}

/* New Member Section */
.new-member-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.9);
}

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

.promo-main-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), transparent);
    z-index: -1;
}

.card-header {
    margin-bottom: 25px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.card-cta, .details-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.card-cta:hover, .details-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.promo-details-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

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

.details-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.conditions-list {
    padding-left: 20px;
    color: #e0e0e0;
}

.conditions-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.benefits-grid li {
    padding: 8px 0;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Daily Promotion Section */
.daily-promotion-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.daily-intro {
    text-align: center;
    margin-bottom: 50px;
}

.daily-intro h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
}

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

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

.daily-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.daily-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.daily-card.monday::before {
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.1), transparent);
}

.daily-card.wednesday::before {
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), transparent);
}

.daily-card.friday::before {
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), transparent);
}

.daily-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.day-header {
    text-align: center;
    margin-bottom: 25px;
}

.day-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #ffffff;
}

.day-header h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.day-subtitle {
    color: #e0e0e0;
    font-style: italic;
    font-size: 0.9rem;
}

.day-content ul {
    list-style: none;
    padding: 0;
}

.day-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.day-content li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.weekend-promo {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.weekend-promo h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

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

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

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

.benefit-item span {
    color: #e0e0e0;
    line-height: 1.5;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Slot Promotion Section */
.slot-promotion-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.9);
}

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

.slot-intro h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
}

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

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

.campaign-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.campaign-card.jackpot {
    border-color: rgba(255, 215, 0, 0.3);
}

.campaign-card.pg-soft {
    border-color: rgba(138, 43, 226, 0.3);
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.campaign-header {
    text-align: center;
    margin-bottom: 25px;
}

.campaign-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: #ffffff;
}

.campaign-header h4 {
    color: #ffd700;
    font-size: 1.4rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #e0e0e0;
    line-height: 1.5;
}

.popular-games {
    margin: 50px 0;
    text-align: center;
}

.popular-games h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.popular-games p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

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

.game-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.game-item h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.game-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

/* Payment System Section */
.payment-system-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.system-intro {
    text-align: center;
    margin-bottom: 50px;
}

.system-intro h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
}

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

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

.payment-promo {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-promo.deposit {
    border-color: rgba(76, 175, 80, 0.3);
}

.payment-promo.withdraw {
    border-color: rgba(33, 150, 243, 0.3);
}

.payment-promo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.promo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.promo-header h4 {
    color: #ffd700;
    font-size: 1.3rem;
}

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

.promo-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

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

.special-campaign {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.special-campaign h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.campaign-details h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.campaign-benefits {
    margin-bottom: 20px;
}

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

.campaign-details p {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

/* VIP Promotion Section */
.vip-promotion-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.9);
}

.vip-intro {
    text-align: center;
    margin-bottom: 50px;
}

.vip-intro h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
}

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

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

.vip-tier {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.vip-tier.silver {
    border-color: rgba(192, 192, 192, 0.3);
}

.vip-tier.silver::before {
    background: linear-gradient(45deg, rgba(192, 192, 192, 0.1), transparent);
}

.vip-tier.gold {
    border-color: rgba(255, 215, 0, 0.4);
}

.vip-tier.gold::before {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent);
}

.vip-tier.diamond {
    border-color: rgba(185, 242, 255, 0.4);
}

.vip-tier.diamond::before {
    background: linear-gradient(45deg, rgba(185, 242, 255, 0.1), transparent);
}

.vip-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.vip-tier:hover::before {
    opacity: 1;
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
}

.tier-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #ffffff;
}

.tier-header h4 {
    color: #ffd700;
    font-size: 1.3rem;
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
}

.tier-benefits li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.tier-benefits li::before {
    content: '👑';
    position: absolute;
    left: 0;
}

.vip-exclusive {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.vip-exclusive h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.exclusive-benefits h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.exclusive-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.exclusive-item i {
    color: #ffd700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.exclusive-item span {
    color: #e0e0e0;
    line-height: 1.5;
}

.exclusive-benefits p {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

/* Monthly Promotion Section */
.monthly-promotion-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.monthly-intro {
    text-align: center;
    margin-bottom: 50px;
}

.monthly-intro h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
}

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

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

.month-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.month-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.month-card.january::before {
    background: linear-gradient(45deg, rgba(135, 206, 250, 0.1), transparent);
}

.month-card.february::before {
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), transparent);
}

.month-card.march::before {
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.1), transparent);
}

.month-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.month-header {
    text-align: center;
    margin-bottom: 25px;
}

.month-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #ffffff;
}

.month-header h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.month-theme {
    color: #e0e0e0;
    font-style: italic;
    font-size: 0.9rem;
}

.month-offers ul {
    list-style: none;
    padding: 0;
}

.month-offers li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.month-offers li::before {
    content: '🎊';
    position: absolute;
    left: 0;
}

.festival-promotions {
    margin: 50px 0;
}

.festival-promotions h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

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

.festival-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.festival-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.festival-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.festival-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.festival-header h4 {
    color: #ffd700;
    font-size: 1.2rem;
}

.festival-benefits ul {
    list-style: none;
    padding: 0;
}

.festival-benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.festival-benefits li::before {
    content: '🎉';
    position: absolute;
    left: 0;
}

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

/* How to Section */
.how-to-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.9);
}

.steps-section {
    margin-bottom: 50px;
}

.steps-section h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.steps-subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.steps-subtitle h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

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

.step-item {
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.step-content h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-section {
    margin: 50px 0;
}

.contact-section h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.contact-method:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-info h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

.terms-section {
    margin: 50px 0;
}

.terms-section h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.terms-card h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.terms-card li::before {
    content: '📋';
    position: absolute;
    left: 0;
}

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

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.advantages-section {
    margin-bottom: 50px;
}

.advantages-section h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

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

.advantage-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.advantage-header h4 {
    color: #ffd700;
    font-size: 1.3rem;
}

.advantage-content p {
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.advantage-content ul {
    list-style: none;
    padding: 0;
}

.advantage-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

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

.comparison-section {
    margin: 50px 0;
}

.comparison-section h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-intro h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table td {
    color: #e0e0e0;
}

.reno-value {
    color: #ffd700 !important;
    font-weight: 700;
}

.other-value {
    color: #ff6b6b !important;
}

.reliability-section {
    margin-top: 30px;
}

.reliability-section h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.reliability-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.reliability-item i {
    color: #ffd700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reliability-item span {
    color: #e0e0e0;
    line-height: 1.5;
}

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

/* Customer Support Section */
.customer-support-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.9);
}

.support-intro {
    text-align: center;
    margin-bottom: 50px;
}

.support-intro h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.support-subtitle h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.support-subtitle p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.support-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.support-channel:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.channel-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.channel-info h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.channel-info p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

.team-info {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.team-info h4 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}

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

.team-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.team-feature i {
    color: #ffd700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.team-feature span {
    color: #e0e0e0;
    line-height: 1.5;
}

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

/* Summary Section */
.summary-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.9);
}

.summary-intro {
    text-align: center;
    margin-bottom: 50px;
}

.summary-intro p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.highlights-section {
    margin: 50px 0;
}

.highlights-section h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.highlight-item span {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 1.1rem;
}

.getting-started {
    margin: 50px 0;
}

.getting-started h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.start-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.start-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 15px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
}

.start-step:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.start-step .step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.start-step p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.final-message {
    text-align: center;
    margin: 50px 0 30px;
}

.final-message p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 20px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8a65, #ffa726);
}

/* Footer Contact Section */
.footer-contact-section {
    padding: 60px 0 40px;
    background: rgba(20, 20, 20, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

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

.terms-notice {
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design for Promotion Page */
@media (max-width: 1024px) {
    .promotion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .slot-campaigns {
        grid-template-columns: 1fr;
    }

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

    .vip-tiers {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .monthly-campaigns {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

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

    .hero-description p {
        font-size: 1.1rem;
    }

    .cta-primary {
        font-size: 1.1rem;
        padding: 15px 30px;
    }

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

    .promotion-hero,
    .new-member-section,
    .daily-promotion-section,
    .slot-promotion-section,
    .payment-system-section,
    .vip-promotion-section,
    .monthly-promotion-section,
    .how-to-section,
    .why-choose-section,
    .customer-support-section,
    .summary-section {
        padding: 60px 0;
    }

    .promo-main-card,
    .promo-details-card {
        padding: 25px;
    }

    .daily-card,
    .campaign-card,
    .payment-promo,
    .vip-tier,
    .month-card {
        padding: 25px;
    }

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

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

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

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

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

    .support-channels {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .start-steps {
        flex-direction: column;
        align-items: center;
    }

    .start-step {
        min-width: 250px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

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

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

    .cta-primary, .cta-button, .cta-primary-large {
        font-size: 1rem;
        padding: 12px 25px;
    }

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

    .promotion-hero {
        padding: 100px 0 50px;
    }

    .new-member-section,
    .daily-promotion-section,
    .slot-promotion-section,
    .payment-system-section,
    .vip-promotion-section,
    .monthly-promotion-section,
    .how-to-section,
    .why-choose-section,
    .customer-support-section,
    .summary-section {
        padding: 50px 0;
    }

    .promo-main-card,
    .promo-details-card,
    .daily-card,
    .campaign-card,
    .payment-promo,
    .vip-tier,
    .month-card,
    .advantage-card,
    .terms-card {
        padding: 20px;
    }

    .daily-grid,
    .vip-tiers,
    .monthly-campaigns {
        grid-template-columns: 1fr;
    }

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

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .weekend-benefits,
    .benefit-row,
    .exclusive-grid,
    .reliability-grid,
    .team-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .game-item {
        padding: 20px 10px;
    }

    .game-icon {
        font-size: 2rem;
    }

    .step-number,
    .tier-icon,
    .day-icon,
    .month-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .campaign-icon,
    .advantage-icon,
    .channel-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

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

    .contact-detail {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    color: #e0e0e0;
    line-height: 1.8;
}

.privacy-policy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.privacy-policy-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

.privacy-policy-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

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

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

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

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

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

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

    .privacy-policy-content h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }

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

    .privacy-policy-content ul li {
        font-size: 1rem;
        padding-left: 20px;
        line-height: 1.6;
    }
}

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

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

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

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

    .privacy-policy-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .privacy-policy-content ul li {
        font-size: 0.95rem;
        padding-left: 18px;
        line-height: 1.5;
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

/* Responsible Gambling Policy Content Styles */
.responsible-gambling-content {
    color: #e0e0e0;
    line-height: 1.8;
}

.responsible-gambling-content h1 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.responsible-gambling-content h2 {
    color: #ffd700;
    font-size: clamp(20px, 3vw, 28px);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.responsible-gambling-content h3 {
    color: #ff6b35;
    font-size: clamp(16px, 2.5vw, 22px);
    margin-top: 30px;
    margin-bottom: 15px;
}

.responsible-gambling-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #e0e0e0;
}

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

.responsible-gambling-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #e0e0e0;
}

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

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

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

.responsible-gambling-content a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.responsible-gambling-content a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .responsible-gambling-content {
        padding: 0 10px;
    }

    .responsible-gambling-content h1 {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 20px;
    }

    .responsible-gambling-content h2 {
        font-size: clamp(18px, 5vw, 24px);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .responsible-gambling-content h3 {
        font-size: clamp(16px, 4vw, 20px);
        margin-top: 20px;
        margin-bottom: 12px;
    }

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

    .responsible-gambling-content ul li {
        font-size: 15px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-content {
        padding: 0 5px;
    }

    .responsible-gambling-content h1 {
        font-size: clamp(20px, 7vw, 28px);
        margin-bottom: 15px;
    }

    .responsible-gambling-content h2 {
        font-size: clamp(16px, 6vw, 22px);
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .responsible-gambling-content h3 {
        font-size: clamp(14px, 5vw, 18px);
        margin-top: 15px;
        margin-bottom: 10px;
    }

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

    .responsible-gambling-content ul li {
        font-size: 14px;
        padding-left: 20px;
        margin-bottom: 5px;
    }
}