/* ========================================
   NOELWIN - Main Stylesheet
   Auto-generated theme: NOELWIN
   Primary: #43A047 | Accent: #81C784
   Fonts: Be Vietnam Pro + Fredoka One
   ======================================== */

/* ====== CSS Variables ====== */
:root {
  --brown: #1A2E1A;
  --brown-dark: #142214;
  --brown-light: #536253;
  --brown-lighter: #768276;
  --brown-felt: #172817;
  --gold: #43A047;
  --gold-dark: #37833A;
  --gold-light: #6CB56F;
  --gold-pale: #D0E7D1;
  --green: #81C784;
  --green-dark: #659B67;
  --green-light: #98D19A;
  --green-felt: #81C784;
  --green-baize: #87C38A;
  --white: #FFFFFF;
  --off-white: #1A251A;
  --gray-100: #202C20;
  --gray-200: #3A463B;
  --gray-300: #5B675B;
  --gray-400: #808C80;
  --gray-500: #A3AFA3;
  --gray-600: #BDC9BD;
  --gray-700: #CEDBCF;
  --gray-800: #DBE8DC;
  --gray-900: #E4F1E5;
  --font-heading: 'Be Vietnam Pro', serif;
  --font-body: 'Fredoka One', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 15px rgba(67,160,71,0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ====== Keyframes ====== */
@keyframes dealCard {
  0% { transform: translateY(-200px) rotateY(180deg) scale(0.5); opacity: 0; }
  40% { transform: translateY(20px) rotateY(90deg) scale(0.9); opacity: 0.7; }
  70% { transform: translateY(-10px) rotateY(30deg) scale(1.02); opacity: 0.9; }
  100% { transform: translateY(0) rotateY(0deg) scale(1); opacity: 1; }
}

@keyframes tableFelt {
  0% { background-position: 0 0; }
  50% { background-position: 5px 5px; }
  100% { background-position: 0 0; }
}

@keyframes chipToss {
  0% { transform: translateY(100px) rotate(0deg) scale(0); opacity: 0; }
  30% { transform: translateY(-30px) rotate(180deg) scale(1.2); opacity: 1; }
  60% { transform: translateY(5px) rotate(300deg) scale(0.95); }
  80% { transform: translateY(-5px) rotate(350deg) scale(1.02); }
  100% { transform: translateY(0) rotate(360deg) scale(1); opacity: 1; }
}

@keyframes realDeal {
  0% { transform: translateX(300px) translateY(-100px) rotate(25deg); opacity: 0; }
  25% { transform: translateX(100px) translateY(-30px) rotate(10deg); opacity: 0.5; }
  50% { transform: translateX(30px) translateY(10px) rotate(3deg); opacity: 0.8; }
  75% { transform: translateX(5px) translateY(-2px) rotate(1deg); opacity: 0.95; }
  100% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67,160,71,0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(67,160,71,0.2); }
}

@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes card-flip {
  0% { transform: perspective(600px) rotateY(0deg); }
  50% { transform: perspective(600px) rotateY(90deg); }
  100% { transform: perspective(600px) rotateY(0deg); }
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 5px rgba(67,160,71,0.5); }
  50% { text-shadow: 0 0 20px rgba(67,160,71,0.8), 0 0 40px rgba(67,160,71,0.4); }
}

@keyframes notification-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ====== Reset & Base ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-200);
  background: var(--gray-900);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(26,46,26,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(129,199,132,0.08) 0%, transparent 50%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; color: var(--gold); line-height: 1.3; }
ul, ol { list-style: none; }
p { margin-bottom: 12px; }

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

/* ====== Gold Text Utility ====== */
.gold-text { color: var(--gold); }

