/* ============================================
   HIGHLIMIT - Main Stylesheet (moban-171)
   DeepRed(#4A0000) + Gold(#FFD700) + Black(#0D0D0D)
   Fonts: Cormorant Garamond + Raleway
   ============================================ */

/* === KEYFRAMES === */
@keyframes highStake {
  0% { transform: scale(1) rotate(0deg); opacity: 1; }
  25% { transform: scale(1.05) rotate(1deg); opacity: 0.9; }
  50% { transform: scale(1.1) rotate(0deg); opacity: 1; }
  75% { transform: scale(1.05) rotate(-1deg); opacity: 0.9; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes tensionPulse {
  0% { box-shadow: 0 0 0 0 rgba(74,0,0,0.7); }
  50% { box-shadow: 0 0 0 15px rgba(74,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,0,0,0); }
}

@keyframes limitBreak {
  0% { transform: translateY(0) scaleX(1); opacity: 1; }
  30% { transform: translateY(-10px) scaleX(1.05); opacity: 0.8; }
  60% { transform: translateY(-20px) scaleX(1.1); opacity: 1; }
  100% { transform: translateY(0) scaleX(1); opacity: 1; }
}

@keyframes chipGlow {
  0% { box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, inset 0 0 5px rgba(255,215,0,0.3); }
  50% { box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700, inset 0 0 15px rgba(255,215,0,0.5); }
  100% { box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, inset 0 0 5px rgba(255,215,0,0.3); }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #0D0D0D;
  color: #E8E8E8;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top center, rgba(74,0,0,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(74,0,0,0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #FFD700;
}

a {
  color: #FFD700;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FFF;
  text-shadow: 0 0 8px rgba(255,215,0,0.5);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* === GOLD TEXT === */
.gold-text {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.announcement-modal.active {
  display: flex;
}

.announcement-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
}

.announcement-content {
  position: relative;
  background: linear-gradient(135deg, #1a0000 0%, #0D0D0D 50%, #1a0000 100%);
  border: 2px solid #FFD700;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 520px;
  width: 90%;
  z-index: 10001;
  animation: highStake 0.6s ease;
  box-shadow: 0 0 40px rgba(255,215,0,0.2), 0 0 80px rgba(74,0,0,0.3);
}

.announcement-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #FFD700;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s;
}

.announcement-close:hover {
  transform: rotate(90deg) scale(1.2);
}

.announcement-header-icon {
  text-align: center;
  margin-bottom: 15px;
}

.announcement-header-icon i {
  font-size: 48px;
  color: #FFD700;
  animation: chipGlow 2s ease-in-out infinite;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  border: 2px solid #FFD700;
}

.announcement-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(74,0,0,0.3);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px;
  transition: all 0.3s;
}

.announcement-item:hover {
  background: rgba(74,0,0,0.5);
  border-color: #FFD700;
  transform: translateX(5px);
}

.announcement-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  white-space: nowrap;
}

.announcement-badge.hot {
  background: linear-gradient(135deg, #4A0000, #8B0000);
  color: #FFD700;
}

.announcement-badge.new {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
}

.announcement-badge.info {
  background: rgba(255,215,0,0.2);
  color: #FFD700;
  border: 1px solid #FFD700;
}

.announcement-text {
  flex: 1;
  font-size: 13px;
  color: #E8E8E8;
  line-height: 1.4;
}

.announcement-item i.fa-chevron-right {
  color: #FFD700;
  font-size: 12px;
}

.announcement-footer {
  text-align: center;
}

.announcement-cta {
  display: inline-block;
  padding: 12px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  border-radius: 6px;
  letter-spacing: 2px;
  transition: all 0.3s;
  animation: tensionPulse 2s infinite;
}

.announcement-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
  color: #0D0D0D;
}

/* === HEADER === */
.site-header {
  background: linear-gradient(180deg, #0D0D0D 0%, #1a0000 100%);
  border-bottom: 2px solid #FFD700;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(74,0,0,0.5);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

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

.header-time {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #FFD700;
  letter-spacing: 1px;
}

.header-btn-group {
  display: flex;
  gap: 10px;
}

.btn-login {
  padding: 8px 20px;
  border: 1px solid #FFD700;
  color: #FFD700;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-login:hover {
  background: rgba(255,215,0,0.1);
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
  color: #FFD700;
}

.btn-register {
  padding: 8px 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,215,0,0.4);
  color: #0D0D0D;
}

.btn-demo {
  padding: 8px 20px;
  border: 1px solid #4A0000;
  color: #FFD700;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  background: rgba(74,0,0,0.3);
  transition: all 0.3s;
}

.btn-demo:hover {
  background: rgba(74,0,0,0.6);
  border-color: #FFD700;
  color: #FFD700;
}

/* === NAVIGATION === */
.main-navigation {
  background: linear-gradient(90deg, #1a0000 0%, #0D0D0D 50%, #1a0000 100%);
  border-top: 1px solid rgba(255,215,0,0.2);
  border-bottom: 1px solid rgba(255,215,0,0.2);
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  color: #E8E8E8;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: #FFD700;
  background: rgba(74,0,0,0.3);
  border-bottom-color: #FFD700;
  text-shadow: 0 0 8px rgba(255,215,0,0.5);
}

.nav-link i {
  margin-right: 5px;
  color: #FFD700;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid #FFD700;
  color: #FFD700;
  padding: 8px 12px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 4px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
  background: linear-gradient(90deg, #4A0000, #2a0000, #4A0000);
  padding: 8px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,215,0,0.15);
}

.notification-content {
  display: flex;
  gap: 40px;
  animation: scrollNotifications 30s linear infinite;
  white-space: nowrap;
}

.notification-content span {
  font-size: 13px;
  color: #FFD700;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.5px;
}

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

/* === CONTENT LAYOUT === */
.content-area {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

.main-content {
  flex: 1;
  min-width: 0;
}

/* === HERO SECTION === */
.highlimit-hero {
  position: relative;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0000 30%, #2a0000 60%, #0D0D0D 100%);
  border-radius: 16px;
  padding: 80px 40px;
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.3);
  box-shadow: 0 0 60px rgba(74,0,0,0.3), inset 0 0 60px rgba(74,0,0,0.1);
}

.tension-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tension-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
  height: 1px;
  width: 100%;
}

.tension-line.line-1 { top: 20%; animation: limitBreak 4s ease-in-out infinite; }
.tension-line.line-2 { top: 40%; animation: limitBreak 4s ease-in-out 0.5s infinite; }
.tension-line.line-3 { top: 60%; animation: limitBreak 4s ease-in-out 1s infinite; }
.tension-line.line-4 { top: 80%; animation: limitBreak 4s ease-in-out 1.5s infinite; }
.tension-line.line-5 { top: 95%; animation: limitBreak 4s ease-in-out 2s infinite; }

.chip-stack {
  position: absolute;
  top: 20px;
  right: 40px;
  pointer-events: none;
}

.chip {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px dashed #FFD700;
  background: radial-gradient(circle, #4A0000 0%, #2a0000 100%);
  position: absolute;
  animation: chipGlow 3s ease-in-out infinite;
}

.chip-1 { top: 0; right: 0; animation-delay: 0s; }
.chip-2 { top: 15px; right: 25px; animation-delay: 0.3s; width: 45px; height: 45px; }
.chip-3 { top: 35px; right: 50px; animation-delay: 0.6s; width: 40px; height: 40px; }
.chip-4 { top: 55px; right: 10px; animation-delay: 0.9s; width: 35px; height: 35px; }
.chip-5 { top: 70px; right: 40px; animation-delay: 1.2s; width: 30px; height: 30px; }

.hero-inner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-main-title {
  margin-bottom: 25px;
}

.hero-brand {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 30px rgba(255,215,0,0.4), 0 4px 8px rgba(0,0,0,0.5);
  letter-spacing: 8px;
  animation: highStake 3s ease-in-out infinite;
}

.hero-divider-line {
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  margin: 15px auto;
}

.hero-tagline {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #E8E8E8;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.hero-stat-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Raleway', sans-serif;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-gold-primary {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  border-radius: 6px;
  letter-spacing: 2px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-gold-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255,215,0,0.4);
  color: #0D0D0D;
}

.btn-outline-gold {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #FFD700;
  color: #FFD700;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  border-radius: 6px;
  letter-spacing: 2px;
  transition: all 0.3s;
  background: transparent;
}

.btn-outline-gold:hover {
  background: rgba(255,215,0,0.1);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
  color: #FFD700;
}

/* === SECTION TITLES === */
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.section-title i {
  margin-right: 10px;
}

.section-subtitle {
  text-align: center;
  color: #999;
  font-size: 15px;
  margin-bottom: 35px;
  font-family: 'Raleway', sans-serif;
}

/* === STAR GAMES SECTION === */
.star-games {
  margin-bottom: 50px;
}

.star-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.star-game-card {
  position: relative;
  background: linear-gradient(135deg, #1a0000 0%, #0D0D0D 100%);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s;
  overflow: hidden;
  display: block;
  color: #E8E8E8;
}

.star-game-card:hover {
  transform: translateY(-8px);
  border-color: #FFD700;
  box-shadow: 0 10px 40px rgba(74,0,0,0.4), 0 0 20px rgba(255,215,0,0.2);
  color: #E8E8E8;
}

.star-game-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}

.star-game-card:hover .star-game-glow {
  opacity: 1;
}

.star-game-icon {
  margin-bottom: 15px;
}

.star-game-icon i {
  font-size: 40px;
  color: #FFD700;
  animation: chipGlow 3s ease-in-out infinite;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.3);
}

.star-game-rating {
  margin-bottom: 10px;
}

.star-game-rating i {
  color: #FFD700;
  font-size: 12px;
}

.star-game-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #FFD700;
}

