/*
CONTRACT HEADER
ID: CASINO:jeetcity:07-css3:2026-01-30
Version: v8
Site: Site #3 - Expert Analysis (playjeetcity.com)
Theme: Dark Expert
Naming: WordPress-style
*/

/* === CSS VARIABLES === */
:root {
    --color-primary: #FF6B00;
    --color-secondary: #00C853;
    --color-background: #1a1a1a;
    --color-card: #2a2a2a;
    --color-card-alt: #333333;
    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;
    --color-border: #3a3a3a;
    --color-link: #FF6B00;
    --color-link-hover: #FF8533;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --header-height: 70px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
}
a { color: var(--color-link); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-link-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style-position: inside; }
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
th, td { padding: 0.75rem; text-align: left; border: 1px solid var(--color-border); }
th { background: var(--color-card); font-weight: 600; }
tr:nth-child(even) { background: var(--color-card-alt); }

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-card);
    border-bottom: 1px solid var(--color-border);
}
.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.site-branding { display: flex; align-items: center; }
.site-branding img { height: 40px; width: auto; }
.header-cta {
    background: var(--color-primary);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s;
}
.header-cta:hover { background: var(--color-link-hover); }
.main-navigation { display: flex; gap: 1.5rem; }
.main-navigation a { color: var(--color-text); font-size: 14px; font-weight: 500; }
.main-navigation a:hover, .main-navigation a.current { color: var(--color-primary); }
.geo-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
}
.geo-switcher a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    color: var(--color-text-muted);
    transition: color 0.2s, background 0.2s;
}
.geo-switcher a:hover {
    color: var(--color-primary);
    background: rgba(255,107,0,0.1);
}
.geo-switcher a.current {
    color: var(--color-primary);
    font-weight: 600;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-card);
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { color: var(--color-text); padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
.mobile-nav a:last-child { border-bottom: none; }

/* === MAIN LAYOUT === */
.site-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1rem;
}
.content-area { flex: 1; }
.has-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }

/* === BREADCRUMBS === */
.breadcrumbs {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { margin: 0 0.5rem; }

/* === HERO === */
.hero-section {
    position: relative;
    background: var(--color-card);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.hero-image { width: 100%; height: 300px; object-fit: cover; opacity: 0.6; }
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(26,26,26,0.95));
}
.hero-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }

/* === ENTRY (Article/Post) === */
.entry-header { margin-bottom: 1.5rem; }
.entry-title { font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.5rem; }
.entry-meta { font-size: 14px; color: var(--color-text-muted); display: flex; gap: 1rem; flex-wrap: wrap; }
.entry-meta span { display: flex; align-items: center; gap: 0.25rem; }
.entry-content { line-height: 1.8; }
.entry-content h2 { font-size: 1.5rem; font-weight: 600; margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-primary); }
.entry-content h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }
.entry-content p { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1rem; padding-left: 1rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content strong { color: var(--color-primary); }

/* === POST COMPONENTS === */
.post { background: var(--color-card); border-radius: 12px; padding: 2rem; margin-bottom: 2rem; }
.post-thumbnail { margin: -2rem -2rem 1.5rem; border-radius: 12px 12px 0 0; overflow: hidden; }
.post-thumbnail img { width: 100%; height: 200px; object-fit: cover; }
.post-meta { font-size: 14px; color: var(--color-text-muted); margin-bottom: 1rem; }
.post-content { line-height: 1.7; }

/* === SIDEBAR === */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.widget {
    background: var(--color-card);
    border-radius: 12px;
    padding: 1.5rem;
}
.widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}
.widget-content ul { list-style: none; }
.widget-content li { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); }
.widget-content li:last-child { border-bottom: none; }
.widget-content a { color: var(--color-text); font-size: 14px; }
.widget-content a:hover { color: var(--color-primary); }

/* === CTA BUTTON === */
.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: #fff !important;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--color-link-hover); transform: translateY(-1px); }
.cta-section { text-align: center; margin: 2rem 0; }

/* === FAQ === */
.faq-section { margin: 2rem 0; }
.faq-item { background: var(--color-card); border-radius: 8px; margin-bottom: 1rem; overflow: hidden; }
.faq-question {
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--color-primary); }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { padding: 0 1.5rem 1rem; display: none; }
.faq-item.active .faq-answer { display: block; }

/* === FOOTER === */
.site-footer {
    background: var(--color-card);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}
.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}
.footer-widgets { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-widget h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: var(--color-primary); }
.footer-widget ul { list-style: none; }
.footer-widget li { margin-bottom: 0.5rem; }
.footer-widget a { color: var(--color-text-muted); font-size: 14px; }
.footer-widget a:hover { color: var(--color-primary); }
.footer-geo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}
.footer-geo a {
    color: var(--color-text-muted);
    transition: color 0.2s;
}
.footer-geo a:hover, .footer-geo a.current { color: var(--color-primary); }
.site-info {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text-muted);
}
.site-info p { margin-bottom: 0.5rem; }
.responsible-gambling { background: var(--color-card-alt); padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 13px; }

/* === GAME GRID === */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.game-card { background: var(--color-card); border-radius: 8px; overflow: hidden; transition: transform 0.2s; }
.game-card:hover { transform: translateY(-4px); }
.game-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.game-card-title { padding: 0.75rem; font-size: 14px; font-weight: 500; text-align: center; }

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .main-navigation, .geo-switcher { display: none; }
    .mobile-toggle { display: block; }
    .header-cta { padding: 0.4rem 1rem; font-size: 13px; }
    .has-sidebar { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
    .hero-title { font-size: 1.5rem; }
    .entry-title { font-size: 1.5rem; }
    .entry-content h2 { font-size: 1.25rem; }
    .footer-widgets { grid-template-columns: 1fr 1fr; }
    .game-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .header-container { padding: 0 0.75rem; }
    .header-cta { padding: 0.35rem 0.75rem; font-size: 12px; }
    .post { padding: 1.25rem; }
    .widget { padding: 1rem; }
    .footer-widgets { grid-template-columns: 1fr; }
    .game-grid { grid-template-columns: 1fr; }
}

/* === UTILITIES === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
