/* ========================================
   Global Styles & Reset
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d7a3e;
    --primary-dark: #1f5a2d;
    --primary-light: #3a9851;
    --accent-color: #ffc107;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

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

/* ========================================
   Header & Navigation
   ======================================== */

header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo .tagline {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
    background-color: var(--primary-color);
    color: white;
}

/* ========================================
   Main Content
   ======================================== */

main {
    padding: 40px 20px;
}

article {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   Meta Box (Author & Date)
   ======================================== */

.meta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-light);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    flex-wrap: wrap;
    gap: 15px;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-color);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.meta-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   Sections
   ======================================== */

.intro {
    font-size: 1.1rem;
    color: var(--text-color);
    padding: 20px 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.content-section {
    margin: 40px 0;
}

.content-section ol,
.content-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 10px;
}

/* ========================================
   Casino Table & List
   ======================================== */

.casino-table {
    margin: 40px 0;
}

.casino-table h2 {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    margin: 0;
}

.casino-list {
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.casino-item {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    transition: background-color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.casino-item:hover {
    background-color: var(--bg-light);
}

.casino-item:last-child {
    border-bottom: none;
}

.casino-item.featured {
    background-color: #fff9e6;
    border-left: 5px solid var(--accent-color);
}

.casino-item .check {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.casino-item .casino-name {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.casino-item .bonus {
    color: var(--text-color);
    flex: 1;
}

/* ========================================
   Casino Review Cards
   ======================================== */

.casino-reviews {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.casino-review-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.casino-review-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.casino-review-card.featured-card {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, #fff9e6 0%, var(--bg-white) 100px);
}

.casino-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.casino-review-card h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.casino-rating {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.casino-bonus {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: inline-block;
    width: 100%;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.feature {
    background-color: var(--bg-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.casino-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white !important;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.casino-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   Team Section (About Page)
   ======================================== */

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

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

.team-member {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(45, 122, 62, 0.3);
}

.team-member h3 {
    color: var(--primary-color);
    margin: 15px 0 5px;
}

.team-member .role {
    color: var(--text-light);
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.team-member .bio {
    color: var(--text-color);
    text-align: left;
    line-height: 1.6;
}

/* ========================================
   Values Grid
   ======================================== */

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

.value-item {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.value-item h3 {
    margin-top: 0;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-form-section,
.contact-info-section {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-item p {
    margin-bottom: 5px;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-list {
    margin: 30px 0;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-top: 0;
}

.cta-section p {
    color: white;
    font-size: 1.1rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.help-btn {
    background-color: white;
    color: var(--primary-color) !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.help-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Footer
   ======================================== */

footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    line-height: 1.8;
}

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #e0e0e0;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    article {
        padding: 25px;
    }

    .meta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-item .bonus {
        width: 100%;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .help-links {
        flex-direction: column;
        align-items: center;
    }

    .help-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    article {
        padding: 20px;
    }

    nav ul {
        gap: 10px;
    }

    nav a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .member-avatar-large {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .casino-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    header,
    footer,
    nav,
    .casino-btn,
    .submit-btn {
        display: none;
    }

    article {
        box-shadow: none;
    }
}