/* ====== Announcement Modal ====== */
.announcement-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.announcement-modal.active { opacity: 1; visibility: visible; }
.announcement-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(5px);
}
.announcement-content {
  position: relative; z-index: 2;
  background: linear-gradient(145deg, var(--brown-dark), var(--gray-800));
  border: 2px solid var(--gold); border-radius: var(--radius-xl);
  padding: 30px 25px; max-width: 480px; width: 90%;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(67,160,71,0.15);
  animation: dealCard 0.6s ease-out;
}
.announcement-close {
  position: absolute; top: 12px; right: 15px;
  background: none; border: none; color: var(--gray-400);
  font-size: 28px; cursor: pointer; transition: var(--transition);
  line-height: 1;
}
.announcement-close:hover { color: var(--gold); transform: rotate(90deg); }
.announcement-header-icon {
  text-align: center; margin-bottom: 15px;
  font-size: 42px; color: var(--gold);
  animation: pulse-gold 2s infinite;
}
.announcement-title {
  text-align: center; font-size: 20px; margin-bottom: 20px;
  font-family: var(--font-heading);
  animation: glow-pulse 2s infinite;
}
.announcement-list { margin-bottom: 20px; }
.announcement-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; margin-bottom: 8px;
  background: rgba(255,255,255,0.05); border-radius: var(--radius-md);
  border-left: 3px solid var(--gold); transition: var(--transition);
  color: var(--gray-200);
}
.announcement-item:hover {
  background: rgba(67,160,71,0.1);
  transform: translateX(5px); color: var(--gold-light);
}
.announcement-item .fa-chevron-right { margin-left: auto; font-size: 11px; color: var(--gray-400); }
.announcement-badge {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  white-space: nowrap;
}
.announcement-badge.hot { background: #8ECD90; color: #fff; }
.announcement-badge.new { background: var(--green); color: #fff; }
.announcement-badge.info { background: #39883C; color: #fff; }
.announcement-text { font-size: 13px; flex: 1; }
.announcement-footer { text-align: center; }
.announcement-cta {
  display: inline-block; padding: 12px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark); font-weight: 700; font-size: 16px;
  border-radius: 30px; text-transform: uppercase;
  box-shadow: var(--shadow-gold); transition: var(--transition);
  animation: pulse-gold 2s infinite;
}
.announcement-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(67,160,71,0.5);
  color: var(--brown-dark);
}

/* ====== Header ====== */
.site-header {
  background: linear-gradient(180deg, var(--brown-dark) 0%, var(--gray-800) 100%);
  border-bottom: 3px solid var(--gold);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-lg);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.logo img { height: 50px; width: auto; }
.header-time {
  font-family: var(--font-heading);
  color: var(--gold); font-size: 14px;
  background: rgba(0,0,0,0.3); padding: 6px 15px;
  border-radius: 20px; border: 1px solid rgba(67,160,71,0.2);
}
.header-btn-group { display: flex; gap: 8px; }
.btn-login, .btn-register, .btn-demo {
  display: inline-block; padding: 8px 20px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  border-radius: 25px; transition: var(--transition);
  font-family: var(--font-heading); letter-spacing: 0.5px;
}
.btn-login {
  background: transparent; border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-login:hover {
  background: var(--gold); color: var(--brown-dark);
  box-shadow: var(--shadow-gold);
}
.btn-register {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark); border: none;
  box-shadow: var(--shadow-gold);
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67,160,71,0.4);
  color: var(--brown-dark);
}
.btn-demo {
  background: var(--green); color: #fff; border: none;
}
.btn-demo:hover {
  background: var(--green-light); color: #fff;
  transform: translateY(-2px);
}

/* ====== Navigation ====== */
.main-navigation {
  background: linear-gradient(90deg, var(--brown), var(--brown-dark));
  border-top: 1px solid rgba(67,160,71,0.15);
  border-bottom: 1px solid rgba(67,160,71,0.15);
}
.nav-menu {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 12px 16px;
  color: var(--gray-200); font-size: 13px;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; transition: var(--transition);
  font-family: var(--font-heading); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--gold);
  transition: var(--transition); transform: translateX(-50%);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 80%; }
.nav-link i { margin-right: 5px; font-size: 12px; }
.mobile-menu-toggle {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 24px; padding: 10px;
  cursor: pointer;
}

/* ====== Notification Bar ====== */
.notification-bar {
  background: var(--gray-800);
  border-bottom: 1px solid rgba(67,160,71,0.1);
  overflow: hidden; padding: 8px 0;
}
.notification-content {
  display: flex; gap: 50px;
  animation: notification-scroll 30s linear infinite;
  white-space: nowrap;
}
.notification-content span {
  font-size: 13px; color: var(--gold);
  font-weight: 500;
}

