/* =============================================
   ROMABET GÜNCEL - Ana Stil Dosyası
   ============================================= */

:root {
    --bg-primary: #0c1220;
    --bg-secondary: #111927;
    --bg-card: #1a2640;
    --bg-card-hover: #1e2d4d;
    --gold: #f5b20a;
    --gold-dark: #d49800;
    --gold-light: #ffd54f;
    --red: #e63946;
    --red-dark: #c1121f;
    --text: #e8edf5;
    --text-muted: #7d8fa9;
    --text-light: #b8c5d6;
    --border: #243356;
    --border-light: #2e4070;
    --success: #2dc653;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --max-width: 1200px;
    --header-h: 70px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background-color: var(--bg-primary); color: var(--text); line-height: 1.7; min-height: 100vh; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--transition); border: 2px solid transparent; text-decoration: none; white-space: nowrap; }
.btn-gold { background: var(--gold); color: #0c1220; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #0c1220; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,178,10,0.4); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,57,70,0.4); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #0c1220; transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 18px; border-radius: var(--radius); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ---- Header ---- */
header { position: sticky; top: 0; z-index: 1000; background: #060d18; border-bottom: 1px solid var(--border); height: var(--header-h); box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }
.logo-text { font-size: 20px; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; }

nav { display: flex; align-items: center; gap: 2px; }
nav a { color: var(--text-light); font-size: 13px; font-weight: 500; padding: 6px 11px; border-radius: var(--radius-sm); white-space: nowrap; }
nav a:hover, nav a.active { color: var(--gold); background: rgba(245,178,10,0.08); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ---- Hamburger ---- */
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; cursor: pointer; background: none; border: none; padding: 0; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: #060d18; z-index: 999; padding: 20px; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); font-size: 15px; font-weight: 500; padding: 13px 16px; border-radius: var(--radius-sm); border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--gold); background: rgba(245,178,10,0.08); }
.mobile-cta { display: flex; gap: 12px; margin-top: 16px; }
.mobile-cta .btn { flex: 1; text-align: center; }

/* ---- Breadcrumb ---- */
.breadcrumb { background: var(--bg-secondary); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--border-light); }
.breadcrumb li a { color: var(--text-muted); }
.breadcrumb li a:hover { color: var(--gold); }
.breadcrumb li:last-child { color: var(--gold); }

/* ---- Hero ---- */
.hero { background: linear-gradient(135deg, #060d18 0%, #0d1b2e 50%, #091422 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center top, rgba(245,178,10,0.07) 0%, transparent 70%); pointer-events: none; }
.hero-badge { display: inline-block; background: rgba(245,178,10,0.12); color: var(--gold); border: 1px solid rgba(245,178,10,0.3); padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.hero h1 { font-size: clamp(26px, 5vw, 52px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--text); }
.hero h1 span { color: var(--gold); }
.hero p { font-size: clamp(15px, 2vw, 18px); color: var(--text-light); max-width: 650px; margin: 0 auto 36px; line-height: 1.7; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 32px; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ---- Sections ---- */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 700; margin-bottom: 12px; color: var(--text); }
.section-header h2 span { color: var(--gold); }
.section-header p { font-size: 15px; color: var(--text-muted); max-width: 580px; margin: 0 auto; }
.section-alt { background: var(--bg-secondary); }

/* ---- Cards ---- */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.card:hover { border-color: var(--border-light); background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { width: 54px; height: 54px; background: rgba(245,178,10,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- Feature Row ---- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 700; margin-bottom: 16px; color: var(--text); }
.feature-text h2 span { color: var(--gold); }
.feature-text p { color: var(--text-light); margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.feature-list { margin: 18px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 14px; color: var(--text-light); }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.feature-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.feature-image img { width: 100%; height: 300px; object-fit: cover; }

/* ---- Steps ---- */
.step { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.step-number { width: 44px; height: 44px; min-width: 44px; background: var(--gold); color: #0c1220; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.step-content h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---- Bonus Cards ---- */
.bonus-card { background: linear-gradient(135deg, var(--bg-card), #1e3050); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; text-align: center; position: relative; overflow: hidden; transition: var(--transition); }
.bonus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.bonus-amount { font-size: 46px; font-weight: 900; color: var(--gold); line-height: 1; margin: 14px 0 8px; }
.bonus-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.bonus-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }

/* ---- Games Grid ---- */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.game-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.game-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,178,10,0.15); }
.game-card img { width: 100%; height: 150px; object-fit: cover; }
.game-card-info { padding: 12px; }
.game-card-info h4 { font-size: 14px; font-weight: 600; color: var(--text); }
.game-card-info span { font-size: 12px; color: var(--text-muted); }

/* ---- Blog Cards ---- */
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.blog-tag { background: rgba(245,178,10,0.12); color: var(--gold); padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 600; }
.blog-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--text); line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* ---- Article / Blog Post ---- */
.article-header { background: linear-gradient(135deg, #060d18, #0d1b2e); padding: 60px 0; text-align: center; }
.article-header h1 { font-size: clamp(22px, 4vw, 40px); font-weight: 800; color: var(--text); margin-bottom: 16px; line-height: 1.3; }
.article-meta { display: flex; align-items: center; justify-content: center; gap: 20px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.article-body { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.article-body h2 { font-size: clamp(19px, 2.5vw, 26px); font-weight: 700; color: var(--text); margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.article-body h3 { font-size: 19px; font-weight: 600; color: var(--text); margin: 26px 0 12px; }
.article-body p { font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 14px 0 22px 22px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 8px; }
.article-body img { border-radius: var(--radius-lg); margin: 28px 0; width: 100%; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.info-box { background: rgba(245,178,10,0.05); border: 1px solid rgba(245,178,10,0.2); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 18px 22px; margin: 22px 0; }
.info-box p { color: var(--text-light); font-size: 14px; margin: 0; }

/* ---- FAQ ---- */
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 18px 22px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; user-select: none; transition: var(--transition); }
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question h3 { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; }
.faq-icon { font-size: 22px; color: var(--gold); flex-shrink: 0; transition: var(--transition); font-weight: 300; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---- Stats ---- */
.stats-section { background: linear-gradient(135deg, #0d1b2e, #091422); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .number { font-size: 40px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-item .label { font-size: 14px; color: var(--text-muted); }

/* ---- Table ---- */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
th { background: var(--bg-card); color: var(--gold); font-size: 13px; font-weight: 600; padding: 14px 18px; text-align: left; text-transform: uppercase; letter-spacing: 0.5px; }
td { padding: 14px 18px; font-size: 14px; color: var(--text-light); border-top: 1px solid var(--border); }
tr:hover td { background: var(--bg-card); }

/* ---- Contact ---- */
.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: var(--transition); }
.contact-card:hover { border-color: var(--border-light); transform: translateY(-3px); }
.contact-icon { font-size: 32px; flex-shrink: 0; }
.contact-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---- CTA Banner ---- */
.cta-banner { background: linear-gradient(135deg, #0d1b30, #1a2a46); border: 1px solid rgba(245,178,10,0.2); border-radius: var(--radius-lg); padding: 50px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent, var(--gold)); }
.cta-banner h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 700; color: var(--text); margin-bottom: 12px; }
.cta-banner p { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0 auto 28px; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Badge ---- */
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-gold { background: rgba(245,178,10,0.15); color: var(--gold); }
.badge-red { background: rgba(230,57,70,0.15); color: var(--red); }
.badge-green { background: rgba(45,198,83,0.15); color: var(--success); }

/* ---- Footer ---- */
footer { background: #060c16; border-top: 1px solid var(--border); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: var(--text-muted); }
.footer-contact-item .icon { font-size: 16px; flex-shrink: 0; }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-disclaimer { background: #040810; padding: 18px 0; border-top: 1px solid var(--border); }
.footer-disclaimer p { font-size: 12px; color: #3a4a60; text-align: center; line-height: 1.6; }

/* ---- Page Header ---- */
.page-header { background: linear-gradient(135deg, #060d18, #0d1b2e); padding: 60px 0; text-align: center; }
.page-header h1 { font-size: clamp(24px, 4vw, 42px); font-weight: 800; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.page-header p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.page-content { padding: 60px 0; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { font-size: 14px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar-links a:hover { color: var(--gold); }
.highlight-box { background: linear-gradient(135deg, rgba(245,178,10,0.08), rgba(245,178,10,0.03)); border: 1px solid rgba(245,178,10,0.25); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.highlight-box h3 { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.highlight-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row { grid-template-columns: 1fr; gap: 36px; }
    .feature-row.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}
@media (max-width: 768px) {
    .header-cta { display: none; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero { padding: 50px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    section { padding: 50px 0; }
    .cta-banner { padding: 36px 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .article-body { padding: 40px 16px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .hero-stats { gap: 20px; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { width: 100%; }
    .games-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
