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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
}

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

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

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

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

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

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

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

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

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffd700;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.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 */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-mobile.active {
    display: block;
}

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

.nav-mobile-list li {
    border-bottom: 1px solid #333;
}

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

.nav-mobile-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cta-button-mobile {
    display: block;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 16px 20px;
    margin: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

    .header-content {
        height: 60px;
    }

    .nav-desktop {
        display: none;
    }

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

    .logo-text {
        font-size: 1.25rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    main {
        margin-top: 60px;
    }
}

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

    .header-content {
        height: 56px;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .logo img {
        width: 28px;
        height: 28px;
    }

    main {
        margin-top: 56px;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .header {
        border-bottom-width: 2px;
    }

    .nav-link.active::after {
        height: 3px;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* Homepage Sections */

/* Section Title */
.section-title {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::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%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-description {
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-secondary {
    background: transparent;
    color: #ffd700;
    padding: 16px 32px;
    border: 2px solid #ffd700;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

/* Slot Demo Section */
.slot-demo {
    background: #1a1a1a;
    padding: 4rem 0;
}

.demo-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slot-machine {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid #333;
    max-width: 400px;
    width: 100%;
}

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

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

.rtp-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 1.5rem;
    background: #0f0f0f;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #333;
}

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

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

.symbol {
    font-size: 2.5rem;
    animation: symbolGlow 2s ease-in-out infinite alternate;
}

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

@keyframes symbolGlow {
    0% { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6); }
}

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

.balance-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.875rem;
    color: #e0e0e0;
}

.balance-info span {
    color: #ffd700;
    font-weight: 600;
}

.spin-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spin-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffed4a, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.win-display {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.win-amount {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.125rem;
}

.win-amount span {
    font-size: 1.5rem;
    animation: winPulse 0.5s ease-in-out;
}

@keyframes winPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Entrance Section */
.entrance-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.entrance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.entrance-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.security-features h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 4px;
}

.security-item h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
}

.login-steps {
    margin: 3rem 0;
}

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

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

.step {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.step a {
    color: #ffd700;
    text-decoration: underline;
}

.entrance-image {
    text-align: center;
    margin-top: 2rem;
}

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

/* Free Credits Section */
.free-credits {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 4rem 0;
}

.credits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.credits-info h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.credits-info p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.125rem;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.promotion-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.promo-amount {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.promotion-card p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
}

.credits-conditions {
    margin: 3rem 0;
}

.credits-conditions h3 {
    color: #ffd700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.condition {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.condition i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 4px;
}

.condition h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.condition p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
}

.condition a {
    color: #ffd700;
    text-decoration: underline;
}

.how-to-get {
    margin: 3rem 0;
}

.how-to-get h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.steps-list {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    color: #e0e0e0;
    font-size: 1.125rem;
    line-height: 1.8;
}

.steps-list li {
    margin-bottom: 0.5rem;
}

.credits-image {
    text-align: center;
    margin-top: 2rem;
}

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

/* Deposit Bonus Section */
.deposit-bonus {
    background: #0f0f0f;
    padding: 4rem 0;
}

.bonus-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-highlight h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bonus-highlight p {
    color: #e0e0e0;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-details {
    margin: 3rem 0;
}

.bonus-details h3 {
    color: #ffd700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.bonus-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #444;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card.featured {
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.bonus-card.special {
    border-color: #ff6b6b;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.bonus-card.special .bonus-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: #ffffff;
}

.bonus-card h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-info {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item .label {
    color: #e0e0e0;
    font-weight: 500;
}

.info-item .value {
    color: #ffd700;
    font-weight: 700;
}

.bonus-steps {
    margin: 3rem 0;
}

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

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-3px);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.flow-step h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: #e0e0e0;
    font-size: 0.875rem;
    margin: 0;
}

.flow-step a {
    color: #ffd700;
    text-decoration: underline;
}

.flow-arrow {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-methods {
    margin: 3rem 0;
}

.payment-methods h3 {
    color: #ffd700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-method i {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.payment-method h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.payment-method p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
}

.bonus-image {
    text-align: center;
    margin-top: 2rem;
}

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

/* Popular Slots Section */
.popular-slots {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 4rem 0;
}

.slots-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.slots-intro h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.game-providers {
    margin: 3rem 0;
}

.game-providers h3 {
    color: #ffd700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.provider-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
}

.provider-card h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.provider-details p {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.provider-details strong {
    color: #ffffff;
}

.recommended-games {
    margin: 3rem 0;
}

.recommended-games h3 {
    color: #ffd700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.game-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.game-header h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0;
}

.game-features p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.wallet-system {
    margin: 3rem 0;
    text-align: center;
}

.wallet-system h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.gaming-tips {
    margin: 3rem 0;
}

.gaming-tips h3 {
    color: #ffd700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.tip-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 4px;
}

.tip-item h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
}

.slots-image {
    text-align: center;
    margin-top: 2rem;
}

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

/* Payment System Section */
.payment-system {
    background: #0f0f0f;
    padding: 4rem 0;
}

.system-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.payment-channels {
    margin: 3rem 0;
}

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

.channel-section h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    text-align: center;
}

.banks-grid,
.ewallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bank-item,
.ewallet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.bank-item:hover,
.ewallet-item:hover {
    transform: translateY(-3px);
}

.bank-item i,
.ewallet-item i {
    color: #ffd700;
    font-size: 1.5rem;
}

.bank-item h5,
.ewallet-item h5 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.bank-item p,
.ewallet-item p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
}

.transaction-steps {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.transaction-list {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
}

.transaction-list li {
    margin-bottom: 1rem;
}

.transaction-list strong {
    color: #ffd700;
}

.transaction-list a {
    color: #ffd700;
    text-decoration: underline;
}

.wallet-advantages {
    margin: 3rem 0;
}

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

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

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.advantage-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 4px;
}

.advantage-item h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
}

.customer-support {
    margin: 3rem 0;
}

.customer-support h3 {
    color: #ffd700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-info h4 {
    color: #ffffff;
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item h5 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

.payment-image {
    text-align: center;
    margin-top: 2rem;
}

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

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

.faq-content {
    display: grid;
    gap: 3rem;
}

.faq-category {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-category h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

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

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

.faq-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item ol,
.faq-item ul {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
    margin-left: 1.5rem;
}

.faq-item li {
    margin-bottom: 0.5rem;
}

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

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

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

/* Summary Section */
.summary {
    background: #0f0f0f;
    padding: 4rem 0;
}

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

.summary-content p {
    color: #e0e0e0;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.summary-content a {
    color: #ffd700;
    text-decoration: underline;
}

.cta-final {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #ffd700;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.cta-final p {
    margin: 0;
    font-size: 1.25rem;
}

.cta-final strong {
    color: #ffd700;
}

.update-info {
    margin-top: 2rem;
    text-align: center;
}

.update-info p {
    color: #888;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

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

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

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

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

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

    .steps-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
        justify-content: center;
    }

    .slot-machine {
        padding: 1.5rem;
    }

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

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

    .promotions-grid,
    .conditions-grid,
    .games-grid,
    .tips-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

    .slot-machine {
        padding: 1rem;
    }

    .slot-reels {
        gap: 4px;
        padding: 0.75rem;
    }

    .symbol {
        font-size: 2rem;
    }

    .reel {
        height: 100px;
    }

    .step,
    .promotion-card,
    .game-card,
    .provider-card,
    .bonus-card {
        padding: 1.5rem;
    }

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

    .flow-step {
        min-width: 120px;
        padding: 1rem;
    }

    .steps-flow {
        gap: 0.5rem;
    }

    .flow-arrow {
        font-size: 1.25rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 2rem;
}

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

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

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-align: center;
}

.footer-link:hover {
    color: #ffd700;
}

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

/* Privacy Policy Styles */
.policy-content {
    background-color: #111111;
    padding: 3rem 0;
    min-height: calc(100vh - 140px);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #333;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.update-date {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin: 0;
}

.policy-article {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #444;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.policy-section h4 {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

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

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section li::before {
    content: "▶";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

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

.contact-info {
    background-color: #222;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    margin: 1.5rem 0;
}

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

.contact-info ul {
    margin: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

.policy-footer {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #ffd700;
    text-align: center;
    margin-top: 3rem;
}

.policy-footer h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.contact-details ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.contact-details li {
    color: #e0e0e0;
    font-size: 1rem;
    padding: 0;
}

.contact-details li::before {
    display: none;
}

.effective-date {
    color: #b0b0b0;
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

    .contact-details ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.75rem;
    }

    .policy-section {
        padding: 1rem;
    }

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

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

    .contact-info {
        padding: 1rem;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    min-height: 60px;
    text-align: center;
}

.sticky-btn i {
    font-size: 1.25rem;
}

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

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

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

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

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

.sticky-btn-credit {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ffed4a, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

/* Add bottom padding to main content to account for sticky buttons */
main {
    margin-top: 70px;
    padding-bottom: 100px;
}

/* Footer responsive design */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }

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

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

/* Sticky buttons responsive design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 0.75rem 0;
    }

    .sticky-buttons-row {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }

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

    .sticky-btn i {
        font-size: 1rem;
    }

    main {
        margin-top: 60px;
        padding-bottom: 80px;
    }
}

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

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

    .sticky-buttons {
        padding: 0.5rem 0;
    }

    .sticky-buttons-row {
        gap: 0.375rem;
        padding: 0 0.5rem;
    }

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

    .sticky-btn i {
        font-size: 0.9rem;
    }

    main {
        margin-top: 56px;
        padding-bottom: 70px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer {
        border-top-width: 2px;
    }

    .sticky-buttons {
        border-top-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .sticky-btn {
        transition: none;
    }

    .footer-link {
        transition: none;
    }
}

/* Login Page Styles */
.login-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    margin-top: 70px;
}

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

.login-title {
    color: #ffd700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.login-form {
    width: 100%;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.form-label {
    display: block;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

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

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

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

.btn-login {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    font-family: 'Prompt', sans-serif;
}

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

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

.btn-register {
    background: transparent;
    color: #ffd700;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Prompt', sans-serif;
}

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

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

/* Mobile Login Styles */
@media (max-width: 768px) {
    .login-section {
        padding: 2rem 0;
        min-height: calc(100vh - 120px);
    }

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

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

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

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

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

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

    .login-form {
        padding: 1.5rem;
        border-radius: 12px;
    }

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

    .form-label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .form-input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.75rem 1.25rem;
        font-size: 0.975rem;
    }
}

/* Focus accessibility for login form */
.btn-login:focus,
.btn-register:focus,
.form-input:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* ========================
   Register Page Styles
   ======================== */

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

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

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

/* Register Title */
.register-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Register Form */
.register-form {
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-size: 1rem;
}

.form-label i {
    font-size: 1.1rem;
}

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

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

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

.form-input:valid {
    border-color: #4caf50;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #f44336;
}

/* Password Input Container */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: #ffd700;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-register {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

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

.btn-login {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
}

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

/* Form Benefits */
.form-benefits {
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

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

.benefit-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* Form Terms */
.form-terms {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

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

.form-terms a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Responsive Styles for Register Form */
@media (max-width: 768px) {
    .register-section {
        padding: 90px 0 60px;
    }

    .register-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

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

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

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

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

    .benefit-item {
        padding: 0.625rem;
    }

    .benefit-item span {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .register-container {
        max-width: 100%;
    }

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

    .register-form {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }

    .form-input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .btn-register,
    .btn-login {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .form-label {
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .benefit-item span {
        font-size: 0.8rem;
    }
}

/* Notification Styles for Register Form */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    font-family: 'Sarabun', sans-serif;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    background: rgba(76, 175, 80, 0.95);
    border: 1px solid #4caf50;
    color: #ffffff;
}

.notification.error {
    background: rgba(244, 67, 54, 0.95);
    border: 1px solid #f44336;
    color: #ffffff;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.notification-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .notification {
        right: 15px;
        left: 15px;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* Promotion Page Specific Styles */
.promotion-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-bottom: 2px solid #ffd700;
}

.promotion-hero .hero-title {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Special Promotions Section */
.special-promotions {
    background: #0f0f0f;
    padding: 4rem 0;
}

.promotion-article {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.promotion-article.featured {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.promotion-article.highlight {
    border-color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.promotion-header {
    margin-bottom: 1.5rem;
}

.promotion-title {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.promotion-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #e0e0e0;
    font-size: 1rem;
}

.promotion-features li::before {
    content: "✅";
    font-size: 1.2rem;
}

.promotion-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.detail-section h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.detail-section ul,
.detail-section ol {
    color: #e0e0e0;
    padding-left: 1.5rem;
}

.detail-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.steps-list {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #444;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    counter-reset: step-counter;
    list-style: none;
    padding-left: 2rem;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
}

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

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

/* Daily Promotions Section */
.daily-promotions {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 4rem 0;
}

.daily-promo-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #444;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.daily-promo-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.daily-promo-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.daily-promo-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.daily-promo-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: #e0e0e0;
}

.daily-promo-card li::before {
    content: "⭐";
    color: #ffd700;
    font-size: 1rem;
}

.promo-cta {
    margin-top: 1.5rem;
}

/* Deposit Special Section */
.deposit-special {
    background: #0f0f0f;
    padding: 4rem 0;
}

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

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

.vip-article {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #8B4513;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.vip-header {
    margin-bottom: 1.5rem;
}

.vip-title {
    color: #DAA520;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.vip-levels h4 {
    color: #DAA520;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #DAA520;
    padding-bottom: 0.5rem;
}

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

.level-card {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #DAA520;
    text-align: center;
}

.level-badge {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.level-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin: 0;
}

.seasonal-promo {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.seasonal-promo h3 {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seasonal-promo p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.seasonal-list {
    list-style: none;
    padding: 0;
}

.seasonal-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #e0e0e0;
    border-bottom: 1px solid #333;
}

.seasonal-list li::before {
    content: "🎪";
    font-size: 1.2rem;
}

.seasonal-cta {
    margin-top: 1.5rem;
}

/* Terms Section */
.terms-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.terms-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.terms-article {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.terms-article h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-article p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.terms-section-inner {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.terms-section-inner h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.terms-section-inner li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: #e0e0e0;
}

.terms-section-inner li::before {
    content: "📋";
    font-size: 0.9rem;
    margin-top: 0.1rem;
}

.correct-steps {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.correct-steps h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* Tips Section */
.tips-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 4rem 0;
}

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

.tips-article {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #00bcd4;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.tips-article h3 {
    color: #00bcd4;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-article p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.strategies-grid {
    margin: 1.5rem 0;
}

.strategy-card {
    background: rgba(0, 188, 212, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.strategy-card h4 {
    color: #00bcd4;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.strategy-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: #e0e0e0;
}

.strategy-card li::before {
    content: "💡";
    font-size: 1rem;
    margin-top: 0.1rem;
}

.contact-article {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #4caf50;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.contact-article h3 {
    color: #4caf50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-article p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-channels {
    margin: 1.5rem 0;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.contact-item i {
    color: #4caf50;
    font-size: 1.5rem;
}

.contact-item h4 {
    color: #4caf50;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

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

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

/* FAQ Section */
.faq-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.faq-content {
    margin-top: 2rem;
}

.faq-item {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #333;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 4rem 0;
}

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

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

.final-cta {
    margin: 3rem 0 2rem 0;
}

.btn-primary.large {
    font-size: 1.3rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

.disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.disclaimer p {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Button Styles */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .promotion-details-grid,
    .terms-grid,
    .strategies-grid,
    .contact-grid,
    .levels-grid {
        grid-template-columns: 1fr;
    }

    .promotion-article,
    .daily-promo-card,
    .vip-article,
    .seasonal-promo,
    .terms-article,
    .tips-article,
    .contact-article {
        padding: 1.5rem;
    }

    .promotion-title,
    .vip-title,
    .tips-article h3,
    .contact-article h3 {
        font-size: 1.5rem;
    }

    .promo-icon {
        font-size: 2.5rem;
    }

    .btn-primary.large {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
    }

    .steps-list {
        padding: 1.5rem;
        padding-left: 1.5rem;
    }

    .steps-list li {
        padding-left: 2.5rem;
    }

    .steps-list li::before {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }
}