/* ====== Hero Banner ====== */
.hero-banner { position: relative; margin-bottom: 40px; }
.hero-swiper { border-radius: 0; overflow: hidden; }
.hero-swiper .swiper-slide { position: relative; height: 450px; }
.hero-swiper .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.slide-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(20,34,20,0.85) 0%,
    rgba(15,26,15,0.6) 50%,
    rgba(129,199,132,0.3) 100%
  );
  display: flex; align-items: center;
}
.slide-title {
  font-size: 42px; color: var(--gold);
  font-family: var(--font-heading);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 12px;
  animation: glow-pulse 3s infinite;
}
.slide-desc {
  font-size: 18px; color: var(--white);
  margin-bottom: 25px; max-width: 600px;
}
.slide-cta {
  display: inline-block; padding: 14px 45px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark); font-weight: 700; font-size: 18px;
  border-radius: 30px; text-transform: uppercase;
  box-shadow: var(--shadow-gold); transition: var(--transition);
  font-family: var(--font-heading);
}
.slide-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(67,160,71,0.5);
  color: var(--brown-dark);
}
.hero-swiper .swiper-pagination-bullet {
  background: var(--gray-400); width: 12px; height: 12px; opacity: 0.6;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold); opacity: 1;
  box-shadow: 0 0 10px rgba(67,160,71,0.5);
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(0,0,0,0.4);
  width: 44px; height: 44px; border-radius: 50%;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 18px; }

/* ====== Section Titles ====== */
.section-title {
  font-size: 26px; color: var(--gold);
  text-align: center; margin-bottom: 35px;
  padding-bottom: 15px; position: relative;
  font-family: var(--font-heading); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.section-title::after {
  content: ''; position: absolute; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-title i { margin-right: 8px; }

/* ====== Game Categories ====== */
.game-categories {
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(26,46,26,0.1), transparent);
}
.category-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.category-card {
  text-align: center; padding: 30px 15px;
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.15);
  border-radius: var(--radius-lg); transition: var(--transition);
  color: var(--gray-200);
}
.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  color: var(--gold);
}
.cat-icon {
  font-size: 40px; color: var(--gold);
  margin-bottom: 15px;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px;
  background: rgba(67,160,71,0.08);
  border-radius: 50%;
  border: 2px solid rgba(67,160,71,0.2);
  transition: var(--transition);
}
.category-card:hover .cat-icon {
  background: rgba(67,160,71,0.15);
  border-color: var(--gold);
  animation: chipToss 0.8s ease;
}
.category-card h3 {
  font-size: 15px; margin-bottom: 5px;
  font-family: var(--font-heading);
}
.category-card p { font-size: 12px; color: var(--gray-400); margin: 0; }

/* ====== Live Tables Section ====== */
.live-tables-section {
  padding: 50px 0;
  background:
    linear-gradient(180deg, transparent, rgba(129,199,132,0.05)),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(129,199,132,0.02) 10px,
      rgba(129,199,132,0.02) 20px
    );
  animation: tableFelt 20s ease infinite;
}
.live-tables-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.live-table-card {
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.15);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
  animation: realDeal 0.8s ease-out both;
}
.live-table-card:nth-child(2) { animation-delay: 0.15s; }
.live-table-card:nth-child(3) { animation-delay: 0.3s; }
.live-table-card:nth-child(4) { animation-delay: 0.45s; }
.live-table-card:nth-child(5) { animation-delay: 0.6s; }
.live-table-card:nth-child(6) { animation-delay: 0.75s; }
.live-table-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.table-thumb { position: relative; overflow: hidden; }
.table-thumb img {
  width: 100%; height: 180px; object-fit: cover;
  transition: var(--transition-slow);
}
.live-table-card:hover .table-thumb img { transform: scale(1.08); }
.table-live-badge {
  position: absolute; top: 10px; right: 10px;
  background: #8ECD90; color: #fff;
  padding: 4px 10px; border-radius: 15px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; gap: 5px;
}
.table-live-badge .fa-circle {
  font-size: 7px; animation: pulse-gold 1s infinite;
  color: #fff;
}
.table-info {
  padding: 15px; display: flex;
  align-items: center; justify-content: space-between;
}
.table-info h4 {
  font-size: 15px; color: var(--gold);
  font-family: var(--font-heading); margin: 0;
}
.table-players {
  font-size: 12px; color: var(--gray-400);
  display: flex; align-items: center; gap: 5px;
}
.btn-play-now {
  display: block; text-align: center; padding: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 700; font-size: 13px;
  text-transform: uppercase; transition: var(--transition);
  font-family: var(--font-heading);
}
.btn-play-now:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff;
}

