/* ===========================================
   Silkroad Online - Main Stylesheet
   Light/White Theme with Pastel Tones
   =========================================== */

/* CSS Variables - Light Theme Colors */
:root {
  --primary-gold: #c4a35a;
  --primary-gold-dark: #a08040;
  --primary-gold-light: #e0c880;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --cream: #fefefe;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --pastel-blue: #e3f2fd;
  --pastel-green: #e8f5e9;
  --pastel-yellow: #fff8e1;
  --pastel-red: #ffebee;
  --pastel-purple: #f3e5f5;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --success: #4caf50;
  --danger: #e53935;
  --info: #03a9f4;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Global Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: url("../img/Cursor_2.cur"), auto;
  /* Disable text selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection only in inputs */
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Custom Cursors */
/* Default: Cursor_2 (body) */
/* Hover: Cursor_3 */
/* Click/Active: Cursor_1 */
/* Input/Text: Cursor_5 */
/* Pointer/Other: Cursor_4 */

a,
button,
.btn,
.clickable,
.nav-link,
.action-item,
.social-item,
.news-item,
.player-row,
.guild-row,
.unique-row,
.download-btn,
.header-btn,
.flag-btn,
.carousel-indicators button {
  cursor: url("../img/Cursor_4.cur"), pointer;
}

a:hover,
button:hover,
.btn:hover,
.clickable:hover,
.nav-link:hover,
.action-item:hover,
.social-item:hover,
.news-item:hover,
.player-row:hover,
.guild-row:hover,
.unique-row:hover,
.download-btn:hover,
.header-btn:hover,
.flag-btn:hover,
.carousel-indicators button:hover {
  cursor: url("../img/Cursor_3.cur"), pointer;
}

a:active,
button:active,
.btn:active,
.clickable:active,
.nav-link:active,
.action-item:active,
.social-item:active,
.news-item:active,
.player-row:active,
.guild-row:active,
.unique-row:active,
.download-btn:active,
.header-btn:active,
.flag-btn:active,
.carousel-indicators button:active {
  cursor: url("../img/Cursor_1.cur"), pointer;
}

input,
textarea,
select,
.form-control {
  cursor: url("../img/Cursor_5.cur"), text;
}

/* Context Menu (Right Click) Cursor */
*:active:focus,
[contenteditable],
[contenteditable]:focus {
  cursor: url("../img/Cursor_1.cur"), text;
}

/* Scrollbar - Light Theme */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--gray-200);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* Video Background - Fully Visible */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================================
   TOP HEADER - Fixed Light Theme
   =========================================== */
.top-header {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 5px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}

/* Language Flags */
.lang-flags {
  display: flex;
  gap: 6px;
}

.flag-btn {
  background: var(--gray-100);
  border: 2px solid transparent;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-btn:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
}

.flag-btn.active {
  background: var(--pastel-yellow);
  border-color: var(--primary-gold);
}

.flag-btn img {
  display: block;
  border-radius: 2px;
}

/* Server Time */
.server-time {
  color: var(--text-medium);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.server-time i {
  color: var(--primary-gold);
  font-size: 14px;
}

.server-time .time-label {
  color: var(--text-light);
  font-size: 12px;
}

.server-time #serverTime {
  color: var(--text-dark);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
}

/* Header Logo - Removed, now in navbar */
.header-logo {
  display: none;
}

/* Header Action Buttons */
.header-btn {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
}

.header-btn.silk-btn {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--primary-gold-dark) 100%
  );
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(196, 163, 90, 0.3);
}

.header-btn.silk-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gold-light) 0%,
    var(--primary-gold) 100%
  );
  box-shadow: 0 4px 12px rgba(196, 163, 90, 0.4);
}

.header-btn.register-btn {
  background: var(--pastel-green);
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.header-btn.register-btn:hover {
  background: #c8e6c9;
  border-color: #81c784;
}

.header-btn.login-btn {
  background: var(--white);
  color: var(--primary-gold-dark);
  border: 1px solid var(--primary-gold);
}

.header-btn.login-btn:hover {
  background: var(--pastel-yellow);
  color: var(--primary-gold-dark);
}

/* ===========================================
   MAIN NAVIGATION - Light Theme with Scroll Hide
   =========================================== */
.main-navbar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 0;
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-navbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.navbar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-center {
  padding: 0 30px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .silkroad-text {
  font-family: "Silkroad", cursive;
  font-size: 32px;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  letter-spacing: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 22px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-gold);
  transition: width 0.25s ease;
}

.nav-link i {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--primary-gold);
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary-gold-dark);
  background: var(--pastel-yellow);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 100%;
}

.nav-link.download-link {
  color: var(--primary-gold-dark);
  font-weight: 600;
}

/* ===========================================
   MAIN CONTENT - Account for fixed headers
   =========================================== */
