* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #6b0000; color: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* Header */
header { background: linear-gradient(180deg, #8b0000 0%, #5a0000 100%); border-bottom: 3px solid #ffcc00; position: sticky; top: 0; z-index: 100; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.logo { font-size: 28px; font-weight: 900; color: #ffcc00; text-shadow: 2px 2px 0 #000; letter-spacing: 2px; }
nav ul { display: flex; list-style: none; gap: 5px; flex-wrap: wrap; }
nav ul li a { padding: 8px 14px; color: #fff; font-weight: 600; font-size: 14px; border-radius: 4px; transition: all 0.3s; }
nav ul li a:hover, nav ul li a.active { background: #ffcc00; color: #6b0000; }
.auth-btns { display: flex; gap: 8px; }
.btn-login { background: #ffcc00; color: #6b0000; padding: 8px 18px; border-radius: 20px; font-weight: 700; font-size: 13px; }
.btn-register { background: linear-gradient(180deg, #ff4444, #cc0000); color: #fff; padding: 8px 18px; border-radius: 20px; font-weight: 700; font-size: 13px; border: 2px solid #ffcc00; }

/* Hero */
.hero { background: linear-gradient(135deg, #4a0000 0%, #8b0000 50%, #4a0000 100%); padding: 50px 20px; text-align: center; position: relative; overflow: hidden; }
.hero h1 { font-size: 52px; color: #ffcc00; text-shadow: 3px 3px 0 #000; margin-bottom: 15px; letter-spacing: 3px; }
.hero p { font-size: 20px; max-width: 700px; margin: 0 auto 25px; color: #ffeebb; }
.hero-bonus { display: inline-block; background: #ffcc00; color: #6b0000; padding: 14px 40px; font-size: 22px; font-weight: 900; border-radius: 30px; box-shadow: 0 4px 0 #cc9900; }

/* Steps */
.steps { background: #fff5e0; padding: 25px 20px; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 12px; color: #6b0000; font-weight: 700; }
.step-num { background: #ffcc00; color: #6b0000; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; border: 2px solid #6b0000; }

/* Popular Section */
.section { padding: 50px 20px; max-width: 1200px; margin: 0 auto; }
.section h2 { font-size: 34px; color: #ffcc00; text-align: center; margin-bottom: 10px; text-shadow: 2px 2px 0 #000; }
.section .subtitle { text-align: center; color: #ffeebb; margin-bottom: 35px; font-size: 16px; }

.popular-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 20px; background: linear-gradient(135deg, #3a0000, #5a0000); padding: 25px; border-radius: 12px; border: 2px solid #ffcc00; align-items: center; }
.popular-tabs { display: flex; flex-direction: column; gap: 10px; }
.popular-tab { background: rgba(255,204,0,0.15); border: 1px solid #ffcc00; padding: 12px; border-radius: 6px; color: #ffcc00; font-weight: 700; text-align: center; cursor: pointer; }
.popular-tab.active { background: #ffcc00; color: #6b0000; }
.popular-img { text-align: center; }
.popular-img img { max-width: 100%; height: auto; border-radius: 8px; }
.popular-info h3 { color: #ffcc00; font-size: 24px; margin-bottom: 12px; }
.popular-info p { color: #ffeebb; font-size: 14px; margin-bottom: 18px; }
.play-btn { display: inline-block; background: linear-gradient(180deg, #ff4444, #cc0000); color: #fff; padding: 10px 30px; border-radius: 20px; font-weight: 700; border: 2px solid #ffcc00; }

/* Service Bar */
.service-bar { background: linear-gradient(90deg, #4a0000, #6b0000); padding: 18px 25px; border-radius: 8px; margin-top: 20px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #ffcc00; flex-wrap: wrap; gap: 15px; }
.service-bar .service-info { color: #ffcc00; font-weight: 700; }
.service-bar .contact-btn { background: #ffcc00; color: #6b0000; padding: 8px 20px; border-radius: 20px; font-weight: 700; }

/* Jackpot */
.jackpot { background: url('picture/20260610_011223_37e9de53cda0975ceccdcaa1dc80ce78.png') center/cover; padding: 40px 20px; text-align: center; margin: 30px 0; border-radius: 12px; border: 3px solid #ffcc00; }
.jackpot-amount { background: #1a0000; display: inline-block; padding: 18px 35px; border-radius: 12px; border: 3px solid #ffcc00; font-size: 48px; font-weight: 900; color: #ff4444; letter-spacing: 6px; font-family: 'Courier New', monospace; box-shadow: inset 0 0 20px rgba(255,204,0,0.3); }

/* Games Grid */
.games-section { background: #5a0000; padding: 30px 20px; border-radius: 12px; }
.games-row { display: flex; gap: 15px; margin-bottom: 18px; align-items: center; flex-wrap: wrap; }
.game-category { background: #2a0000; border: 2px solid #ffcc00; padding: 15px 20px; border-radius: 6px; min-width: 90px; text-align: center; color: #ffcc00; font-weight: 700; }
.games-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; flex: 1; }
.game-card { background: #3a0000; border-radius: 8px; overflow: hidden; border: 1px solid #ffcc00; transition: transform 0.3s; cursor: pointer; }
.game-card:hover { transform: translateY(-5px); }
.game-card img { width: 100%; height: auto; display: block; }
.game-card .game-name { padding: 6px; font-size: 12px; text-align: center; color: #ffcc00; }

/* Devices Section */
.devices { background: linear-gradient(135deg, #4a0000, #6b0000); padding: 40px 20px; border-radius: 12px; margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.devices-img img { max-width: 100%; height: auto; }
.devices-info h3 { color: #ffcc00; font-size: 30px; margin-bottom: 15px; }
.devices-info p { color: #ffeebb; margin-bottom: 20px; font-size: 15px; }
.download-options { display: flex; gap: 20px; flex-wrap: wrap; }
.download-card { background: #fff; padding: 15px; border-radius: 8px; text-align: center; }
.download-card img { width: 100px; height: 100px; }
.download-card p { color: #6b0000; font-weight: 700; margin-top: 8px; font-size: 13px; }

/* Brand Story */
.brand-story { background: #4a0000; padding: 40px; border-radius: 12px; border: 2px solid #ffcc00; margin: 30px 0; }
.brand-story h2 { text-align: left; margin-bottom: 20px; }
.brand-story p { color: #ffeebb; margin-bottom: 15px; font-size: 15px; line-height: 1.8; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 30px 0; }
.feature-card { background: linear-gradient(180deg, #5a0000, #3a0000); padding: 25px; border-radius: 10px; border: 1px solid #ffcc00; text-align: center; }
.feature-card img { width: 80px; height: 80px; margin-bottom: 15px; border-radius: 50%; }
.feature-card h3 { color: #ffcc00; font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: #ffeebb; font-size: 13px; }

/* Testimonial */
.testimonial { background: linear-gradient(135deg, #6b0000, #4a0000); padding: 35px; border-radius: 12px; border-left: 5px solid #ffcc00; margin: 30px 0; font-style: italic; color: #ffeebb; font-size: 16px; }
.testimonial-author { display: block; margin-top: 12px; color: #ffcc00; font-weight: 700; font-style: normal; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin: 30px 0; }
.stat-box { background: #3a0000; padding: 25px; border-radius: 10px; border: 2px solid #ffcc00; text-align: center; }
.stat-num { font-size: 36px; color: #ffcc00; font-weight: 900; display: block; }
.stat-label { color: #ffeebb; font-size: 13px; margin-top: 8px; }

/* FAQ */
.faq-section { margin: 40px 0; }
.faq-item { background: #4a0000; padding: 20px 25px; border-radius: 8px; margin-bottom: 12px; border-left: 4px solid #ffcc00; }
.faq-item h4 { color: #ffcc00; font-size: 17px; margin-bottom: 10px; }
.faq-item p { color: #ffeebb; font-size: 14px; }
.faq-item ul { margin-top: 8px; padding-left: 22px; color: #ffeebb; }

/* Footer */
footer { background: #2a0000; padding: 40px 20px 20px; border-top: 3px solid #ffcc00; margin-top: 40px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-col h4 { color: #ffcc00; margin-bottom: 15px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #ffeebb; font-size: 14px; }
.footer-col ul li a:hover { color: #ffcc00; }
.footer-col p { color: #ffeebb; font-size: 14px; line-height: 1.7; }
.footer-bottom { text-align: center; padding-top: 25px; margin-top: 25px; border-top: 1px solid #6b0000; color: #ffeebb; font-size: 13px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .popular-grid { grid-template-columns: 1fr; }
  .games-list { grid-template-columns: repeat(3, 1fr); }
  .devices { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .jackpot-amount { font-size: 28px; letter-spacing: 3px; padding: 12px 18px; }
  nav ul { justify-content: center; }
  .nav-container { justify-content: center; }
}
.step-num img{width:100%;height:100%;object-fit:cover;object-position:center}