/* Append styling for new SEO footer text block */
@import url('main.css'); /* Ensuring compatibility if this was separate but we are replacing */

:root {
	--bg-dark: #07090F;
	--bg-card: #121829;
	--bg-glass: rgba(18, 24, 41, 0.6);
	--text-main: #FFFFFF;
	--text-muted: #94A3B8;
	--brand-primary: #FFB703;
	--brand-primary-hover: #E5A300;
	--brand-secondary: #7209B7;
	--brand-accent: #F72585;
	--tag-hot: #ef4444;
	--tag-new: #10b981;
	--font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-family-display: 'Outfit', sans-serif;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-full: 9999px;
	--transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--transition-smooth: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family-sans); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-family-display); font-weight: 700; line-height: 1.2; }
a { color: var(--brand-primary); text-decoration: none; transition: var(--transition-smooth); }
a:hover { color: var(--brand-primary-hover); }
ul { list-style: none; }

.glass {
	background: var(--bg-glass);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.highlight {
	background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 1.2rem; font-weight: 600; font-family: var(--font-family-sans); border-radius: var(--radius-full); cursor: pointer; transition: var(--transition-bounce); border: none; font-size: 0.95rem; }
.btn-large { padding: 0.8rem 1.8rem; font-size: 1.1rem; }
.btn-primary { background: linear-gradient(135deg, #FFB703, #FF9500); color: #000; box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 183, 3, 0.5); color: #000; }
.btn-outline { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text-main); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.4); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1rem 0; }
.header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.site-title { font-size: 1.5rem; font-weight: 800; margin: 0; }
.site-title a { color: white; }
.site-title span { color: var(--brand-primary); }
.site-title .dot { color: var(--brand-accent); }
.main-navigation ul { display: flex; gap: 2rem; }
.nav-link { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; position: relative; }
.nav-link:hover { color: white; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 2px; background: var(--brand-primary); transition: var(--transition-smooth); }
.nav-link:hover::after { width: 100%; }
.header-actions { display: flex; gap: 1rem; }
.menu-toggle { display: none; }

/* Hero Section */
.hero-section { padding: 140px 20px 80px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; min-height: 80vh; }
.hero-title { font-size: 3.5rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
.hero-subtitle { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 2rem; max-width: 90%; }
.hero-cta-group { display: flex; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-size: 1.8rem; font-weight: 800; font-family: var(--font-family-display); color: var(--text-main); }
.stat-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-visual { position: relative; height: auto; min-height: 380px; max-height: 480px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; margin: 0 auto; width: 100%; max-width: 500px; }
.hero-image-placeholder { width: 100%; height: 100%; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(45deg, var(--bg-card), #1a2238); box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.long-context-section { max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; }
.context-container { padding: 3rem; border-radius: var(--radius-lg); border-left: 4px solid var(--brand-primary); }
.context-container h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #fff; }
.context-container p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.8; }
.context-container p:last-child { margin-bottom: 0; }
.context-container strong { color: #fff; }
.context-container em { color: var(--brand-primary); font-style: normal; font-weight: 600; }

/* Providers Detailed */
.providers-section { max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; }
.section-desc { color: var(--text-muted); margin-top: 0.5rem; max-width: 600px; }
.providers-grid-detailed { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.provider-detail-card { background: var(--bg-card); padding: 2rem; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.05); transition: var(--transition-bounce); }
.provider-detail-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.provider-logo { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; font-family: var(--font-family-display); }
.provider-logo.jili { color: #ffd700; }
.provider-logo.pg { color: #ec4899; }
.provider-logo.pp { color: #f97316; }
.provider-logo.evo { color: #eab308; }
.provider-info h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #fff; }
.provider-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Sections Global */
.section-header { margin-bottom: 2rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 1rem auto 0; }
.section-title { font-size: 2rem; display: flex; align-items: center; gap: 0.5rem; }
.section-header.center .section-title { justify-content: center; }
.icon { width: 24px; height: 24px; }
.icon-flame { color: var(--brand-primary); }

/* Game Grid */
.games-section { max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; }
.game-filters { display: flex; gap: 0.5rem; margin-top: 1rem; }
.filter-btn { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); padding: 0.5rem 1rem; border-radius: var(--radius-full); cursor: pointer; transition: var(--transition-smooth); font-weight: 500; }
.filter-btn:hover, .filter-btn.active { background: var(--brand-primary); color: #000; border-color: var(--brand-primary); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.game-card { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition-bounce); position: relative; }
.game-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.game-thumb { position: relative; height: 180px; background: #1a2238; }
.thumbnail-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1f2937, #111827); }
.game-tag { position: absolute; top: 10px; left: 10px; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; z-index: 2; }
.game-tag.hot { background: var(--tag-hot); color: white; }
.game-tag.new { background: var(--tag-new); color: white; }
.game-tag.live { background: var(--brand-secondary); color: white; }
.game-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-smooth); backdrop-filter: blur(2px); }
.game-card:hover .game-overlay { opacity: 1; }
.play-btn { width: 60px; height: 60px; border-radius: 50%; background: var(--brand-primary); border: none; color: #000; display: flex; align-items: center; justify-content: center; cursor: pointer; transform: scale(0.8); transition: var(--transition-bounce); }
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 20px var(--brand-primary); }
.game-info { padding: 1.25rem; }
.game-name { font-size: 1.1rem; margin-bottom: 0.25rem; }
.game-provider { color: var(--brand-primary); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }
.game-micro-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; }

/* FAQ Section */
.faq-section { max-width: 800px; margin: 0 auto 100px; padding: 0 20px; }
.faq-accordion { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-card); border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid rgba(255,255,255,0.05); }
.faq-item h3 { font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
.faq-item .faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* SEO Footer Heavy */
.site-footer { background: #040609; padding: 80px 20px 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { font-size: 2rem; margin-bottom: 1rem; }
.footer-logo span { color: var(--brand-primary); }
.brand-desc { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.6; max-width: 300px; }
.certifications { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cert-badge { padding: 0.3rem 0.8rem; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.03); border-radius: 4px; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.links-widget h3, .payments-widget h3 { font-size: 1.1rem; margin-bottom: 1.5rem; color: white; letter-spacing: 0.05em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem;}
.links-widget ul li { margin-bottom: 0.8rem; }
.links-widget ul li a { color: var(--text-muted); font-size: 0.95rem; display: flex; transition: var(--transition-smooth); }
.links-widget ul li a:hover { color: var(--brand-primary); transform: translateX(5px); }
.payment-logos { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pay-badge { background: rgba(255,255,255,0.05); padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-size: 0.8rem; color: var(--text-main); font-weight: 600; border: 1px solid rgba(255,255,255,0.1); }

/* SEO Detailed Footer Text */
.seo-footer-text { margin-bottom: 3rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.05); }
.seo-footer-text h2 { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.seo-footer-text p { font-size: 0.8rem; color: #64748B; line-height: 1.7; margin-bottom: 1rem; text-align: justify; }
.seo-footer-text strong { color: #94A3B8; }

.site-info { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.85rem; }

@keyframes pulse {
	0% { transform: scale(1); opacity: 0.2; }
	100% { transform: scale(1.5); opacity: 0.4; }
}

/* Promo Banner */
.promo-banner-section { max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; }
.promo-banner { padding: 4rem 2rem; border-radius: var(--radius-lg); text-align: center; background: linear-gradient(135deg, rgba(255,183,3,0.1), rgba(247,37,133,0.1)); border: 1px solid rgba(255,255,255,0.1); }
.promo-content { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.promo-content h2 { font-size: 2.2rem; color: #fff; line-height: 1.2; letter-spacing: -0.02em; }
.promo-content p { color: var(--text-muted); font-size: 1.1rem; }
.promo-content .btn { margin-top: 1rem; padding: 0.8rem 2.5rem; }

/* Articles */
.article-card { flex-direction: column; display: flex; }
.article-info { display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.article-info .game-provider { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.5rem; letter-spacing: 0.05em; font-weight: 500; }
.article-info .game-name { font-size: 1.3rem; margin-bottom: 0.5rem; line-height: 1.3; color: #fff; }
.article-info .game-micro-desc { font-size: 0.95rem; line-height: 1.6; color: #94A3B8; }
.single-article-content p { margin-bottom: 1.5rem; }

/* Media Queries */
@media (max-width: 992px) {
	.hero-section { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
	.hero-subtitle { margin: 0 auto 2rem; }
	.hero-cta-group, .hero-stats { justify-content: center; }
	.hero-visual { height: 350px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.main-navigation ul { display: none; }
	.hero-title { font-size: 2.5rem; }
	.footer-grid { grid-template-columns: 1fr; }
	.context-container { padding: 1.5rem; }
}