.star-game-card p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 12px;
}

.star-game-players {
  font-size: 12px;
  color: #FFD700;
  font-family: 'Raleway', sans-serif;
}

.star-game-players i {
  margin-right: 4px;
}

/* === GAMES GRID SECTION === */
.games-grid-section {
  margin-bottom: 50px;
}

.games-grid-map {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.games-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.games-grid-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 15px;
  background: linear-gradient(135deg, rgba(74,0,0,0.3) 0%, rgba(13,13,13,0.8) 100%);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 10px;
  transition: all 0.3s;
  color: #E8E8E8;
}

.games-grid-node:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74,0,0,0.3);
  animation: tensionPulse 1s ease;
  color: #E8E8E8;
}

.games-node-icon i {
  font-size: 28px;
  color: #FFD700;
}

.games-node-label {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
}

/* === FEATURES SECTION === */
.highlimit-features {
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: linear-gradient(135deg, #1a0000 0%, #0D0D0D 100%);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(74,0,0,0.3);
}

.feature-icon {
  margin-bottom: 15px;
}

.feature-icon i {
  font-size: 36px;
  color: #FFD700;
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.3);
  background: rgba(74,0,0,0.3);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFD700;
}

.feature-card p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
}

/* === STATS SECTION === */
.highlimit-stats {
  position: relative;
  margin-bottom: 50px;
  padding: 60px 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.2);
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0000 0%, #2a0000 50%, #0D0D0D 100%);
  z-index: 0;
}

