/*
Theme Name: SHBET India SEO
Theme URI: https://shbett8.vip/
Description: SHBET - India's Premier Online Casino & Sports Betting Platform. Optimized for Hindi-speaking Indian users with Google India SEO.
Version: 2.0
Author: SHBET
Author URI: https://shbett8.vip
License: All rights reserved
Text Domain: shbet-india
*/


/* ===== 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: 'Noto Sans Devanagari', '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);
}

/* ===== 视觉增强 - 专业博彩网站风格 ===== */

/* 渐变背景增强 */
.hero-banner { 
    position: relative;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,163,198,0.3) 0%, rgba(42,34,91,0.8) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

/* Banner轮播增强 */
.swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.swiper-slide::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    pointer-events: none;
}

/* 游戏分类卡片增强 - 3D效果 */
.game-category-card, .category-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}
.game-category-card::before, .category-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0,163,198,0.1), transparent 30%);
    animation: cardShine 6s linear infinite;
}
.game-category-card:hover, .category-item:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(0,163,198,0.3), 0 0 30px rgba(0,163,198,0.15) !important;
}

@keyframes cardShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 跑马灯公告增强 */
.marquee-wrapper, .announcement-bar {
    background: linear-gradient(90deg, rgba(0,163,198,0.15) 0%, rgba(42,34,91,0.3) 50%, rgba(0,163,198,0.15) 100%) !important;
    border-top: 1px solid rgba(0,163,198,0.3);
    border-bottom: 1px solid rgba(0,163,198,0.3);
    position: relative;
    overflow: hidden;
}
.marquee-wrapper::before, .announcement-bar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 区块标题装饰增强 */
.section-title, .block-title {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title::after, .block-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan-primary, #00d4ff), var(--cyan-secondary, #32b4e3));
    margin: 10px auto 0;
    border-radius: 2px;
}

/* 按钮增强 - 发光效果 */
.btn, .btn-primary, .play-btn, .cta-button, a.button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn::before, .btn-primary::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before, .btn-primary:hover::before, .cta-button:hover::before {
    width: 300px;
    height: 300px;
}
.btn:hover, .btn-primary:hover {
    box-shadow: 0 0 20px rgba(0,163,198,0.5), 0 0 40px rgba(0,163,198,0.2) !important;
}

/* 游戏卡片网格增强 */
.games-grid, .game-list {
    gap: 20px !important;
}
.game-card, .game-item {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.4s ease !important;
    border: 1px solid rgba(0,163,198,0.1);
}
.game-card:hover, .game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(0,163,198,0.2);
    border-color: rgba(0,163,198,0.4);
}

/* 大奖赢家区域 - 金色渐变 */
.winners-section, .jackpot-section {
    background: linear-gradient(135deg, rgba(120,85,10,0.1) 0%, rgba(255,215,0,0.05) 50%, rgba(120,85,10,0.1) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.winners-section::before, .jackpot-section::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700, transparent);
    z-index: -1;
    border-radius: 18px;
    opacity: 0.3;
    animation: goldBorder 4s linear infinite;
}

@keyframes goldBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 新闻卡片增强 */
.news-card, .article-card {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255,255,255,0.05);
}
.news-card:hover, .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    border-color: rgba(0,163,198,0.3);
}
.news-card .article-thumb img, .article-card .article-thumb img {
    transition: transform 0.5s ease;
}
.news-card:hover .article-thumb img, .article-card:hover .article-thumb img {
    transform: scale(1.08);
}

/* 促销卡片增强 */
.promo-card, .promotion-card {
    border-radius: 16px !important;
    overflow: hidden;
    position: relative;
}
.promo-card::after, .promotion-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

/* 浮动按钮增强 - 脉动动画 */
.float-buttons a, .floating-btn, .float-entrance {
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,163,198,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(0,163,198,0.5); }
}

/* 页面过渡动画 */
.container {
    animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header增强 - 毛玻璃效果 */
.site-header, header, #header {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10,14,26,0.85) !important;
    border-bottom: 1px solid rgba(0,163,198,0.2);
}

/* Footer增强 */
.site-footer, footer, #footer {
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%) !important;
    border-top: 1px solid rgba(0,163,198,0.15);
    position: relative;
}
.site-footer::before, footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,163,198,0.5), transparent);
}

/* 侧边栏增强 */
.sidebar .widget, .sidebar-widget {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s;
}
.sidebar .widget:hover, .sidebar-widget:hover {
    border-color: rgba(0,163,198,0.2);
}

/* 面包屑增强 */
.breadcrumb {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breadcrumb a {
    color: var(--cyan-primary, #00d4ff);
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: var(--cyan-secondary, #32b4e3);
    text-decoration: none;
}

/* 文章页面增强 */
.single-post .article-content, .entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}
.single-post .article-content h2, .entry-content h2 {
    position: relative;
    padding-left: 15px;
    margin: 30px 0 15px;
}
.single-post .article-content h2::before, .entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cyan-primary, #00d4ff), var(--cyan-secondary, #32b4e3));
    border-radius: 2px;
}

/* 搜索框增强 */
.search-form input[type="search"], .sidebar input[type="search"] {
    border-radius: 25px;
    padding: 10px 20px;
    border: 1px solid rgba(0,163,198,0.3);
    background: rgba(0,0,0,0.3);
    color: #fff;
    transition: all 0.3s;
}
.search-form input[type="search"]:focus, .sidebar input[type="search"]:focus {
    border-color: var(--cyan-primary, #00d4ff);
    box-shadow: 0 0 15px rgba(0,163,198,0.2);
    outline: none;
}

/* 选中文字颜色 */
::selection {
    background: rgba(0,163,198,0.4);
    color: #fff;
}

/* 分页增强 */
.pagination a, .nav-links a {
    border-radius: 8px !important;
    transition: all 0.3s !important;
}
.pagination a:hover, .nav-links a:hover,
.pagination .current, .nav-links .current {
    background: var(--cyan-primary, #00d4ff) !important;
    color: #0a0e1a !important;
    box-shadow: 0 4px 15px rgba(0,163,198,0.3);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .section-title { font-size: 22px !important; }
    .game-category-card:hover, .category-item:hover {
        transform: translateY(-4px) scale(1.02) !important;
    }
}
