* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Arial, sans-serif; background: #0a0a1a; color: #e8e8f0; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.top-header { background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%); padding: 12px 0; border-bottom: 2px solid #e94560; position: sticky; top: 0; z-index: 999; }
.header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.logo { font-size: 28px; font-weight: 900; color: #e94560; letter-spacing: 2px; text-transform: uppercase; }
.logo span { color: #fff; }
.main-nav { display: flex; gap: 5px; align-items: center; flex-wrap: wrap; }
.main-nav a { padding: 8px 16px; color: #fff; font-size: 14px; font-weight: 500; border-radius: 4px; transition: all 0.3s; }
.main-nav a:hover { background: #e94560; color: #fff; }
.main-nav a.active { background: #e94560; color: #fff; }
.auth-buttons { display: flex; gap: 10px; }
.btn-login, .btn-register { padding: 8px 22px; border-radius: 4px; font-weight: 600; font-size: 14px; transition: all 0.3s; cursor: pointer; }
.btn-login { background: transparent; border: 2px solid #e94560; color: #e94560; }
.btn-login:hover { background: #e94560; color: #fff; }
.btn-register { background: #e94560; color: #fff; border: 2px solid #e94560; }
.btn-register:hover { background: #c5364d; }

/* Hero */
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1a1a2e 100%); padding: 60px 20px; position: relative; overflow: hidden; }
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-text h1 { font-size: 48px; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.hero-text h1 span { color: #e94560; }
.hero-text p { font-size: 17px; color: #c8c8d0; margin-bottom: 25px; }
.hero-bonus { background: rgba(233, 69, 96, 0.15); border-left: 4px solid #e94560; padding: 15px 20px; margin-bottom: 25px; border-radius: 4px; }
.hero-bonus strong { color: #e94560; font-size: 20px; }
.hero-cta { display: inline-block; padding: 14px 36px; background: #e94560; color: #fff; border-radius: 6px; font-weight: 700; font-size: 16px; }
.hero-cta:hover { background: #c5364d; }
.hero-image { display: flex; justify-content: center; }
.hero-image img { max-width: 100%; height: auto; }

/* Sections */
.section { padding: 60px 20px; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 32px; color: #e94560; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: #a8a8b8; margin-bottom: 40px; font-size: 15px; }

/* Popular Games Grid */
.games-section { background: #11111f; }
.games-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.game-card { background: #1a1a2e; border-radius: 8px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; border: 1px solid #2a2a3e; }
.game-card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3); }
.game-card img { width: 100%; height: auto; object-fit: cover; }
.game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: #fff; background: #1a1a2e; }

/* Tabs Section */
.tabs-section { background: #0a0a1a; }
.tabs-wrapper { display: grid; grid-template-columns: 280px 1fr; gap: 30px; background: #11111f; border-radius: 10px; overflow: hidden; min-height: 380px; }
.tab-list { background: #1a1a2e; padding: 20px 0; }
.tab-item { padding: 16px 24px; cursor: pointer; color: #c8c8d0; font-weight: 500; border-left: 4px solid transparent; transition: all 0.3s; font-size: 15px; }
.tab-item:hover, .tab-item.active { background: #e94560; color: #fff; border-left-color: #fff; }
.tab-content { padding: 30px; }
.tab-content h3 { color: #e94560; margin-bottom: 15px; font-size: 22px; }
.tab-content p { color: #c8c8d0; margin-bottom: 15px; }
.tab-content ul { color: #c8c8d0; padding-left: 22px; margin-bottom: 15px; }
.tab-content ul li { margin-bottom: 6px; }

/* Support Banner */
.support-banner { background: linear-gradient(135deg, #16213e 0%, #0f3460 100%); padding: 50px 20px; }
.support-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; }
.support-content h2 { font-size: 32px; color: #fff; margin-bottom: 15px; }
.support-content p { color: #c8c8d0; margin-bottom: 20px; }
.download-btn { display: inline-block; padding: 12px 30px; background: #e94560; color: #fff; border-radius: 6px; font-weight: 600; }

/* Steps */
.steps-section { background: #11111f; padding: 60px 20px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.step-card { text-align: center; padding: 30px 20px; background: #1a1a2e; border-radius: 10px; border-top: 4px solid #e94560; }
.step-number { font-size: 48px; font-weight: 900; color: #e94560; margin-bottom: 10px; }
.step-card h4 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.step-card p { color: #a8a8b8; font-size: 13px; }

/* About Block */
.about-block { background: #0a0a1a; padding: 60px 20px; }
.about-container { max-width: 1200px; margin: 0 auto; }
.about-container h2 { font-size: 28px; color: #e94560; text-align: center; margin-bottom: 30px; }
.about-text { color: #c8c8d0; font-size: 15px; }
.about-text p { margin-bottom: 18px; }

/* Three Columns */
.three-cols { background: #11111f; padding: 60px 20px; }
.cols-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.col-box { background: #1a1a2e; padding: 25px; border-radius: 8px; border-top: 3px solid #e94560; }
.col-box h3 { color: #e94560; margin-bottom: 15px; font-size: 20px; }
.col-box h4 { color: #fff; margin: 15px 0 8px; font-size: 16px; }
.col-box p { color: #c8c8d0; font-size: 14px; margin-bottom: 12px; }
.contact-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #2a2a3e; }
.contact-row:last-child { border-bottom: none; }
.contact-icon { width: 32px; height: 32px; background: #e94560; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: bold; font-size: 14px; }
.service-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2a3e; color: #c8c8d0; font-size: 14px; }
.service-row strong { color: #fff; }

/* FAQ */
.faq-section { background: #0a0a1a; padding: 60px 20px; }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: #1a1a2e; margin-bottom: 12px; padding: 20px 24px; border-radius: 6px; border-left: 4px solid #e94560; }
.faq-item h4 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.faq-item p { color: #c8c8d0; font-size: 14px; }
.faq-item ul { color: #c8c8d0; font-size: 14px; padding-left: 22px; margin-top: 8px; }

/* Testimonial */
.testimonial { background: #16213e; padding: 40px 20px; text-align: center; }
.testimonial-box { max-width: 800px; margin: 0 auto; font-style: italic; color: #e8e8f0; font-size: 16px; }
.testimonial-author { display: block; margin-top: 12px; color: #e94560; font-style: normal; font-weight: 600; font-size: 14px; }

/* Footer */
footer { background: #08081a; padding: 50px 20px 20px; border-top: 3px solid #e94560; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-col h4 { color: #e94560; margin-bottom: 15px; font-size: 16px; text-transform: uppercase; }
.footer-col p { color: #a8a8b8; font-size: 14px; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #a8a8b8; font-size: 14px; }
.footer-col ul li a:hover { color: #e94560; }
.footer-bottom { max-width: 1200px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid #2a2a3e; text-align: center; color: #888; font-size: 13px; }
.responsible-badge { display: inline-block; padding: 6px 14px; background: #e94560; color: #fff; border-radius: 4px; font-weight: 600; margin-top: 10px; }

@media (max-width: 900px) {
.header-container { flex-direction: column; gap: 12px; }
.main-nav { width: 100%; justify-content: center; }
.hero-container { grid-template-columns: 1fr; text-align: center; }
.hero-text h1 { font-size: 32px; }
.games-grid { grid-template-columns: repeat(2, 1fr); }
.tabs-wrapper { grid-template-columns: 1fr; }
.support-container { grid-template-columns: 1fr; }
.steps-grid { grid-template-columns: repeat(2, 1fr); }
.cols-grid { grid-template-columns: 1fr; }
.footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
.games-grid { grid-template-columns: 1fr 1fr; }
.steps-grid { grid-template-columns: 1fr; }
.footer-container { grid-template-columns: 1fr; }
.main-nav a { padding: 6px 10px; font-size: 13px; }
}
.contact-icon img{width:100%;height:100%;object-fit:cover;object-position:center}