* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #b00000; color: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.top-bar { background: #1a0000; padding: 8px 0; text-align: right; font-size: 12px; }
.top-bar .container { padding: 0 20px; }
.top-bar a { background: linear-gradient(180deg,#ffd700,#b8860b); color: #1a0000; padding: 6px 16px; border-radius: 20px; font-weight: bold; }

header { background: #c00000; border-bottom: 3px solid #ffd700; position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 12px; }
.logo { font-size: 28px; font-weight: 900; color: #fff; background: linear-gradient(180deg,#ffd700,#ff8c00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }
nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; }
nav ul li a { padding: 10px 14px; color: #fff; font-weight: 600; font-size: 13px; text-transform: uppercase; display: block; border-radius: 4px; transition: 0.3s; }
nav ul li a:hover, nav ul li a.active { color: #ffd700; }
.auth-buttons { display: flex; gap: 8px; }
.btn-login, .btn-register { padding: 8px 18px; border-radius: 20px; font-weight: bold; font-size: 13px; }
.btn-login { background: transparent; border: 1px solid #ffd700; color: #ffd700; }
.btn-register { background: linear-gradient(180deg,#ffd700,#b8860b); color: #1a0000; }

/* Hero Banner */
.hero { background: linear-gradient(135deg,#8b0000,#c00000); padding: 0; position: relative; overflow: hidden; }
.hero-img { width: 100%; max-height: 480px; object-fit: cover; }

/* Promo Bar */
.promo-bar { background: #ffd700; color: #1a0000; padding: 14px; text-align: center; font-weight: bold; font-size: 15px; letter-spacing: 1px; }

/* Features */
.features { background: #c00000; padding: 40px 20px; }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .icon { width: 44px; height: 44px; background: #ffd700; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #b00000; font-weight: bold; font-size: 20px; flex-shrink: 0; }
.feature-item h3 { font-size: 14px; color: #ffd700; margin-bottom: 6px; text-transform: uppercase; }
.feature-item p { font-size: 12px; color: #f4e4c4; }

/* Section */
section { padding: 40px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 22px; color: #ffd700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }

/* About Intro */
.about-intro { background: #b00000; }
.about-intro p { color: #f4e4c4; margin-bottom: 16px; font-size: 15px; }
.about-intro h2 { color: #ffd700; margin: 24px 0 12px; font-size: 20px; }
.about-intro h3 { color: #ffe45c; margin: 18px 0 10px; font-size: 16px; }

.cta-button { display: inline-block; background: linear-gradient(180deg,#ffd700,#b8860b); color: #1a0000; padding: 12px 36px; border-radius: 24px; font-weight: bold; margin: 18px 0; }

/* Game grid */
.games { background: #a00000; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); gap: 14px; }
.game-card { background: #800000; border-radius: 8px; overflow: hidden; border: 1px solid #ffd70033; transition: 0.3s; }
.game-card:hover { transform: translateY(-4px); border-color: #ffd700; }
.game-card img { width: 100%; height: 170px; object-fit: cover; }
.game-card .info { padding: 10px; text-align: center; font-size: 13px; color: #ffd700; }

/* Featured */
.featured-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 16px; }
.featured-card { background: #800000; border-radius: 8px; overflow: hidden; }
.featured-card img { width: 100%; object-fit: cover; }
.featured-card .body { padding: 14px; }
.featured-card h4 { color: #ffd700; font-size: 15px; margin-bottom: 6px; }
.featured-card p { color: #f4e4c4; font-size: 12px; }

/* News */
.news { background: #b00000; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 16px; }
.news-item { background: #800000; border-radius: 8px; overflow: hidden; }
.news-item img { width: 100%; height: 160px; object-fit: cover; }
.news-item .body { padding: 12px; }
.news-meta { font-size: 11px; color: #ffd700; margin-bottom: 8px; }
.news-meta span { background: #ffd70022; padding: 2px 8px; border-radius: 10px; margin-right: 6px; }
.news-item h4 { font-size: 14px; color: #fff; margin-bottom: 8px; }
.news-item p { font-size: 12px; color: #f4e4c4; }

/* Stats */
.stats { background: #8b0000; padding: 30px 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 18px; max-width: 1100px; margin: 0 auto; text-align: center; }
.stat-num { font-size: 28px; color: #ffd700; font-weight: 900; }
.stat-label { font-size: 13px; color: #f4e4c4; margin-top: 4px; }

/* Process */
.process { background: #a00000; }
.process-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; }
.process-step { background: #800000; padding: 18px; border-left: 3px solid #ffd700; border-radius: 4px; }
.process-step h4 { color: #ffd700; margin-bottom: 8px; font-size: 15px; }
.process-step p { font-size: 13px; color: #f4e4c4; }

/* FAQ */
.faq { background: #b00000; }
.faq-item { background: #800000; padding: 16px 20px; border-radius: 6px; margin-bottom: 12px; border-left: 3px solid #ffd700; }
.faq-item h4 { color: #ffd700; font-size: 15px; margin-bottom: 8px; }
.faq-item p { color: #f4e4c4; font-size: 13px; }
.faq-item ul { margin-top: 8px; padding-left: 20px; color: #f4e4c4; font-size: 13px; }

/* Review */
.review { background: #8b0000; padding: 28px 20px; border-top: 2px solid #ffd700; border-bottom: 2px solid #ffd700; }
.review-box { max-width: 800px; margin: 0 auto; text-align: center; font-style: italic; color: #f4e4c4; font-size: 15px; }
.review-box strong { color: #ffd700; font-style: normal; display: block; margin-bottom: 8px; }

/* Footer */
footer { background: #1a0000; padding: 40px 20px 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 28px; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { color: #ffd700; margin-bottom: 14px; font-size: 15px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 4px 0; font-size: 13px; color: #d4b888; }
.footer-col ul li a:hover { color: #ffd700; }
.footer-col p { font-size: 13px; color: #d4b888; margin-bottom: 6px; }
.copyright { text-align: center; padding-top: 20px; margin-top: 24px; border-top: 1px solid #ffd70044; color: #d4b888; font-size: 12px; }
.responsible { background: #ffd700; color: #1a0000; padding: 8px; text-align: center; font-weight: bold; font-size: 13px; margin-top: 10px; }

@media(max-width: 768px) {
  nav ul li a { padding: 8px 10px; font-size: 12px; }
  .logo { font-size: 22px; }
  .section-title { font-size: 18px; }
}
.feature-item .icon img{width:100%;height:100%;object-fit:cover;object-position:center}