/*
Theme Name: SHBET
Theme URI: https://shbett8.vip
Description: SHBET Casino Theme - Professional online gaming platform theme for WordPress
Version: 1.0
Author: SHBET
Author URI: https://shbett8.vip
License: All rights reserved
Text Domain: shbet
*/

/* ===== CSS Variables ===== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-tertiary: #1a1f36;
  --gold-primary: #ffd700;
  --gold-secondary: #f5a623;
  --cyan-primary: #00d4ff;
  --cyan-secondary: #00b4d8;
  --success: #10b981;
  --danger: #ef4444;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #1e293b;
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #f5a623 100%);
  --gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #00b4d8 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SF Pro Display', 'Roboto', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--cyan-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ===== Container ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-login {
  background: transparent;
  border: 2px solid var(--cyan-primary);
  color: var(--cyan-primary);
}

.btn-login:hover {
  background: var(--cyan-primary);
  color: var(--bg-primary);
}

.btn-register {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-play {
  background: var(--gradient-cyan);
  color: var(--bg-primary);
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.btn-read {
  background: var(--gradient-cyan);
  color: var(--bg-primary);
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-download {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 14px 36px;
  font-size: 1.1rem;
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-secondary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-top {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* ===== Navigation ===== */
.nav {
  background: var(--bg-tertiary);
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-list > li > a:hover {
  background: var(--bg-primary);
  color: var(--gold-primary);
}

.nav-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Dropdown Menu */
.nav-list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-list li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list li ul li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.nav-list li ul li a:hover {
  background: var(--bg-tertiary);
  color: var(--gold-primary);
  padding-left: 25px;
}

/* ===== Banner Section ===== */
.banner-section {
  margin-top: 120px;
  padding: 0;
}

.banner-swiper {
  width: 100%;
  height: 500px;
}

.banner-swiper .swiper-slide {
  height: 500px;
}

.banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.banner-swiper .swiper-pagination-bullet-active {
  background: var(--gold-primary);
  width: 40px;
  border-radius: 6px;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  color: var(--gold-primary);
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.banner-swiper .swiper-button-next:after,
.banner-swiper .swiper-button-prev:after {
  font-size: 20px;
}

/* ===== Game Categories ===== */
.game-categories {
  padding: 60px 0;
  background: var(--gradient-dark);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.category-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.category-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.category-card h3 {
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== Jackpot Section ===== */
.jackpot-section {
  padding: 60px 0;
  background: var(--bg-tertiary);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.section-header h2 {
  color: var(--gold-primary);
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header h2 i {
  color: var(--cyan-primary);
}

.view-all {
  color: var(--cyan-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-all:hover {
  color: var(--gold-primary);
}

.winner-list {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}

.winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
}

.winner-item:last-child {
  border-bottom: none;
}

.winner-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.winner-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-primary);
}

.winner-details h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 5px;
}

.winner-details span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.winner-amount {
  color: var(--success);
  font-size: 1.25rem;
  font-weight: 700;
}

/* ===== Hot Games ===== */
.hot-games {
  padding: 60px 0;
  background: var(--bg-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.game-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: scale(1.05);
  border-color: var(--cyan-primary);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.game-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-thumb img {
  transform: scale(1.1);
}

.game-info {
  padding: 20px;
  text-align: center;
}

.game-info h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* ===== Latest News ===== */
.latest-news {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.news-card {
  background: var(--bg-tertiary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.news-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-primary);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-info {
  padding: 20px;
}

.news-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.news-info h3 a {
  color: var(--text-primary);
}

.news-info h3 a:hover {
  color: var(--gold-primary);
}

.news-date {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.news-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Promotions Section ===== */
.promotions-section {
  padding: 60px 0;
  background: var(--bg-primary);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.promo-card {
  background: var(--gradient-dark);
  border-radius: 12px;
  padding: 30px;
  border: 2px solid var(--gold-primary);
  text-align: center;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.promo-card h3 {
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.promo-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ===== Page Wrapper ===== */
.page-wrapper {
  margin-top: 120px;
  padding: 40px 0;
  min-height: 60vh;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 15px 20px;
  background: var(--bg-secondary);
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--cyan-primary);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ===== Content Layout ===== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

.main-content {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 30px;
}

.page-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
  color: var(--gold-primary);
  font-size: 2.5rem;
}

.category-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 10px;
}

/* ===== Article Cards ===== */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.article-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  background: var(--bg-tertiary);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.article-card:hover {
  border-color: var(--cyan-primary);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.article-thumb {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-primary);
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-info h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.article-info h2 a {
  color: var(--text-primary);
}

.article-info h2 a:hover {
  color: var(--gold-primary);
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-meta i {
  color: var(--cyan-primary);
}

.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== Single Article ===== */
.single-article {
  padding: 20px;
}

.article-title {
  color: var(--gold-primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-featured-image {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--text-primary);
  margin: 30px 0 15px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 10px;
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

.article-content blockquote {
  border-left: 4px solid var(--gold-primary);
  padding: 20px 30px;
  margin: 30px 0;
  background: var(--bg-tertiary);
  border-radius: 8px;
  font-style: italic;
}

.article-content code {
  background: var(--bg-tertiary);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: var(--cyan-primary);
}

.article-content pre {
  background: var(--bg-tertiary);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.article-content th,
.article-content td {
  padding: 12px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.article-content th {
  background: var(--bg-tertiary);
  color: var(--gold-primary);
  font-weight: 600;
}

.article-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.tag-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-right: 10px;
}

.article-tags a {
  display: inline-block;
  background: var(--bg-tertiary);
  color: var(--cyan-primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  margin: 5px 5px 5px 0;
}

.article-tags a:hover {
  background: var(--cyan-primary);
  color: var(--bg-primary);
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-tertiary);
  border-radius: 8px;
}

.share-buttons span {
  color: var(--text-primary);
  font-weight: 600;
}

.share-buttons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.share-facebook:hover { background: #1877f2; }
.share-twitter:hover { background: #1da1f2; }
.share-telegram:hover { background: #0088cc; }
.share-whatsapp:hover { background: #25d366; }

.article-cta {
  margin-top: 40px;
  padding: 40px;
  background: var(--gradient-dark);
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  text-align: center;
}

.article-cta h3 {
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* ===== Related Posts ===== */
.related-posts {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.related-posts h3 {
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--bg-tertiary);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--cyan-primary);
  transform: translateY(-5px);
}

.related-thumb {
  width: 100%;
  height: 150px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
  background: var(--bg-primary);
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.related-card h4 a {
  color: var(--text-primary);
}

.related-card h4 a:hover {
  color: var(--gold-primary);
}

.related-date {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== Sidebar ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.widget {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border-color);
}

.widget-title {
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title i {
  color: var(--cyan-primary);
}

.widget-hot .hot-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.widget-hot .hot-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hot-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.hot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-info h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.hot-info h4 a {
  color: var(--text-primary);
}

.hot-info h4 a:hover {
  color: var(--gold-primary);
}

.hot-date {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.widget-categories ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.widget-categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget-categories ul li a {
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

.widget-categories ul li a:hover {
  color: var(--gold-primary);
}

.widget-cta {
  background: var(--gradient-dark);
  border: 2px solid var(--gold-primary);
  text-align: center;
}

.widget-cta h3 {
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.widget-cta p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ===== Pagination ===== */
.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 10px 18px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 20px;
  margin-top: 60px;
  border-top: 3px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  transform: translateY(-5px);
}

.footer-badges {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-badges img {
  height: 50px;
  width: auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.float-btn img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* ===== Forms ===== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--cyan-primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .content-layout {
    grid-template-columns: 1fr 300px;
  }
  
  .nav-list > li > a {
    padding: 15px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  
  .article-card {
    grid-template-columns: 200px 1fr;
  }
  
  .banner-swiper {
    height: 400px;
  }
  
  .banner-swiper .swiper-slide {
    height: 400px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

@media (max-width: 768px) {
  .header-top .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .nav-list > li > a {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
  
  .banner-swiper {
    height: 300px;
  }
  
  .banner-swiper .swiper-slide {
    height: 300px;
  }
  
  .article-card {
    grid-template-columns: 1fr;
  }
  
  .article-thumb {
    height: 200px;
  }
  
  .category-grid,
  .games-grid,
  .news-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .floating-buttons {
    right: 10px;
    bottom: 10px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
  }
  
  .float-btn img {
    width: 28px;
    height: 28px;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .article-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .header-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .header-actions .btn {
    width: 100%;
  }
  
  .banner-swiper {
    height: 250px;
  }
  
  .banner-swiper .swiper-slide {
    height: 250px;
  }
  
  .banner-swiper .swiper-button-next,
  .banner-swiper .swiper-button-prev {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* ===== Utilities ===== */
.text-gold { color: var(--gold-primary); }
.text-cyan { color: var(--cyan-primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}
