* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Arial, sans-serif; background: #f1f3f6; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Header */
.top-header { background: #1e6b5c; color: #fff; padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { font-size: 24px; font-weight: bold; color: #fff; letter-spacing: 1px; }
.logo span { color: #f5d100; }
.top-actions { display: flex; gap: 10px; }
.btn-login, .btn-signup { padding: 8px 22px; border-radius: 4px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; }
.btn-login { background: #f5d100; color: #1e6b5c; }
.btn-signup { background: #fff; color: #1e6b5c; border: 1px solid #ddd; }
.btn-login:hover { background: #ffdd33; }
.btn-signup:hover { background: #f1f3f6; }

/* Nav */
.main-nav { background: #fff; padding: 10px 20px; border-bottom: 2px solid #e8e8e8; text-align: center; }
.main-nav ul { list-style: none; display: inline-flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.main-nav ul li a { color: #1e6b5c; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; padding: 6px 10px; }
.main-nav ul li a.active, .main-nav ul li a:hover { color: #e85a2c; border-bottom: 2px solid #e85a2c; }
.main-nav ul li::after { content: "•"; color: #f5b800; margin-left: 30px; }
.main-nav ul li:last-child::after { content: ""; }

/* Layout */
.container { display: grid; grid-template-columns: 220px 1fr 240px; gap: 12px; max-width: 1280px; margin: 12px auto; padding: 0 10px; }
@media (max-width: 992px) { .container { grid-template-columns: 1fr; } }

/* Sidebar left */
.sidebar-left { background: #fff; border-radius: 6px; padding: 8px 0; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.sidebar-left ul { list-style: none; }
.sidebar-left ul li { padding: 12px 16px; border-bottom: 1px solid #f1f3f6; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.sidebar-left ul li:hover { background: #f9f9f9; color: #e85a2c; }
.sidebar-left ul li::before { content: "▸"; color: #f5b800; }
.contact-box { padding: 12px 16px; }
.contact-box p { font-size: 13px; margin-bottom: 8px; font-weight: 600; }
.contact-link { display: flex; align-items: center; gap: 8px; background: #f1f3f6; padding: 8px 10px; border-radius: 4px; margin-bottom: 6px; font-size: 12px; }

/* Main content */
.main-content { display: flex; flex-direction: column; gap: 12px; }

/* Hero banner */
.hero-banner { position: relative; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #1e6b5c, #2d8870); }
.hero-banner img { width: 100%; height: auto; max-height: 320px; object-fit: cover; }
.hero-overlay { position: absolute; top: 50%; left: 5%; transform: translateY(-50%); color: #fff; max-width: 50%; }
.hero-overlay h1 { font-size: 28px; margin-bottom: 8px; text-shadow: 1px 1px 3px rgba(0,0,0,0.6); }
.hero-overlay p { font-size: 14px; margin-bottom: 12px; text-shadow: 1px 1px 2px rgba(0,0,0,0.6); }
.hero-cta { background: #f5d100; color: #1e6b5c; padding: 10px 24px; border-radius: 4px; font-weight: bold; display: inline-block; }

/* Quick tiles */
.quick-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 600px) { .quick-tiles { grid-template-columns: repeat(2, 1fr); } }
.tile { background: linear-gradient(135deg, #1e6b5c, #2a9080); color: #fff; padding: 14px 10px; border-radius: 6px; text-align: center; font-size: 13px; font-weight: 600; }
.tile.alt { background: linear-gradient(135deg, #e85a2c, #f5821f); }
.tile.alt2 { background: linear-gradient(135deg, #6c2bd9, #9d4edd); }
.tile.alt3 { background: linear-gradient(135deg, #d72d7e, #ff5e9c); }

/* Section header */
.section-bar { background: #e85a2c; color: #fff; padding: 10px 16px; border-radius: 6px 6px 0 0; font-weight: 600; font-size: 15px; }
.section-bar.green { background: #1e6b5c; }
.section-block { background: #fff; border-radius: 6px; padding-bottom: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }

/* Game grid */
.game-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; padding: 10px; }
@media (max-width: 768px) { .game-grid { grid-template-columns: repeat(3, 1fr); } }
.game-card { background: #fafafa; border-radius: 4px; overflow: hidden; text-align: center; border: 1px solid #eee; }
.game-card img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; }
.game-card .game-label { background: #6c2bd9; color: #fff; padding: 4px 2px; font-size: 11px; }
.game-card .game-sub { font-size: 10px; color: #777; padding: 3px 2px; }

/* Provider grid */
.provider-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 10px; }
@media (max-width: 600px) { .provider-row { grid-template-columns: 1fr; } }
.provider-card { background: #f9f9f9; border-radius: 6px; padding: 10px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #e85a2c; }
.provider-card img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.provider-card h3 { font-size: 14px; color: #1e6b5c; margin-bottom: 4px; }
.provider-card p { font-size: 12px; color: #666; }

/* Sidebar right */
.sidebar-right { display: flex; flex-direction: column; gap: 10px; }
.credit-box { background: #1e6b5c; color: #fff; padding: 12px; border-radius: 6px; font-size: 13px; }
.credit-box .credit-title { display: flex; justify-content: space-between; align-items: center; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.credit-box .credit-value { font-size: 18px; padding: 10px 0; }
.tab-row { display: flex; gap: 0; }
.tab-row button { flex: 1; padding: 8px; border: none; cursor: pointer; font-weight: 600; font-size: 13px; }
.tab-row .tab-active { background: #f5d100; color: #1e6b5c; }
.tab-row .tab-inactive { background: #2a9080; color: #fff; }
.right-banner { background: #fff; padding: 10px; border-radius: 6px; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.right-banner img { width: 100%; border-radius: 4px; }
.right-banner h4 { font-size: 13px; color: #1e6b5c; margin: 8px 0 4px; }
.right-banner p { font-size: 11px; color: #666; }

/* Content sections */
.content-section { background: #fff; border-radius: 6px; padding: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.content-section h2 { color: #1e6b5c; font-size: 22px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid #f5d100; }
.content-section h3 { color: #e85a2c; font-size: 17px; margin: 16px 0 8px; }
.content-section p { font-size: 14px; margin-bottom: 12px; color: #444; text-align: justify; }
.content-section ul { margin: 10px 0 14px 24px; }
.content-section ul li { font-size: 14px; margin-bottom: 6px; color: #444; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0; }
@media (max-width: 600px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item { background: linear-gradient(135deg, #1e6b5c, #2a9080); color: #fff; padding: 16px 8px; border-radius: 6px; text-align: center; }
.stat-item strong { display: block; font-size: 22px; color: #f5d100; }
.stat-item span { font-size: 12px; }

/* Feature columns */
.feature-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 16px 0; }
@media (max-width: 768px) { .feature-cols { grid-template-columns: 1fr; } }
.feature-col { background: #f9f9f9; border-radius: 6px; padding: 14px; border-top: 3px solid #e85a2c; }
.feature-col img { width: 100%; height: 140px; object-fit: cover; border-radius: 4px; margin-bottom: 10px; }
.feature-col h4 { color: #1e6b5c; font-size: 15px; margin-bottom: 6px; }
.feature-col p { font-size: 13px; color: #555; }

/* FAQ */
.faq-item { background: #fafafa; border-left: 3px solid #f5d100; padding: 12px 14px; margin-bottom: 10px; border-radius: 0 4px 4px 0; }
.faq-item h4 { color: #1e6b5c; font-size: 15px; margin-bottom: 6px; }
.faq-item p { font-size: 13px; color: #555; margin-bottom: 4px; }
.faq-item ul { margin-left: 18px; font-size: 13px; }

/* Testimonial */
.testimonial { background: #fff7e6; border-left: 4px solid #f5d100; padding: 14px; border-radius: 0 6px 6px 0; margin: 16px 0; font-style: italic; color: #555; }
.testimonial strong { color: #1e6b5c; font-style: normal; }

/* Footer */
.site-footer { background: #1a3a35; color: #cfd8d6; padding: 30px 20px 16px; margin-top: 20px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1280px; margin: 0 auto 20px; }
@media (max-width: 768px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-col h5 { color: #f5d100; font-size: 14px; margin-bottom: 10px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 4px 0; font-size: 13px; }
.footer-col ul li a:hover { color: #f5d100; }
.footer-col p { font-size: 13px; line-height: 1.7; }
.footer-bottom { text-align: center; padding-top: 16px; border-top: 1px solid #2a4f49; font-size: 12px; color: #8aa19d; max-width: 1280px; margin: 0 auto; }
.footer-bottom .badge-18 { display: inline-block; background: #e85a2c; color: #fff; padding: 3px 10px; border-radius: 4px; font-weight: bold; margin: 0 8px; }