/* Yadom168 - Casino Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6B1B9A;
    --secondary-purple: #9333EA;
    --accent-gold: #FFD700;
    --accent-pink: #FF1493;
    --accent-cyan: #00E5FF;
    --dark-bg: #0A0118;
    --dark-card: #1A0B2E;
    --text-light: #FFFFFF;
    --text-gray: #B8B8B8;
}

body {
    font-family: 'Sarabun', 'Noto Sans Thai', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1A0B2E 50%, #0A0118 100%);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, rgba(26, 11, 46, 0.95) 0%, rgba(10, 1, 24, 0.9) 100%);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-purple);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Navigation */
nav {
    width: 100%;
    margin-top: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
    font-size: 1rem;
}

nav ul li a:hover {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--accent-pink) 100%);
    transform: scale(1.05);
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb span {
    color: var(--text-gray);
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.5);
    margin-bottom: 2rem;
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.content-section {
    background: rgba(26, 11, 46, 0.6);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--accent-cyan);
    border-left: 5px solid var(--secondary-purple);
    padding-left: 1rem;
}

.content-section h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(107, 27, 154, 0.3) 0%, rgba(26, 11, 46, 0.5) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.4);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
    border-color: var(--accent-cyan);
}

.feature-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
}

.faq-item {
    background: rgba(26, 11, 46, 0.4);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-bottom: 0.8rem;
}

.faq-answer {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.6);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.9) 0%, rgba(26, 11, 46, 0.95) 100%);
    border-top: 2px solid var(--secondary-purple);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(147, 51, 234, 0.3);
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        width: 100%;
        justify-content: center;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .content-section h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .content-section h1 {
        font-size: 1.7rem;
    }
}