/* ====== Promotions Section ====== */
.promotions-section {
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(26,46,26,0.08), rgba(26,46,26,0.15));
}
.promo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.promo-card {
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.2);
  border-radius: var(--radius-lg); padding: 30px 25px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.promo-card::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(67,160,71,0.03) 50%, transparent 60%);
  animation: shimmer 4s infinite;
}
.promo-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.promo-badge {
  display: inline-block; padding: 4px 14px;
  border-radius: 15px; font-size: 11px;
  font-weight: 700; text-transform: uppercase;
  margin-bottom: 15px;
}
.promo-badge.hot { background: #8ECD90; color: #fff; }
.promo-badge.new { background: var(--green); color: #fff; }
.promo-badge.vip { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--brown-dark); }
.promo-card h3 {
  font-size: 18px; margin-bottom: 12px;
  font-family: var(--font-heading); color: var(--gold);
}
.promo-card p { font-size: 14px; color: var(--gray-300); margin-bottom: 20px; }
.btn-promo {
  display: inline-block; padding: 10px 25px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark); font-weight: 700;
  border-radius: 25px; font-size: 13px;
  text-transform: uppercase; transition: var(--transition);
  font-family: var(--font-heading);
}
.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--brown-dark);
}

/* ====== Latest News Section ====== */
.latest-news-section { padding: 50px 0; }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.news-card {
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
  animation: dealCard 0.6s ease-out both;
}
.news-card:nth-child(2) { animation-delay: 0.1s; }
.news-card:nth-child(3) { animation-delay: 0.2s; }
.news-card:nth-child(4) { animation-delay: 0.3s; }
.news-card:nth-child(5) { animation-delay: 0.4s; }
.news-card:nth-child(6) { animation-delay: 0.5s; }
.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.news-thumb img {
  width: 100%; height: 180px; object-fit: cover;
  transition: var(--transition-slow);
}
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-info { padding: 18px; }
.news-info h3 {
  font-size: 16px; margin-bottom: 8px;
  font-family: var(--font-heading);
  line-height: 1.4;
}
.news-info h3 a { color: var(--gold); }
.news-info h3 a:hover { color: var(--gold-light); }
.news-date {
  font-size: 12px; color: var(--gray-400);
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 8px;
}
.news-info p {
  font-size: 13px; color: var(--gray-300);
  margin: 0; line-height: 1.6;
}
.section-more { text-align: center; margin-top: 30px; }
.btn-view-more {
  display: inline-block; padding: 12px 35px;
  background: transparent; border: 2px solid var(--gold);
  color: var(--gold); font-weight: 700; font-size: 14px;
  border-radius: 30px; text-transform: uppercase;
  transition: var(--transition); font-family: var(--font-heading);
}
.btn-view-more:hover {
  background: var(--gold); color: var(--brown-dark);
  box-shadow: var(--shadow-gold);
}

/* ====== Why Choose Section ====== */
.why-choose-section {
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(129,199,132,0.05), rgba(26,46,26,0.1));
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.feature-card {
  text-align: center; padding: 35px 20px;
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.1);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.feature-card i {
  font-size: 38px; color: var(--gold);
  margin-bottom: 18px; display: block;
}
.feature-card h4 {
  font-size: 16px; margin-bottom: 10px;
  color: var(--gold); font-family: var(--font-heading);
}
.feature-card p {
  font-size: 13px; color: var(--gray-300);
  margin: 0; line-height: 1.6;
}

/* ====== Content Area & Blog Layout ====== */
.content-area {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  padding: 30px 0;
}
.main-content { min-width: 0; }

