/* Homepage Styles - Dark Mode Only */

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

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.hero-content p a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-content p a:hover {
    color: #ff6b35;
}

.hero-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Styles */
section {
    padding: 60px 0;
    background: #0a0a0a;
}

section:nth-child(even) {
    background: #1a1a1a;
}

section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #ff6b35;
    margin: 30px 0 20px;
}

section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #ffd700;
    margin: 20px 0 15px;
}

section p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

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

section a:hover {
    color: #ff6b35;
}

.section-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lottery Types Section */
.lottery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .lottery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lottery-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lottery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.prize-list strong,
.why-choose-list strong {
    display: block;
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.prize-list ul,
.why-choose-list ol {
    list-style-position: inside;
    color: #e0e0e0;
    padding-left: 0;
}

.prize-list li,
.why-choose-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.demo-lottery {
    max-width: 600px;
    margin: 40px auto;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
}

.demo-controls,
.number-selector,
.bet-amount {
    margin-bottom: 25px;
}

.demo-lottery label {
    display: block;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: 600;
}

.demo-select,
.demo-input {
    width: 100%;
    padding: 12px 15px;
    background: #0a0a0a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
}

.demo-select:focus,
.demo-input:focus {
    outline: none;
    border-color: #ffd700;
}

.demo-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.demo-result {
    margin-top: 25px;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 8px;
    text-align: center;
    color: #ffd700;
    font-weight: 600;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Statistics Section */
.statistics-grid {
    margin: 30px 0;
}

.stat-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .stat-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stat-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* Payout Section */
.payout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .payout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.payout-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
}

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

.payout-card li {
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
    color: #e0e0e0;
}

.payout-card li:last-child {
    border-bottom: none;
}

/* Promo Section */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promo-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
}

.promo-box ol {
    padding-left: 20px;
}

.promo-box li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

.seasonal-promos {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.seasonal-promos ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.seasonal-promos li {
    background: #0a0a0a;
    padding: 10px 20px;
    border-radius: 20px;
    color: #ffd700;
}

/* Steps and Lists */
.steps-box,
.bank-list,
.benefits-list,
.withdrawal-conditions,
.check-types,
.check-steps,
.statistics-features,
.notification-channels,
.registration-steps,
.required-docs,
.deposit-steps,
.betting-steps,
.bet-types,
.prize-steps,
.prize-examples,
.responsible-tips,
.responsible-tools,
.security-measures {
    background: #1a1a1a;
    border-left: 3px solid #ffd700;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.steps-box strong,
.bank-list strong,
.benefits-list strong,
.withdrawal-conditions strong,
.check-types strong,
.check-steps strong,
.statistics-features strong,
.notification-channels strong,
.registration-steps strong,
.required-docs strong,
.deposit-steps strong,
.betting-steps strong,
.bet-types strong,
.prize-steps strong,
.prize-examples strong,
.responsible-tips strong,
.responsible-tools strong,
.security-measures strong {
    display: block;
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.steps-box ol,
.steps-box ul,
.bank-list ul,
.benefits-list ul,
.withdrawal-conditions ul,
.check-types ul,
.check-steps ol,
.statistics-features ul,
.notification-channels ul,
.registration-steps ol,
.required-docs ul,
.deposit-steps ol,
.betting-steps ol,
.bet-types ul,
.prize-steps ol,
.prize-examples ul,
.responsible-tips ul,
.responsible-tools ul,
.security-measures ul {
    padding-left: 20px;
}

.steps-box li,
.bank-list li,
.benefits-list li,
.withdrawal-conditions li,
.check-types li,
.check-steps li,
.statistics-features li,
.notification-channels li,
.registration-steps li,
.required-docs li,
.deposit-steps li,
.betting-steps li,
.bet-types li,
.prize-steps li,
.prize-examples li,
.responsible-tips li,
.responsible-tools li,
.security-measures li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* FAQ Section */
.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

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

.faq-item h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.faq-item p {
    margin-bottom: 10px;
}

.faq-item ul {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-item li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

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

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

.benefits-grid {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.benefits-grid strong {
    display: block;
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

@media (min-width: 768px) {
    .benefits-grid ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-grid li {
    padding: 15px;
    background: #0a0a0a;
    border-radius: 8px;
    color: #e0e0e0;
}

.cta-button-wrapper {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0a0a0a;
    padding: 20px 50px;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #0a0a0a;
}

.contact-info {
    text-align: center;
    margin-top: 30px;
}

.contact-info p {
    color: #ffd700;
    margin-bottom: 15px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

/* Legal Section */
.legal-info-section {
    background: #0a0a0a;
    padding: 60px 0;
}

.responsible-gaming-notice,
.legal-notice {
    margin-bottom: 40px;
}

.final-note {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 12px;
    margin-top: 40px;
}

.final-note p {
    margin-bottom: 15px;
}

.final-note em {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .hero-section {
        padding: 60px 0;
    }

    .demo-lottery {
        padding: 25px;
    }

    .lottery-card,
    .payout-card,
    .promo-box,
    .faq-item {
        padding: 20px;
    }
}
