/* Main Styles - Dhaka7 Casino */

:root {
    --primary-gradient: linear-gradient(90deg, rgba(245, 224, 145, 1) 40%, rgba(234, 171, 91, 1) 100%);
    --header-gradient: linear-gradient(180deg, rgba(6, 97, 101, 1) 40%, rgba(26, 127, 95, 1) 100%);
    --bg-color: #145436;
    --accent-color: #F7D26C;
    --text-primary: #03412D;
    --text-light: #ffffff;
    --border-secondary: 1px solid #F7D26C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--text-light);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}


section {
    text-align: center;
}

.faq-item, .testimonial {
    text-align: left;
}

ul, ol {
    display: flex;
    align-items: center;
    flex-direction: column;
    list-style: none;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.primary-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: var(--primary-gradient);
    color: var(--text-primary);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    min-height: 44px;
    line-height: 1.5;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 210, 108, 0.4);
}

.secondary-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--accent-color);
    border: var(--border-secondary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    min-height: 44px;
    line-height: 1.5;
}

.secondary-button:hover {
    background-color: var(--accent-color);
    color: var(--text-primary);
}

/* Sections */
section {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

table th {
    background-color: rgba(247, 210, 108, 0.2);
    color: var(--accent-color);
    font-weight: 600;
}

table tr:last-child td {
    border-bottom: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-section {
    margin: 2rem 0;
}

.image-section img {
    width: 100%;
    object-fit: cover;
}

/* Content Sections */
.content-section {
    margin: 2rem 0;
}

.content-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Lists */
.content-section ul,
.content-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section ul li,
.content-section ol li {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.faq-item h3 {
    margin-top: 0;
    color: var(--accent-color);
}

/* Testimonials */
.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-color);
}

.testimonial-author {
    margin-top: 0.5rem;
    font-style: italic;
    color: var(--accent-color);
}

/* CTA Buttons in Content */
.content-section .primary-button {
    margin: 1rem 0.5rem 1rem 0;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 2rem;
    }

    table {
        font-size: 1rem;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .container {
        padding: 0 3rem;
    }
}

/* Table Responsive */
@media (max-width: 767px) {
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 600px;
        font-size: 0.875rem;
    }

    table th,
    table td {
        padding: 0.75rem 0.5rem;
    }
}