.main-content {
  padding: 20px 0;
  padding-top: 130px;
  position: relative;
  z-index: 10;
  min-height: calc(100vh - 130px);
}

/* ===========================================
   LEFT SIDEBAR - Light Theme
   =========================================== */
.left-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-widget {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Download Widget */
.download-widget {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--primary-gold-dark) 100%
  );
  border: none;
}

.download-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  color: var(--white);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.download-btn i {
  font-size: 32px;
  margin-bottom: 10px;
}

.download-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gold-light) 0%,
    var(--primary-gold) 100%
  );
  color: var(--white);
  transform: scale(1.02);
}

/* Quick Actions - 2x2 Grid */
.quick-actions {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.action-item i {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--primary-gold);
}

.action-item:hover {
  background: var(--pastel-yellow);
  color: var(--primary-gold-dark);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

/* Server Stats & Unique Data Widgets */
.server-stats,
.unique-data,
.server-rates {
  background: rgba(255, 255, 255, 0.7);
}

.widget-header {
  background: linear-gradient(
    90deg,
    var(--pastel-yellow) 0%,
    var(--white) 100%
  );
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.widget-header i {
  font-size: 12px;
  color: var(--primary-gold);
}

.server-stats .widget-title,
.unique-data .widget-title,
.server-rates .widget-title {
  background: var(--gray-100);
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--gray-200);
}

.stats-content {
  padding: 10px 12px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 12px;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--text-light);
}

.stat-value {
  color: var(--text-dark);
  font-weight: 600;
}

.stat-value.online {
  color: var(--success);
}

/* Server Rates */
.rates-content {
  padding: 10px 12px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 12px;
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-label {
  color: var(--text-light);
  font-weight: 500;
}

.rate-value {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 13px;
}

/* Unique Data */
.unique-content {
  padding: 10px;
}

.unique-row {
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 6px;
  transition: background 0.2s ease;
}

.unique-row:hover {
  background: var(--gray-100);
}

.unique-row:last-child {
  border-bottom: none;
}

.unique-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--primary-gold-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.unique-icon i {
  font-size: 11px;
  color: var(--white);
}

.unique-name {
  flex: 1;
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 500;
}

.unique-time {
  color: var(--primary-gold-dark);
  font-size: 11px;
  font-weight: 600;
}

/* Free Register Banner */
.register-banner {
  background: linear-gradient(135deg, var(--pastel-green) 0%, #c8e6c9 100%);
  padding: 18px;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.banner-image {
  width: 50px;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.banner-image i {
  font-size: 26px;
  color: #43a047;
}

.banner-text {
  display: flex;
  flex-direction: column;
}

.free-text {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #2e7d32;
  line-height: 1;
}

.register-text {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #388e3c;
  letter-spacing: 1px;
}

/* ===========================================
   CENTER CONTENT - Light Theme
   =========================================== */
.center-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hero Slider */
.hero-slider {
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.carousel-item {
  min-height: 320px;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 320px;
  padding: 35px 45px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0.2) 70%,
    transparent 100%
  );
}

.slide-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}

.slide-text h1.highlight {
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slide-text p {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 22px;
  max-width: 360px;
  line-height: 1.6;
}

.btn-details {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--primary-gold-dark) 100%
  );
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-size: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(196, 163, 90, 0.3);
}

.btn-details:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gold-light) 0%,
    var(--primary-gold) 100%
  );
  color: var(--white);
  box-shadow: 0 5px 16px rgba(196, 163, 90, 0.4);
}

.carousel-indicators {
  bottom: 18px;
  right: 25px;
  left: auto;
  margin: 0;
  z-index: 10;
}

#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7) !important;
  border: 2px solid rgba(196, 160, 0, 0.7) !important;
  margin: 0 6px;
  opacity: 1 !important;
  transition: all 0.25s ease;
}

#heroCarousel .carousel-indicators button:hover {
  background: var(--primary-gold) !important;
  border-color: rgba(196, 160, 0, 0.7) !important;
  border-width: 2px;
}

#heroCarousel .carousel-indicators button.active {
  background: var(--primary-gold) !important;
  border-color: #8b7300 !important;
  border-width: 2px;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(196, 160, 0, 0.7);
}

/* News Section */
.news-section {
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.news-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 15px;
}

.news-tabs .nav-tabs {
  border: none;
}