.tension-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,215,0,0.03) 10px,
    rgba(255,215,0,0.03) 20px
  );
}

.highlimit-stats .section-title,
.highlimit-stats .section-subtitle {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(13,13,13,0.6);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: #FFD700;
  animation: highStake 0.5s ease;
}

.stat-decoration i {
  color: #FFD700;
  font-size: 18px;
  opacity: 0.5;
}

.stat-decoration.bottom {
  margin-top: 10px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
  margin: 10px 0;
}

.stat-label {
  font-size: 13px;
  color: #ccc;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === PROMOTIONS SECTION === */
.highlimit-promos {
  margin-bottom: 50px;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.2);
  transition: all 0.3s;
}

.promo-card:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74,0,0,0.4);
}

.promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0000 0%, #0D0D0D 100%);
}

.promo-inner {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  text-align: center;
}

.promo-icon {
  margin-bottom: 15px;
}

.promo-icon i {
  font-size: 36px;
  color: #FFD700;
}

.promo-inner h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFD700;
  letter-spacing: 1px;
}

.promo-inner p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 15px;
}

.promo-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 12px;
  color: #999;
}

.promo-badge {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
}

.promo-badge.hot {
  background: linear-gradient(135deg, #4A0000, #8B0000);
  color: #FFD700;
}

.promo-badge.new {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
}

.promo-badge.vip {
  background: linear-gradient(135deg, #4A0000, #FFD700);
  color: #FFF;
}

.btn-promo {
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  border-radius: 6px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-promo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255,215,0,0.4);
  color: #0D0D0D;
}

/* === FOOTER CTA === */
.footer-cta-section {
  position: relative;
  margin-bottom: 50px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.3);
}