/* ====== Breadcrumb ====== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 15px 0; font-size: 13px;
  color: var(--gray-400);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gray-400); }

/* ====== Article Grid ====== */
.article-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 25px; margin-bottom: 30px;
}
.article-card {
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.article-card-thumb img {
  width: 100%; height: 200px; object-fit: cover;
  transition: var(--transition-slow);
}
.article-card:hover .article-card-thumb img { transform: scale(1.05); }
.article-card-title {
  padding: 15px 15px 5px;
  font-size: 16px; line-height: 1.4;
  font-family: var(--font-heading);
}
.article-card-title a { color: var(--gold); }
.article-card-title a:hover { color: var(--gold-light); }
.article-card-meta {
  padding: 0 15px; font-size: 12px;
  color: var(--gray-400);
  display: flex; gap: 12px;
}
.article-card-excerpt {
  padding: 8px 15px; font-size: 13px;
  color: var(--gray-300); line-height: 1.6;
}
.article-card-more {
  display: inline-block; margin: 5px 15px 15px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 12px; font-weight: 700;
  border-radius: 20px; text-transform: uppercase;
  transition: var(--transition);
}
.article-card-more:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff; transform: translateX(3px);
}

/* ====== Pagination ====== */
.pagination {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 30px;
}
.pagination .nav-links {
  display: flex; gap: 5px;
}
.pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--gray-800); border: 1px solid rgba(67,160,71,0.15);
  border-radius: var(--radius-md); color: var(--gray-300);
  font-size: 14px; transition: var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--gold); color: var(--brown-dark);
  border-color: var(--gold);
}

/* ====== No Posts ====== */
.no-posts {
  grid-column: 1 / -1; text-align: center;
  padding: 60px 20px;
  background: var(--gray-800); border-radius: var(--radius-lg);
  border: 1px solid rgba(67,160,71,0.1);
}
.no-posts p { color: var(--gray-400); font-size: 16px; margin-top: 10px; }

/* ====== Single Article ====== */
.single-article-wrap { max-width: 100%; }
.single-article {
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.15);
  border-radius: var(--radius-lg); padding: 35px;
  margin-bottom: 30px;
}
.single-title {
  font-size: 28px; margin-bottom: 15px;
  font-family: var(--font-heading);
  line-height: 1.3;
}
.single-meta {
  display: flex; gap: 20px; font-size: 13px;
  color: var(--gray-400); margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(67,160,71,0.1);
}
.single-meta a { color: var(--gold); }
.single-meta i { margin-right: 5px; color: var(--gold); }
.single-featured {
  margin-bottom: 25px; border-radius: var(--radius-md);
  overflow: hidden;
}
.single-featured img { width: 100%; height: auto; }
.single-content { font-size: 15px; line-height: 1.8; color: var(--gray-200); }
.single-content h2, .single-content h3, .single-content h4 {
  margin: 25px 0 12px; color: var(--gold);
}
.single-content p { margin-bottom: 15px; }
.single-content a { color: var(--gold); text-decoration: underline; }
.single-content ul, .single-content ol {
  margin: 15px 0; padding-left: 25px;
}
.single-content li { margin-bottom: 8px; list-style: disc; }
.single-content blockquote {
  background: rgba(67,160,71,0.05);
  border-left: 4px solid var(--gold);
  padding: 15px 20px; margin: 20px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic; color: var(--gray-300);
}
.single-content img { border-radius: var(--radius-md); margin: 15px 0; }
.single-content table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
}
.single-content th, .single-content td {
  padding: 10px; border: 1px solid rgba(67,160,71,0.15);
  text-align: left;
}
.single-content th { background: rgba(67,160,71,0.1); color: var(--gold); }
.single-tags {
  margin-top: 25px; padding-top: 15px;
  border-top: 1px solid rgba(67,160,71,0.1);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.single-tags a {
  padding: 5px 12px; background: rgba(67,160,71,0.1);
  border-radius: 15px; font-size: 12px; color: var(--gold);
  transition: var(--transition);
}
.single-tags a:hover { background: var(--gold); color: var(--brown-dark); }
.tag-label { font-size: 13px; color: var(--gray-400); font-weight: 600; }
.single-share {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding-top: 15px;
  border-top: 1px solid rgba(67,160,71,0.1);
}
.single-share span { font-size: 13px; color: var(--gray-400); }
.share-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(67,160,71,0.1);
  border-radius: 50%; color: var(--gold);
  transition: var(--transition);
}
.share-btn:hover {
  background: var(--gold); color: var(--brown-dark);
}