.news-tabs .nav-link {
  background: transparent;
  border: none;
  color: var(--text-medium);
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.25s ease;
  flex-direction: row;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.news-tabs .nav-link::after {
  display: none;
}

.news-tabs .nav-link:hover,
.news-tabs .nav-link.active {
  color: var(--primary-gold-dark);
  background: transparent;
}

.news-tabs .nav-link.active {
  border-bottom: 3px solid var(--primary-gold);
}

.all-news-link {
  color: var(--primary-gold-dark);
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.all-news-link:hover {
  color: var(--primary-gold);
}

.tab-content {
  padding: 12px;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-200);
  gap: 14px;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.news-item:hover {
  background: var(--pastel-yellow);
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  color: var(--text-light);
  font-size: 12px;
  min-width: 85px;
}

.news-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  min-width: 85px;
  text-align: center;
  border-radius: 12px;
}

.news-tag.event {
  background: var(--pastel-red);
  color: #c62828;
}

.news-tag.update {
  background: var(--pastel-blue);
  color: #1565c0;
}

.news-tag.announcement {
  background: var(--pastel-yellow);
  color: #f57f17;
}

.news-title {
  color: var(--text-dark);
  font-size: 13px;
  flex: 1;
  font-weight: 500;
}

.news-item:hover .news-title {
  color: var(--primary-gold-dark);
}

/* ===========================================
   RIGHT SIDEBAR - Light Theme
   =========================================== */
.right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-title-right {
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    var(--pastel-yellow) 100%
  );
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: right;
}

/* Social Widget */
.social-widget {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  color: var(--primary-gold-dark);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--white);
  transition: all 0.25s ease;
}

.social-item i {
  font-size: 20px;
  margin-bottom: 5px;
}

.social-item:hover {
  background: var(--pastel-yellow);
  color: var(--primary-gold);
}

/* Top Players & Guild Rankings */
.top-players,
.guild-rankings {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.players-list,
.guild-list {
  padding: 10px;
}

.player-row,
.guild-row {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 6px;
  transition: background 0.2s ease;
}

.player-row:hover,
.guild-row:hover {
  background: var(--gray-100);
}

.player-row:last-child,
.guild-row:last-child {
  border-bottom: none;
}

.rank {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-right: 10px;
  background: var(--gray-200);
  color: var(--text-light);
  border-radius: 4px;
}

.rank.gold {
  background: linear-gradient(180deg, #ffd700 0%, #ffb300 100%);
  color: #5d4037;
}

.rank.silver {
  background: linear-gradient(180deg, #e0e0e0 0%, #9e9e9e 100%);
  color: #424242;
}

.rank.bronze {
  background: linear-gradient(180deg, #d7a26a 0%, #a67c52 100%);
  color: #4e342e;
}

.player-name,
.guild-name {
  flex: 1;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 500;
}

.player-level,
.guild-points {
  color: var(--primary-gold-dark);
  font-size: 11px;
  font-weight: 600;
}

/* ===========================================
   FOOTER - Light Theme
   =========================================== */
.main-footer {
  background: rgba(255, 255, 255, 0.75);
  padding: 18px 25px;
  border-top: 1px solid var(--gray-300);
  position: relative;
  z-index: 10;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.copyright {
  color: var(--text-dark);
  font-size: 12px;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--primary-gold);
  color: var(--white);
  border-color: var(--primary-gold);
}

/* Partners Slider in Footer */
.partners-slider {
  width: 329px; /* 7 logos x 32px + 6 gaps x 15px + 1 extra gap = 224 + 90 + 15 */
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.partners-track {
  display: flex;
  gap: 15px;
  animation: partnersScroll 9s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-329px)); /* One full set width */
  }
}

.partners-slider a {
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.partners-slider a:hover {
  transform: scale(1.2);
}

.partners-slider img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partners-slider img:hover {
  filter: grayscale(0%);
}

/* ===========================================
   MODALS - Light Theme
   =========================================== */
.game-modal {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.game-modal .modal-header {
  background: linear-gradient(
    90deg,
    var(--pastel-yellow) 0%,
    var(--white) 100%
  );
  border-bottom: 1px solid var(--gray-200);
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
}

.game-modal .modal-title {
  color: var(--primary-gold-dark);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.game-modal .btn-close {
  opacity: 0.5;
}

.game-modal .btn-close:hover {
  opacity: 1;
}

.game-modal .modal-body {
  padding: 25px;
}

.game-modal .form-label {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.game-modal .form-control {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--text-dark);
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.game-modal .form-control:focus {
  background: var(--white);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.15);
  color: var(--text-dark);
}

.game-modal .form-control::placeholder {
  color: var(--text-light);
}

.game-modal .form-check-label {
  color: var(--text-medium);
  font-size: 12px;
}

.game-modal .form-check-input {
  background-color: var(--gray-100);
  border-color: var(--gray-400);
  border-radius: 4px;
}

.game-modal .form-check-input:checked {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.btn-game {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--primary-gold-dark) 100%
  );
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: none;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(196, 163, 90, 0.3);
}

.btn-game:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gold-light) 0%,
    var(--primary-gold) 100%
  );
  color: var(--white);
  box-shadow: 0 5px 14px rgba(196, 163, 90, 0.4);
}

#silkModal .btn-game:hover {
  cursor: url("../img/Cursor_5.cur"), default !important;
}