.footer-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a0000 0%, #4A0000 50%, #1a0000 100%);
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  text-align: center;
}

.cta-decoration {
  margin-bottom: 20px;
}

.cta-chip-stack {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px dashed #FFD700;
  background: radial-gradient(circle, #4A0000 0%, #2a0000 100%);
  margin: 0 auto;
  animation: chipGlow 2s ease-in-out infinite;
}

.footer-cta-inner h2 {
  font-size: 36px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.footer-cta-inner p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.cta-feature {
  font-size: 14px;
  color: #FFD700;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.cta-feature i {
  margin-right: 6px;
}

.cta-main-btn {
  font-size: 20px;
  padding: 16px 50px;
}

/* === NEWS SECTION === */
.home-news-section {
  margin-bottom: 50px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.article-card {
  background: linear-gradient(135deg, #1a0000 0%, #0D0D0D 100%);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  color: #E8E8E8;
}

.article-card:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(74,0,0,0.3);
  color: #E8E8E8;
}

.article-card-thumb {
  height: 180px;
  overflow: hidden;
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.article-card-title {
  padding: 15px 15px 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFD700;
  line-height: 1.4;
  min-height: 50px;
}

.article-card-title span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-title a {
  color: #FFD700;
}

.article-card-title a:hover {
  color: #FFF;
}

.article-card-meta {
  padding: 0 15px 8px;
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 15px;
}

.article-card-meta i {
  margin-right: 4px;
  color: #FFD700;
}

.article-card-excerpt {
  padding: 0 15px 15px;
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
}

.article-card-more {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 15px 15px;
  color: #FFD700;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 4px;
  transition: all 0.3s;
}

.article-card-more:hover {
  background: rgba(255,215,0,0.1);
  color: #FFD700;
}

.view-more-btn {
  display: block;
  text-align: center;
  padding: 14px 40px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 2px;
  transition: all 0.3s;
  max-width: 300px;
  margin: 0 auto;
  color: #FFD700;
}

.view-more-btn:hover {
  background: rgba(255,215,0,0.1);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
  color: #FFD700;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  font-size: 13px;
  color: #888;
  font-family: 'Raleway', sans-serif;
}

.breadcrumb a {
  color: #FFD700;
}

.breadcrumb a:hover {
  color: #FFF;
}

.breadcrumb span {
  color: #888;
}

/* === CATEGORY HEADER === */
.category-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255,215,0,0.2);
}

.category-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.category-title i {
  margin-right: 8px;
}

.category-desc {
  color: #999;
  font-size: 14px;
}

/* === PROVIDER TABS === */
.provider-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.provider-tab {
  padding: 8px 18px;
  background: rgba(74,0,0,0.3);
  border: 1px solid rgba(255,215,0,0.2);
  color: #ccc;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.provider-tab:hover,
.provider-tab.active {
  background: linear-gradient(135deg, #4A0000, #8B0000);
  color: #FFD700;
  border-color: #FFD700;
}

/* === ARTICLE GRID === */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

/* === PAGINATION === */
.pagination {
  text-align: center;
  margin-bottom: 30px;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(74,0,0,0.3);
  border: 1px solid rgba(255,215,0,0.2);
  color: #E8E8E8;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
  border-color: #FFD700;
}

/* === SINGLE ARTICLE === */
.single-article {
  background: linear-gradient(135deg, #1a0000 0%, #0D0D0D 100%);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.article-header {
  margin-bottom: 20px;
}

.article-title {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #888;
}

.article-meta i {
  margin-right: 4px;
  color: #FFD700;
}

.article-meta a {
  color: #FFD700;
}

.article-featured-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255,215,0,0.1);
}

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

.article-content {
  font-size: 15px;
  line-height: 1.9;
  color: #ddd;
}

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

.article-content h2,
.article-content h3 {
  margin: 25px 0 12px;
  color: #FFD700;
}

.article-content a {
  color: #FFD700;
  text-decoration: underline;
}

.article-content img {
  border-radius: 8px;
  margin: 15px 0;
}

.article-content blockquote {
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin: 20px 0;
  background: rgba(74,0,0,0.2);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #ccc;
}

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

.article-content li {
  margin-bottom: 8px;
}

/* === ARTICLE TAGS === */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,215,0,0.15);
  margin-top: 20px;
}

.article-tags i {
  color: #FFD700;
  margin-right: 5px;
}

.article-tags span {
  padding: 4px 12px;
  background: rgba(74,0,0,0.3);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 15px;
  font-size: 12px;
  color: #FFD700;
}

.article-tags a {
  color: #FFD700;
}

/* === ARTICLE NAV === */
.article-nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid rgba(255,215,0,0.15);
}