/* ====== Single Nav Links ====== */
.single-nav-links {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 30px;
}
.nav-prev, .nav-next {
  padding: 15px 20px;
  background: var(--gray-800);
  border: 1px solid rgba(67,160,71,0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.nav-prev:hover, .nav-next:hover {
  border-color: var(--gold);
}
.nav-next { text-align: right; }
.nav-prev a, .nav-next a {
  color: var(--gold); font-size: 14px;
}

/* ====== Related Posts ====== */
.related-posts-section { margin-bottom: 30px; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--gray-800);
  border: 1px solid rgba(67,160,71,0.1);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.related-thumb img { width: 100%; height: 120px; object-fit: cover; }
.related-card h4 {
  padding: 10px 12px 5px; font-size: 14px;
  font-family: var(--font-heading);
}
.related-card h4 a { color: var(--gold); }
.related-date {
  display: block; padding: 0 12px 10px;
  font-size: 11px; color: var(--gray-400);
}

/* ====== Comments ====== */
.comments-area {
  background: var(--gray-800);
  border: 1px solid rgba(67,160,71,0.1);
  border-radius: var(--radius-lg); padding: 25px;
}
.comments-title {
  font-size: 20px; margin-bottom: 20px;
  color: var(--gold); font-family: var(--font-heading);
}
.comment-list { margin-bottom: 25px; }
.comment {
  padding: 15px; margin-bottom: 15px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.comment-author { font-weight: 600; color: var(--gold); font-size: 14px; }
.comment-date { font-size: 12px; color: var(--gray-400); margin-left: 10px; }
.comment-content { font-size: 14px; color: var(--gray-300); margin-top: 8px; }
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%; padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(67,160,71,0.15);
  border-radius: var(--radius-md);
  color: var(--gray-200); font-size: 14px;
  margin-bottom: 12px; font-family: var(--font-body);
  transition: var(--transition);
}
.comment-form textarea:focus,
.comment-form input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(67,160,71,0.1);
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form .submit {
  padding: 12px 35px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark); font-weight: 700;
  border: none; border-radius: 25px; cursor: pointer;
  font-size: 14px; text-transform: uppercase;
  transition: var(--transition); font-family: var(--font-heading);
}
.comment-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.comment-form label {
  display: block; font-size: 13px;
  color: var(--gray-400); margin-bottom: 5px;
}

/* ====== Sidebar ====== */
.sidebar { padding-top: 30px; }
.sidebar-widget {
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.1);
  border-radius: var(--radius-lg); padding: 20px;
  margin-bottom: 25px;
}
.widget-title {
  font-size: 16px; margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold); font-family: var(--font-heading);
}
.widget-title i { margin-right: 6px; }
.search-box {
  display: flex; border-radius: var(--radius-md); overflow: hidden;
}
.search-box input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(67,160,71,0.15);
  border-right: none; color: var(--gray-200);
  font-size: 14px; border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.search-box input:focus {
  outline: none; border-color: var(--gold);
}
.search-box button {
  padding: 10px 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; color: var(--brown-dark);
  cursor: pointer; transition: var(--transition);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.search-box button:hover { background: var(--gold-light); }

/* Sidebar Category List */
.sidebar-cat-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(67,160,71,0.05);
}
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a {
  color: var(--gray-200); font-size: 14px;
  display: flex; justify-content: space-between;
  transition: var(--transition);
}
.sidebar-cat-list a:hover { color: var(--gold); padding-left: 5px; }
.sidebar-cat-list .count {
  background: rgba(67,160,71,0.1); padding: 1px 8px;
  border-radius: 10px; font-size: 11px; color: var(--gold);
}

/* Sidebar Recent Posts */
.sidebar-recent-list li {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid rgba(67,160,71,0.05);
}
.sidebar-recent-list li:last-child { border-bottom: none; }
.recent-thumb {
  width: 70px; height: 55px; flex-shrink: 0;
  border-radius: var(--radius-sm); overflow: hidden;
}
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-info { flex: 1; }
.recent-title {
  display: block; font-size: 13px;
  color: var(--gray-200); line-height: 1.4;
  margin-bottom: 4px;
}
.recent-title:hover { color: var(--gold); }
.recent-date { font-size: 11px; color: var(--gray-400); }

