* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, "Helvetica Neue", sans-serif; background: #f4f4f4; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Top Bar */
.top-bar { background: #1a1a1a; color: #ccc; font-size: 12px; padding: 6px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Header */
header { background: #fff; border-bottom: 3px solid #e63946; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; flex-wrap: wrap; }
.logo { font-size: 28px; font-weight: bold; color: #6a1b9a; background: linear-gradient(45deg,#6a1b9a,#e63946); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
nav ul { list-style: none; display: flex; gap: 5px; flex-wrap: wrap; }
nav ul li a { display: block; padding: 10px 16px; color: #333; font-weight: 600; font-size: 14px; text-transform: uppercase; border-radius: 4px; transition: all 0.3s; }
nav ul li a:hover, nav ul li a.active { background: #e63946; color: #fff; }
.auth-buttons { display: flex; gap: 8px; }
.btn-login, .btn-register { padding: 9px 20px; border-radius: 4px; font-weight: bold; font-size: 13px; text-transform: uppercase; transition: all 0.3s; }
.btn-login { background: #fff; color: #6a1b9a; border: 2px solid #6a1b9a; }
.btn-register { background: #e63946; color: #fff; border: 2px solid #e63946; }
.btn-login:hover { background: #6a1b9a; color: #fff; }
.btn-register:hover { background: #c1121f; border-color: #c1121f; }

/* Hero Banner */
.hero { background: linear-gradient(135deg,#e8f5e9 0%,#c8e6c9 100%); padding: 20px 0; }
.hero-banner { max-width: 1000px; margin: 0 auto; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.hero-banner img { width: 100%; height: auto; }

/* Game Icons Row */
.game-icons { padding: 25px 0; background: #fff; }
.game-icons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; max-width: 900px; margin: 0 auto; }
.game-icon-item { text-align: center; transition: transform 0.3s; }
.game-icon-item:hover { transform: translateY(-5px); }
.game-icon-item img { width: 100%; max-width: 150px; margin: 0 auto; border-radius: 50%; border: 3px solid #f5e6d3; }
.game-icon-item p { margin-top: 8px; font-size: 13px; font-weight: 600; color: #6a1b9a; }

/* Main Content */
main { background: #fff; padding: 30px 0; }
.content-section { max-width: 1000px; margin: 0 auto; padding: 0 15px; }
h1 { font-size: 26px; color: #1a1a1a; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #e63946; }
h2 { font-size: 22px; color: #6a1b9a; margin: 25px 0 12px; padding-left: 12px; border-left: 4px solid #e63946; }
h3 { font-size: 18px; color: #333; margin: 18px 0 10px; }
h4 { font-size: 16px; color: #555; margin: 12px 0 8px; }
p { margin-bottom: 12px; font-size: 14px; color: #444; }
ul.content-list { margin: 10px 0 15px 25px; }
ul.content-list li { margin-bottom: 6px; font-size: 14px; }

/* Tags */
.tags { margin: 15px 0; padding: 10px 0; border-top: 1px dashed #ccc; border-bottom: 1px dashed #ccc; font-size: 13px; color: #666; }
.tags strong { color: #e63946; }

/* Table */
.info-table { width: 100%; border-collapse: collapse; margin: 15px 0; font-size: 14px; }
.info-table th, .info-table td { padding: 10px 12px; border: 1px solid #ddd; text-align: left; }
.info-table th { background: #6a1b9a; color: #fff; font-weight: 600; }
.info-table tr:nth-child(even) { background: #faf5ff; }

/* Highlight box */
.highlight-box { background: #fff8e1; border-left: 4px solid #ffa000; padding: 12px 18px; margin: 15px 0; border-radius: 4px; }
.highlight-box p { margin: 0; }

/* Image Gallery */
.image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 25px 0; }
.image-grid-item { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; overflow: hidden; transition: box-shadow 0.3s; }
.image-grid-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.image-grid-item img { width: 100%; height: 180px; object-fit: cover; }
.image-grid-item .caption { padding: 10px 12px; font-size: 13px; color: #555; }
.image-grid-item .caption h4 { color: #6a1b9a; margin-bottom: 5px; font-size: 14px; }

/* Live & wide banners */
.wide-banner { margin: 25px 0; text-align: center; }
.wide-banner img { display: inline-block; max-width: 100%; border-radius: 8px; }

/* FAQ */
.faq-section { background: #f9f9f9; padding: 25px 20px; border-radius: 6px; margin: 25px 0; }
.faq-item { background: #fff; padding: 15px 18px; margin-bottom: 12px; border-radius: 5px; border-left: 4px solid #6a1b9a; }
.faq-item h4 { color: #6a1b9a; font-size: 15px; margin-bottom: 8px; }
.faq-item p { font-size: 14px; margin-bottom: 6px; }
.faq-item ul { margin-left: 22px; font-size: 14px; }

/* User review */
.user-review { background: linear-gradient(135deg,#fff3e0,#ffe0b2); padding: 18px 22px; border-radius: 8px; margin: 20px 0; font-style: italic; border-left: 5px solid #ff6f00; }
.user-review strong { font-style: normal; color: #d84315; }

/* Footer */
footer { background: #1a1a1a; color: #ccc; padding: 35px 0 15px; margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 25px; }
.footer-col h4 { color: #e63946; font-size: 15px; margin-bottom: 15px; text-transform: uppercase; }
.footer-col p, .footer-col li { font-size: 13px; color: #aaa; margin-bottom: 8px; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li a:hover { color: #e63946; }
.footer-logo { font-size: 26px; font-weight: bold; background: linear-gradient(45deg,#6a1b9a,#e63946); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; display: inline-block; }
.footer-bottom { border-top: 1px solid #333; margin-top: 25px; padding-top: 15px; text-align: center; font-size: 12px; color: #777; }
.footer-bottom .age-warning { background: #e63946; color: #fff; padding: 4px 10px; border-radius: 3px; font-weight: bold; display: inline-block; margin-right: 8px; }

/* Responsive */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; }
  nav ul { justify-content: center; }
  nav ul li a { padding: 8px 12px; font-size: 12px; }
  .game-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .image-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 22px; }
  h2 { font-size: 19px; }
  .auth-buttons { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .game-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .image-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav ul li a { padding: 7px 10px; font-size: 11px; }
}