.article-nav a {
  color: #FFD700;
  font-size: 14px;
  font-weight: 600;
}

.article-nav a:hover {
  color: #FFF;
}

/* === RELATED POSTS === */
.related-posts {
  margin-bottom: 30px;
}

.related-posts-title {
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.related-item {
  background: linear-gradient(135deg, #1a0000 0%, #0D0D0D 100%);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  color: #E8E8E8;
}

.related-item:hover {
  border-color: #FFD700;
  transform: translateY(-3px);
  color: #E8E8E8;
}

.related-item-thumb {
  height: 100px;
  overflow: hidden;
}

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

.related-item-title {
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #FFD700;
  line-height: 1.4;
}

/* === NO POSTS === */
.no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 16px;
  grid-column: 1 / -1;
}

/* === PAGE ARTICLE === */
.page-article {
  background: linear-gradient(135deg, #1a0000 0%, #0D0D0D 100%);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.page-featured-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-content {
  font-size: 15px;
  line-height: 1.9;
  color: #ddd;
}

.page-content p {
  margin-bottom: 18px;
}

/* === ERROR PAGE === */
.error-page {
  text-align: center;
  padding: 80px 20px;
}

.error-chip {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px dashed #FFD700;
  background: radial-gradient(circle, #4A0000 0%, #0D0D0D 100%);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: chipGlow 2s ease-in-out infinite;
}

.error-chip-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #FFD700;
  background: linear-gradient(135deg, #4A0000, #2a0000);
}

.error-code {
  font-size: 80px;
  color: #FFD700;
  text-shadow: 0 0 30px rgba(255,215,0,0.5);
  margin-bottom: 10px;
}

.error-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.error-desc {
  max-width: 500px;
  margin: 0 auto 25px;
  color: #999;
  font-size: 15px;
  line-height: 1.8;
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A0000, #2a0000);
  border: 1px solid rgba(255,215,0,0.3);
  color: #FFD700;
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
}

.sidebar-btn:hover {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
}

.sidebar-btn-facebook:hover {
  background: #1877f2;
  color: #FFF;
}

.sidebar-btn-telegram:hover {
  background: #0088cc;
  color: #FFF;
}

.sidebar-label {
  display: none;
}

/* === FOOTER === */
.site-footer {
  background: linear-gradient(180deg, #0D0D0D 0%, #1a0000 100%);
  border-top: 2px solid #FFD700;
  padding: 50px 0 30px;
  margin-top: 40px;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #FFD700;
  letter-spacing: 2px;
}

.footer-brand-logo img {
  height: 40px;
  margin-bottom: 12px;
}

.footer-brand-text {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-18plus {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 2px solid #FF0000;
  border-radius: 50%;
  color: #FF0000;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 12px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-social-links a:hover {
  background: #FFD700;
  color: #0D0D0D;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: #bbb;
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: #FFD700;
  padding-left: 5px;
}

/* === LICENSE BAR === */
.footer-license-bar {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,215,0,0.15);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  margin-bottom: 20px;
}

.footer-license-bar h4 {
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.license-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.license-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.license-item i {
  font-size: 24px;
  color: #FFD700;
}

.license-item span {
  font-size: 11px;
  color: #999;
  font-family: 'Raleway', sans-serif;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
}

.footer-copyright {
  font-size: 13px;
  color: #888;
  font-family: 'Raleway', sans-serif;
}

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-column: 1 / -1;
}