/* Sidebar CTA */
.cta-box {
  text-align: center; padding: 15px 0;
}
.cta-box i {
  font-size: 40px; color: var(--gold);
  margin-bottom: 12px;
}
.cta-box h4 {
  font-size: 18px; color: var(--gold);
  margin-bottom: 8px; font-family: var(--font-heading);
}
.cta-box p {
  font-size: 13px; color: var(--gray-300);
  margin-bottom: 15px;
}

/* Sidebar Tags */
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tags a {
  display: inline-block; padding: 5px 12px;
  background: rgba(67,160,71,0.08);
  border: 1px solid rgba(67,160,71,0.15);
  border-radius: 15px; font-size: 12px;
  color: var(--gray-300); transition: var(--transition);
}
.sidebar-tags a:hover {
  background: var(--gold); color: var(--brown-dark);
  border-color: var(--gold);
}

/* ====== Archive / Category Page ====== */
.archive-title {
  font-size: 22px; margin-bottom: 10px;
  color: var(--gold); font-family: var(--font-heading);
}
.archive-desc {
  font-size: 14px; color: var(--gray-400);
  margin-bottom: 25px;
}
.search-result-title {
  font-size: 22px; margin-bottom: 20px;
  color: var(--gold); font-family: var(--font-heading);
}

/* ====== 404 Error Page ====== */
.error-page {
  text-align: center; padding: 80px 20px;
  background: linear-gradient(145deg, var(--gray-800), var(--brown-dark));
  border: 1px solid rgba(67,160,71,0.15);
  border-radius: var(--radius-lg); margin: 40px auto;
  max-width: 700px;
}
.error-icon {
  font-size: 80px; color: var(--gold);
  margin-bottom: 20px;
  animation: float-up 3s ease infinite;
}
.error-code {
  font-size: 100px; color: var(--gold);
  font-family: var(--font-heading); font-weight: 700;
  text-shadow: 0 0 30px rgba(67,160,71,0.3);
  line-height: 1;
}
.error-title {
  font-size: 24px; color: var(--gold);
  margin: 10px 0 20px;
  font-family: var(--font-heading);
}
.error-desc {
  font-size: 15px; color: var(--gray-300);
  max-width: 500px; margin: 0 auto 30px;
}
.error-actions {
  display: flex; justify-content: center; gap: 15px;
  margin-bottom: 30px;
}
.error-search { max-width: 400px; margin: 0 auto; }
.error-search .search-box { border-radius: 30px; }
.error-search .search-box input { border-radius: 30px 0 0 30px; }
.error-search .search-box button { border-radius: 0 30px 30px 0; }

/* ====== Footer ====== */
.site-footer {
  background: linear-gradient(180deg, var(--brown-dark), var(--gray-900));
  border-top: 3px solid var(--gold); padding: 50px 0 30px;
  margin-top: 50px;
}
.footer-columns-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px; margin-bottom: 35px;
}
.footer-brand-logo img {
  height: 45px; margin-bottom: 15px;
}
.footer-brand-text {
  font-size: 13px; color: var(--gray-400);
  line-height: 1.7; margin-bottom: 15px;
}
.footer-18plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 45px; height: 45px;
  background: #8ECD90; color: #fff;
  border-radius: 50%; font-weight: 900;
  font-size: 16px; margin-bottom: 15px;
  border: 2px solid #fff;
}
.footer-social-links {
  display: flex; gap: 10px;
}
.footer-social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(67,160,71,0.1);
  border: 1px solid rgba(67,160,71,0.2);
  border-radius: 50%; color: var(--gold);
  transition: var(--transition);
}
.footer-social-links a:hover {
  background: var(--gold); color: var(--brown-dark);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 16px; color: var(--gold);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-heading);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: var(--gray-400); font-size: 13px;
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--gold); padding-left: 5px;
}
.footer-license-bar {
  text-align: center; padding: 25px 0;
  border-top: 1px solid rgba(67,160,71,0.1);
  border-bottom: 1px solid rgba(67,160,71,0.1);
  margin-bottom: 20px;
}
.footer-license-bar h4 {
  font-size: 16px; margin-bottom: 15px;
  color: var(--gold); font-family: var(--font-heading);
}
.license-icons {
  display: flex; justify-content: center;
  gap: 30px; flex-wrap: wrap;
}
.license-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: var(--gray-400); font-size: 12px;
}
.license-item i {
  font-size: 28px; color: var(--gold);
}
.footer-bottom {
  text-align: center; padding-top: 20px;
}
.footer-copyright {
  font-size: 13px; color: var(--gray-500);
}