.modal-footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--gray-200);
}

.modal-footer-links a {
  color: var(--primary-gold-dark);
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
}

.modal-footer-links a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

/* Silk Packages */
.silk-packages {
  padding: 10px;
}

.silk-package {
  background: var(--gray-100);
  border: 2px solid var(--gray-300);
  padding: 22px 18px;
  text-align: center;
  position: relative;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.silk-package:hover {
  border-color: var(--primary-gold);
  background: var(--pastel-yellow);
  box-shadow: var(--shadow-md);
}

.silk-package.popular {
  border-color: var(--primary-gold);
  background: var(--pastel-yellow);
}

.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--primary-gold-dark) 100%
  );
  color: var(--white);
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(196, 163, 90, 0.3);
}

.package-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  margin-bottom: 10px;
}

.package-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1200px) {
  .nav-link {
    padding: 12px 16px;
  }
  .slide-text h1.highlight {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .top-header .row {
    flex-direction: column;
    gap: 8px;
  }
  .top-header .col-md-4 {
    width: 100%;
    justify-content: center !important;
  }
  .top-header {
    padding: 8px 15px;
  }
  .main-navbar {
    top: 80px;
  }
  .main-content {
    padding-top: 140px;
  }
  .navbar-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 10px;
  }
  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-center {
    padding: 8px 15px;
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .left-sidebar,
  .right-sidebar {
    margin-bottom: 16px;
  }
  .carousel-item {
    min-height: 260px;
  }
  .slide-content {
    min-height: 260px;
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .header-btn {
    padding: 6px 12px;
    font-size: 10px;
  }
  .nav-link {
    padding: 10px 12px;
    font-size: 10px;
  }
  .nav-link i {
    font-size: 16px;
  }
  .slide-text h1.highlight {
    font-size: 28px;
  }
  .slide-text h2 {
    font-size: 12px;
  }
  .news-tabs {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .action-grid {
    grid-template-columns: 1fr 1fr;
  }
  .carousel-item {
    min-height: 200px;
  }
  .slide-content {
    min-height: 200px;
    padding: 18px;
  }
  .slide-text h1.highlight {
    font-size: 22px;
  }
  .btn-details {
    padding: 10px 18px;
    font-size: 11px;
  }
}

/* Selection */
::selection {
  background: var(--primary-gold);
  color: var(--white);
}

/* ===========================================
   Ranking Page Styles
   =========================================== */

/* Ranking Menu Widget */
.ranking-menu .widget-header {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  color: var(--white);
  padding: 12px 15px;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ranking-menu .widget-header i {
  font-size: 16px;
}

.ranking-menu-list {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ranking-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
}

.ranking-menu-item:last-child {
  border-bottom: none;
}

.ranking-menu-item i {
  width: 20px;
  text-align: center;
  color: var(--primary-gold);
  font-size: 14px;
}

.ranking-menu-item:hover {
  background: var(--pastel-yellow);
  color: var(--primary-gold-dark);
  padding-left: 20px;
}

.ranking-menu-item.active {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  color: var(--white);
}

.ranking-menu-item.active i {
  color: var(--white);
}

/* Ranking Content Area */
.ranking-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ranking-header {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  padding: 18px 25px;
}

.ranking-header h2 {
  color: var(--white);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ranking-header h2 i {
  font-size: 22px;
}

/* Ranking Table */
.ranking-table-wrapper {
  padding: 0;
  overflow-x: auto;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ranking-table thead {
  background: var(--gray-100);
}

.ranking-table th {
  padding: 14px 15px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--gray-300);
  white-space: nowrap;
}

.ranking-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.ranking-table tbody tr:hover {
  background: var(--pastel-yellow);
}

.ranking-table tbody tr:last-child {
  border-bottom: none;
}

.ranking-table td {
  padding: 12px 15px;
  color: var(--text-dark);
  vertical-align: middle;
}

/* Rank Badges */
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-size: 14px;
}

.rank-badge.gold {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #7a5c00;
}

.rank-badge.silver {
  background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
  color: #555;
}

.rank-badge.bronze {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: #fff;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-weight: 600;
  color: var(--text-medium);
}

/* Player Name */
.player-name {
  font-weight: 600;
  color: var(--primary-gold-dark);
}

/* Guild Name */
.ranking-table .guild-name {
  color: var(--text-medium);
  font-size: 13px;
}

/* Item Point */
.item-point {
  font-weight: 600;
  color: var(--success);
}

/* Gold Row Highlight */
.rank-gold {
  background: rgba(255, 215, 0, 0.08);
}

.rank-gold:hover {
  background: rgba(255, 215, 0, 0.15) !important;
}

/* Pagination */
.ranking-pagination {
  padding: 20px;
  border-top: 1px solid var(--gray-200);
}

.ranking-pagination .pagination {
  margin: 0;
  gap: 5px;
}

.ranking-pagination .page-link {
  border: 1px solid var(--gray-300);
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.ranking-pagination .page-link:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
}

.ranking-pagination .page-item.active .page-link {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
}

.ranking-pagination .page-item.disabled .page-link {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-400);
}

/* Ranking Page Responsive */
@media (max-width: 992px) {
  .ranking-table th,
  .ranking-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .ranking-header {
    padding: 15px 20px;
  }

  .ranking-header h2 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .ranking-menu-item {
    padding: 10px 12px;
    font-size: 12px;
  }

  .ranking-table th,
  .ranking-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .rank-badge,
  .rank-number {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

/* ===========================================
   Download Page Styles
   =========================================== */

.download-page-content {
  padding-bottom: 30px;
}

/* Download Section */
.download-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.download-section .section-header {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  padding: 18px 25px;
}

.download-section .section-header h2 {
  color: var(--white);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-section .section-content {
  padding: 25px;
}

/* Download Info */
.download-info {
  margin-bottom: 25px;
  padding: 15px 20px;
  background: var(--pastel-yellow);
  border-left: 4px solid var(--primary-gold);
  border-radius: 0 8px 8px 0;
}

.download-info h4 {
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 8px;
}

.download-info p {
  color: var(--text-medium);
  font-size: 14px;
  margin: 0;
}

/* Download Cards */
.download-card {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.download-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  border-radius: 8px;
  margin-bottom: 15px;
}

.download-card-icon i {
  font-size: 24px;
  color: var(--white);
}

.download-card-icon .download-text {
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.download-card-info {
  font-size: 13px;
  color: var(--text-dark);
}

.download-card-info .label {
  font-weight: 600;
  color: var(--primary-gold-dark);
}

/* Driver Cards */
.driver-info {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 20px;
}

.driver-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.driver-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.driver-card.nvidia {
  border-color: #76b900;
}

.driver-card.nvidia:hover {
  box-shadow: 0 4px 20px rgba(118, 185, 0, 0.2);
}

.driver-card.amd {
  border-color: #ed1c24;
}

.driver-card.amd:hover {
  box-shadow: 0 4px 20px rgba(237, 28, 36, 0.2);
}

.driver-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.driver-logo img {
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
}

.driver-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.driver-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 163, 90, 0.4);
  color: var(--white);
}

/* Requirements Table */
.requirements-info {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 20px;
}

.requirements-table-wrapper {
  overflow-x: auto;
}

.requirements-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.requirements-table thead {
  background: var(--gray-100);
}

.requirements-table th {
  padding: 14px 15px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--gray-300);
  white-space: nowrap;
}

.requirements-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.requirements-table tbody tr:hover {
  background: var(--pastel-yellow);
}

.requirements-table tbody tr:last-child {
  border-bottom: none;
}

.requirements-table td {
  padding: 12px 15px;
  color: var(--text-dark);
  vertical-align: middle;
}

.requirements-table td:first-child {
  font-weight: 600;
  color: var(--primary-gold-dark);
}

/* Download Page Responsive */
@media (max-width: 992px) {
  .download-section .section-content {
    padding: 20px;
  }

  .download-card {
    padding: 15px;
  }

  .download-card-icon {
    padding: 12px;
  }

  .download-card-icon .download-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .download-section .section-header {
    padding: 15px 20px;
  }

  .download-section .section-header h2 {
    font-size: 16px;
  }

  .driver-cards .col-lg-4 {
    margin-bottom: 15px;
  }

  .requirements-table th,
  .requirements-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* ===========================================
   Announcement Page Styles
   =========================================== */

.announcement-page-content {
  padding-bottom: 30px;
}

.announcement-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.announcement-section .section-header {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  padding: 18px 25px;
}

.announcement-section .section-header h2 {
  color: var(--white);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Announcement Tabs */
.announcement-tabs {
  padding: 15px 25px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.announcement-tabs .nav-tabs {
  border: none;
  gap: 6px;
}

.announcement-tabs .nav-link {
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.announcement-tabs .nav-link:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold-dark);
}

.announcement-tabs .nav-link.active {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  border-color: var(--primary-gold);
  color: var(--white);
}

.announcement-tabs .nav-link i {
  font-size: 10px;
}

/* Announcement List */
.announcement-list {
  padding: 25px;
}

/* Announcement Card */
.announcement-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.announcement-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.announcement-card:last-child {
  margin-bottom: 0;
}

.announcement-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--gray-100);
}

.announcement-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.announcement-date {
  font-size: 13px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-date i {
  color: var(--primary-gold);
}

.announcement-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.announcement-tag.event {
  background: var(--pastel-purple);
  color: #7b1fa2;
}

.announcement-tag.update {
  background: var(--pastel-blue);
  color: #1565c0;
}

.announcement-tag.announcement {
  background: var(--pastel-green);
  color: #2e7d32;
}

.announcement-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.announcement-body {
  padding: 20px 25px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.7;
}

.announcement-body p {
  margin-bottom: 12px;
}

.announcement-body p:last-child {
  margin-bottom: 0;
}

.announcement-body h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-gold-dark);
  margin: 18px 0 10px 0;
}

.announcement-body ul {
  margin: 10px 0;
  padding-left: 25px;
}

.announcement-body ul li {
  margin-bottom: 8px;
}

.announcement-body strong {
  color: var(--primary-gold-dark);
}

.announcement-footer {
  padding: 15px 25px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-author {
  font-size: 13px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-author i {
  color: var(--primary-gold);
}

.read-more-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-gold-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--primary-gold);
  gap: 10px;
}

/* Announcement Pagination */
.announcement-pagination {
  padding: 20px 25px;
  border-top: 1px solid var(--gray-200);
}

.announcement-pagination .pagination {
  margin: 0;
  gap: 5px;
}

.announcement-pagination .page-link {
  border: 1px solid var(--gray-300);
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.announcement-pagination .page-link:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
}

.announcement-pagination .page-item.active .page-link {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
}

.announcement-pagination .page-item.disabled .page-link {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-400);
}

/* Announcement Page Responsive */
@media (max-width: 992px) {
  .announcement-tabs {
    padding: 15px 20px;
  }

  .announcement-tabs .nav-link {
    padding: 6px 15px;
    font-size: 12px;
  }

  .announcement-list {
    padding: 20px;
  }

  .announcement-header,
  .announcement-body,
  .announcement-footer {
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .announcement-tabs .nav-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .announcement-tabs .nav-link {
    padding: 6px 12px;
    font-size: 11px;
  }

  .announcement-tabs .nav-link i {
    display: none;
  }

  .announcement-title {
    font-size: 16px;
  }

  .announcement-body {
    font-size: 13px;
  }

  .announcement-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .announcement-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* ===========================================
   Guide Page Styles
   =========================================== */

.guide-page-content {
  padding-bottom: 30px;
}

/* Guide Menu */
.guide-menu-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.guide-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.guide-menu-item:hover {
  background: rgba(196, 163, 90, 0.1);
  color: var(--primary-gold-dark);
  border-color: var(--primary-gold);
}

.guide-menu-item.active {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  color: var(--white);
}

.guide-menu-item i {
  font-size: 14px;
  width: 20px;
  text-align: center;
}

/* Guide Section */
.guide-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.guide-section .section-header {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  padding: 18px 25px;
}

.guide-section .section-header h2 {
  color: var(--white);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-section .section-body {
  padding: 25px;
}

/* Story Content */
.story-content h4 {
  color: var(--primary-gold-dark);
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
}

.story-content h4:first-child {
  margin-top: 0;
}

.story-content p {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.story-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.story-content ul li {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 5px;
}

.story-content ul li strong {
  color: var(--text-dark);
}

/* Race Cards */
.race-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  height: 100%;
}

.race-card h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.race-card.chinese h5 {
  color: #e74c3c;
}

.race-card.european h5 {
  color: #3498db;
}

.race-card p {
  font-size: 13px;
  color: var(--text-medium);
  margin: 0;
}

/* Job Cards */
.job-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.job-card .job-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: var(--white);
}

.job-card.trader .job-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.job-card.hunter .job-icon {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.job-card.thief .job-icon {
  background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.job-card:hover {
  border-color: var(--primary-gold);
}

.job-card.trader:hover {
  border-color: #f39c12;
}

.job-card.hunter:hover {
  border-color: #27ae60;
}

.job-card.thief:hover {
  border-color: #8e44ad;
}

.job-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.job-card p {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 15px;
}

.job-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.job-card ul li {
  font-size: 12px;
  color: var(--text-medium);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.job-card ul li i {
  color: var(--primary-gold);
  font-size: 11px;
  margin-top: 2px;
  min-width: 14px;
}

.job-card ul li:last-child {
  border-bottom: none;
}

.job-requirement {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-300);
}

.job-requirement small {
  font-size: 11px;
  color: var(--primary-gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-requirement small i {
  font-size: 12px;
}

/* Guide Tabs */
.guide-tabs {
  border: none;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.guide-tabs .nav-link {
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
}

.guide-tabs .nav-link:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold-dark);
}

.guide-tabs .nav-link.active {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  border-color: var(--primary-gold);
  color: var(--white);
}

/* Region Info */
.region-info {
  background: linear-gradient(
    135deg,
    rgba(196, 163, 90, 0.1),
    rgba(196, 163, 90, 0.05)
  );
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-gold);
}

.region-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-gold-dark);
  margin-bottom: 5px;
}

.region-info h5 i {
  margin-right: 8px;
}

.region-info p {
  font-size: 13px;
  color: var(--text-medium);
  margin: 0;
}

/* Mob Grid */
.mob-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

/* Mob Card */
.mob-card {
  background: var(--white);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.mob-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.mob-card .mob-image {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-card .mob-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mob-card .mob-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.mob-card .mob-level {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  padding: 2px 10px;
  border-radius: 10px;
  display: inline-block;
}

/* Responsive Guide */
@media (max-width: 992px) {
  .mob-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .guide-tabs {
    gap: 5px;
  }

  .guide-tabs .nav-link {
    padding: 5px 10px;
    font-size: 11px;
  }

  .job-card {
    margin-bottom: 15px;
  }

  .mob-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .mob-card {
    padding: 10px;
  }

  .mob-card .mob-image {
    width: 48px;
    height: 48px;
  }

  .mob-card .mob-name {
    font-size: 11px;
  }
}

/* ===========================================
   Web Mall / Item Mall Styles
   =========================================== */

.webmall-section {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Mall Header */
.mall-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(135deg, #3d2614 0%, #5a3a1f 50%, #6b4423 100%);
  border-bottom: 3px solid var(--primary-gold);
}

.mall-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-gold-light);
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mall-title i {
  font-size: 24px;
  color: var(--primary-gold);
}

.mall-actions {
  display: flex;
  gap: 10px;
}

.mall-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mall-btn.charge-btn {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  color: var(--white);
}

.mall-btn.charge-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gold-light),
    var(--primary-gold)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 163, 90, 0.4);
}

.mall-btn.buy-btn {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: var(--white);
}

.mall-btn.buy-btn:hover {
  background: linear-gradient(135deg, #66bb6a, #4caf50);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* Mall Tabs */
.mall-tabs {
  border-bottom: 2px solid var(--gray-200);
  padding: 0 15px;
  background: var(--gray-100);
}

.mall-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-medium);
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
}

.mall-tabs .nav-link:hover {
  color: var(--primary-gold);
  background: rgba(196, 163, 90, 0.1);
}

.mall-tabs .nav-link.active {
  color: var(--primary-gold-dark);
  border-bottom-color: var(--primary-gold);
  background: var(--white);
}

.mall-tabs .nav-link i {
  font-size: 14px;
}

/* Mall Content */
.mall-content {
  padding: 20px;
  min-height: 500px;
}

/* Mall Section Header */
.mall-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #f5f0e6, transparent);
  border-left: 4px solid var(--primary-gold);
  border-radius: 0 5px 5px 0;
}

.mall-section-header i {
  font-size: 18px;
}

.mall-section-header span {
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* Item Grid */
.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

/* Mall Item Card */
.mall-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  background: linear-gradient(145deg, #faf8f3, #f0ebe0);
  border: 2px solid #d4c8a8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mall-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 20px rgba(196, 163, 90, 0.3);
}

/* Item Badge */
.item-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 2;
}

.item-badge.new {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4);
}

.item-badge.hot {
  background: linear-gradient(135deg, #e53935, #c62828);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Item Image */
.mall-item .item-image {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 5px;
  background: linear-gradient(145deg, #3d2b1f, #5a3d2a);
  border: 2px solid #7a5a3a;
  border-radius: 5px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mall-item .item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

/* Item Name */
.mall-item .item-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 28px;
  display: flex;
  align-items: center;
}

/* Item Price */
.mall-item .item-price {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  margin-bottom: 10px;
}

.mall-item .item-price i {
  color: #ffc107;
  font-size: 14px;
}

/* Purchase Button */
.btn-purchase {
  width: 100%;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, #8b5a2b, #6b4423);
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-purchase:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  transform: scale(1.05);
}

/* Silk Balance Widget */
.silk-balance-widget .balance-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px 10px;
}

.silk-balance-widget .balance-amount {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-gold-dark);
}

.silk-balance-widget .balance-amount i {
  font-size: 24px;
  color: #ffc107;
}

.btn-add-silk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-add-silk:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gold-light),
    var(--primary-gold)
  );
  color: var(--white);
  transform: translateY(-2px);
}