/* ====== Scroll to Top ====== */
.scroll-top-btn {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark); border: none;
  border-radius: 50%; font-size: 18px;
  cursor: pointer; z-index: 999;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(67,160,71,0.5);
}

/* ====== Loading Overlay ====== */
.loading-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.5s ease;
}
.loading-overlay.fade-out { opacity: 0; pointer-events: none; }
.loading-cards {
  display: flex; gap: 10px;
}
.loading-card {
  width: 40px; height: 56px;
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  border-radius: 5px;
  animation: dealCard 1.2s ease infinite;
}
.loading-card:nth-child(2) { animation-delay: 0.2s; }
.loading-card:nth-child(3) { animation-delay: 0.4s; }
.loading-card:nth-child(4) { animation-delay: 0.6s; }

/* ====== Utility Classes ====== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.pt-30 { padding-top: 30px; }
.pb-30 { padding-bottom: 30px; }

/* ====== Selection ====== */
::selection {
  background: var(--gold);
  color: var(--brown-dark);
}

/* ====== Scrollbar ====== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-900); }
::-webkit-scrollbar-thumb {
  background: var(--brown);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ====== Form Elements ====== */
input, textarea, select {
  font-family: var(--font-body);
}
button:focus { outline: none; }

/* ====== Card Decoration ====== */
.card-suits {
  display: flex; justify-content: center; gap: 15px;
  margin: 20px 0; font-size: 24px;
}
.card-suits .heart, .card-suits .diamond { color: #8ECD90; }
.card-suits .spade, .card-suits .club { color: var(--gray-200); }

/* ====== Table Felt Background Effect ====== */
.felt-bg {
  background:
    linear-gradient(135deg, var(--green-dark), var(--green)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
  animation: tableFelt 15s ease infinite;
}

/* ====== Chip Animation Decoration ====== */
.chip-decoration {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; color: var(--brown-dark);
  font-weight: 900; font-size: 16px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2), var(--shadow-gold);
  border: 3px dashed var(--brown-dark);
}

/* ====== Dealer Badge ====== */
.dealer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 15px;
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
  border: 1px solid var(--gold);
  border-radius: 20px; font-size: 12px;
  color: var(--gold); font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.dealer-badge i { font-size: 10px; }

/* ====== VIP Section ====== */
.vip-levels {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.vip-level {
  text-align: center; padding: 20px 10px;
  background: var(--gray-800);
  border: 1px solid rgba(67,160,71,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.vip-level:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.vip-level.bronze { border-top: 3px solid #2E6730; }
.vip-level.silver { border-top: 3px solid #C0C0C0; }
.vip-level.gold { border-top: 3px solid var(--gold); }
.vip-level.platinum { border-top: 3px solid #303B30; }
.vip-level.diamond { border-top: 3px solid #C0E3C2; }

/* ====== Entry Content Styles ====== */
.entry-content pre {
  background: rgba(0,0,0,0.3);
  padding: 15px; border-radius: var(--radius-md);
  overflow-x: auto; margin: 15px 0;
  border: 1px solid rgba(67,160,71,0.1);
}
.entry-content code {
  background: rgba(67,160,71,0.1);
  padding: 2px 6px; border-radius: 3px;
  font-size: 13px; color: var(--gold);
}
.entry-content hr {
  border: none;
  border-top: 1px solid rgba(67,160,71,0.15);
  margin: 25px 0;
}

/* ====== Accessibility ====== */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}
.skip-link {
  position: absolute; top: -100px;
  left: 0; padding: 10px 20px;
  background: var(--gold); color: var(--brown-dark);
  z-index: 100000; font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ====== Print Styles ====== */
@media print {
  .site-header, .site-footer, .sidebar, .scroll-top-btn,
  .announcement-modal, .notification-bar { display: none !important; }
  body { background: #fff; color: #000; }
  .container { max-width: 100%; }
}