/* Top Buyers Widget */
.top-buyers .buyers-list {
  padding: 10px;
}

.top-buyers .buyer-row {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  margin-bottom: 5px;
  background: var(--gray-100);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.top-buyers .buyer-row:hover {
  background: var(--pastel-yellow);
}

.top-buyers .buyer-rank {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--primary-gold-dark)
  );
  border-radius: 50%;
  margin-right: 10px;
}

.top-buyers .buyer-row:nth-child(1) .buyer-rank {
  background: linear-gradient(135deg, #ffd700, #ffb700);
}

.top-buyers .buyer-row:nth-child(2) .buyer-rank {
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
}

.top-buyers .buyer-row:nth-child(3) .buyer-rank {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
}

.top-buyers .buyer-name {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.top-buyers .buyer-silk {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-gold-dark);
}

.top-buyers .buyer-silk::after {
  content: " Silk";
  font-weight: 400;
  font-size: 9px;
  color: var(--text-light);
}

/* Responsive Web Mall */
@media (max-width: 992px) {
  .item-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .mall-header {
    flex-direction: column;
    gap: 10px;
  }

  .mall-tabs {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .item-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .mall-item {
    padding: 10px 5px;
  }

  .mall-item .item-image {
    width: 48px;
    height: 48px;
  }

  .mall-item .item-name {
    font-size: 10px;
  }

  .mall-tabs .nav-link {
    padding: 8px 12px;
    font-size: 11px;
  }

  .mall-tabs .nav-link span {
    display: none;
  }
}

/* ===========================================
   MOBILE RESPONSIVE - Header & Navbar Fixes
   =========================================== */

/* Mobile Menu Toggle Button - Hidden by default */
.mobile-menu-toggle {
  display: none;
  background: var(--primary-gold);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  background: var(--primary-gold-dark);
}

.mobile-menu-toggle.active {
  background: var(--primary-gold-dark);
}

.mobile-menu-toggle.active i::before {
  content: "\f00d";
}

/* Mobile Menu Dropdown - Hidden by default on desktop */
.mobile-menu {
  display: none;
}

/* Mobile Menu Active State - Works on all screen sizes when toggled */
.mobile-menu.active {
  display: flex !important;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--gray-300);
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
  background: var(--pastel-yellow);
  color: var(--primary-gold-dark);
  border-left-color: var(--primary-gold);
}

.mobile-menu-item i {
  width: 20px;
  text-align: center;
  color: var(--primary-gold);
  font-size: 16px;
}

.mobile-menu-item.silk {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--primary-gold-dark) 100%
  );
  color: white;
  margin: 10px 15px;
  border-radius: 8px;
  justify-content: center;
  border-left: none;
}

.mobile-menu-item.silk:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gold-light) 0%,
    var(--primary-gold) 100%
  );
  color: white;
}

.mobile-menu-item.silk i {
  color: white;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--gray-300);
  margin: 10px 15px;
}

@media (max-width: 768px) {
  /* Hide top header completely on mobile */
  .top-header {
    display: none !important;
  }

  /* Navbar - Fix position since header is hidden */
  .main-navbar {
    top: 0 !important;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }

  .main-navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
  }

  /* Show mobile toggle button */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Navbar content - simple row layout */
  .navbar-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 15px;
    position: relative;
  }

  /* Hide desktop nav links */
  .nav-left,
  .nav-right {
    display: none !important;
  }

  /* Mobile toggle button - ensure clickable */
  .mobile-menu-toggle {
    position: relative;
    z-index: 1001;
  }

  /* Center logo - absolute positioning for true center */
  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    z-index: 1000;
    pointer-events: auto;
  }

  .nav-center .silkroad-text {
    font-size: 24px;
  }

  /* Main content - adjusted padding */
  .main-content {
    padding-top: 70px !important;
    min-height: calc(100vh - 70px);
  }

  /* Carousel adjustments */
  .carousel-item {
    min-height: 180px;
  }

  .slide-content {
    min-height: 180px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  /* Even more compact for small phones */
  .main-navbar {
    padding: 0;
  }

  .navbar-content {
    padding: 6px 10px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .nav-center .silkroad-text {
    font-size: 20px;
  }

  .mobile-menu-item {
    padding: 10px 15px;
    font-size: 13px;
  }

  /* Content area */
  .main-content {
    padding-top: 60px !important;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Sidebars stack vertically */
  .left-sidebar,
  .right-sidebar {
    margin-bottom: 15px;
  }

  /* Cards and widgets - full width */
  .sidebar-widget {
    border-radius: 6px;
  }

  /* Download button smaller */
  .download-btn {
    padding: 15px 10px;
    font-size: 14px;
  }

  .download-btn i {
    font-size: 24px;
  }

  /* Action grid - 2 columns */
  .action-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .action-item {
    padding: 12px 8px;
    font-size: 8px;
  }

  .action-item i {
    font-size: 18px;
  }
  /* Video background - contain on mobile */
  .video-background video {
    object-fit: cover;
  }

  /* Alert container fix for mobile */
  #alertContainer {
    width: calc(100% - 20px) !important;
    left: 10px !important;
    right: 10px !important;
    top: auto !important;
    bottom: 20px !important;
    max-width: 100% !important;
  }
}
