:root {
  --primary-red: #4f0909;
  --primary-gold: #ffcc00;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --light-text: #ffffff;
  --muted-text: #b6bbbf;
  --card-bg: rgba(20, 20, 20, 0.7);
  --warning-color: #ff6b6b;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Andada Pro', serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header & Navigation - Modern Glass Morphism Style */
header {
  background-color: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 204, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: var(--transition);
}

.logo:hover img {
  filter: brightness(1.2);
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-right: 40px;
}

.nav-links a {
  color: var(--muted-text);
  text-decoration: none;
  font-size: 1.05rem;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  padding: 6px 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
  transform-origin: left;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-toggle svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 204, 0, 0.1);
  border-radius: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(5, 5, 5, 0.9);
  border-top: 1px solid rgba(255, 204, 0, 0.1);
  border-left: 1px solid rgba(255, 204, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--muted-text);
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.dropdown-menu a:hover {
  background-color: rgba(79, 9, 9, 0.3);
  color: var(--primary-gold);
}

.dropdown-divider {
  height: 1px;
  background-color: rgba(255, 204, 0, 0.1);
}

/* Modern Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
}

.btn:hover::before {
  width: 100%;
}

.btn-vote {
  background-color: var(--primary-red);
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
}

.btn-vote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(79, 9, 9, 0.4);
}

.btn-discord {
  background-color: #5865f2;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord i {
  font-size: 1.1rem;
}

.btn-large {
  padding: 14px 36px;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* Mobile Menu Toggle - Hamburger Animation */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--muted-text);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
  top: 9px;
}

.menu-toggle span:nth-child(4) {
  top: 18px;
}

.menu-toggle.active span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.menu-toggle.active span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-toggle.active span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

/* Page Title Section */
.page-title-section {
  padding-top: 130px;
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(to bottom, rgba(79, 9, 9, 0.4), transparent);
}

.page-title {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-gold);
}

.page-description {
  max-width: 800px;
  margin: 30px auto 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Video Section */
.video-section {
  padding: 20px 0 60px;
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* Tabs Section */
.tabs-section,
.rules-section,
.priest-section {
  padding: 20px 0 60px;
}

.tabs-container {
  margin-bottom: 40px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.tab-btn {
  padding: 12px 24px;
  background-color: rgba(20, 20, 20, 0.7);
  color: var(--muted-text);
  border: 1px solid rgba(255, 204, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
}

.tab-btn:hover {
  background-color: rgba(79, 9, 9, 0.5);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

.tab-btn.active {
  background-color: var(--primary-red);
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tabs-content {
  background-color: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 204, 0, 0.1);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.tab-panel {
  display: none;
  padding: 40px;
  animation: fadeIn 0.5s ease forwards;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-title {
  color: var(--primary-gold);
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

/* Accordion Styles */
.accordion-container {
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-column {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.accordion-container h3 {
  color: var(--primary-gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-gold);
  font-size: 1.5rem;
}

.accordion-item {
  width: 100%;
  margin-bottom: 10px;
  background-color: rgba(20, 20, 20, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(255, 204, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.accordion-header {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: rgba(20, 20, 20, 0.8);
  transition: var(--transition);
  position: relative;
}

.accordion-header:hover {
  background-color: rgba(79, 9, 9, 0.5);
}

.accordion-header h4 {
  color: var(--primary-gold);
  margin-right: auto;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  margin-left: 5px;
}

.accordion-header .icon {
  color: var(--primary-gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header {
  background-color: var(--primary-red);
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(10, 10, 10, 0.6);
  padding: 0 20px;
  display: none;
}

.accordion-item.active .accordion-content {
  max-height: none;
  padding: 20px;
  display: block;
}

.accordion-content p {
  margin-bottom: 15px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.accordion-content ul li {
  margin-bottom: 5px;
}

/* Two-column layout for desktop */
@media (min-width: 992px) {
  .mod-columns {
    display: flex;
    gap: 30px;
  }
  .mod-column {
    flex: 1;
  }
}

/* Required Mods Section */
.required-mods {
  background-color: rgba(79, 9, 9, 0.2);
  border: 1px solid var(--primary-gold);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.required-mods h3 {
  color: var(--primary-gold);
  margin-bottom: 15px;
  text-align: center;
}

.required-mods ul {
  list-style-type: none;
}

.required-mods li {
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}

.mod-link {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

.mod-link:hover {
  text-decoration: underline;
  color: #ffd633;
}

/* Optional Mods Section */
.optional-mods {
  margin-top: 30px;
}

.optional-mods h3 {
  color: var(--primary-gold);
  margin-bottom: 15px;
  text-align: center;
}

/* Shop Section */
.shop-section {
  padding: 40px 0;
}

.shop-info {
  max-width: 800px;
  margin: 0 auto 30px;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.shop-info h3 {
  color: var(--primary-gold);
  margin-bottom: 15px;
  font-size: 1.5rem;
  border-bottom: 2px solid rgba(255, 204, 0, 0.2);
  padding-bottom: 10px;
}

.shop-info ul,
.shop-info ol {
  padding-left: 30px;
  margin-bottom: 15px;
}

.shop-info ul li,
.shop-info ol li {
  margin-bottom: 10px;
  color: var(--light-text);
}

.shop-info ul li::marker,
.shop-info ol li::marker {
  color: var(--primary-gold);
}

.ko-fi-button {
  display: block;
  max-width: 300px;
  margin: 30px auto;
  text-align: center;
  background-color: var(--primary-red);
  color: var(--primary-gold);
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: var(--transition);
  border: 2px solid var(--primary-gold);
}

.ko-fi-button:hover {
  background-color: rgba(79, 9, 9, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.warning-note {
  background-color: rgba(255, 0, 0, 0.1);
  border-left: 4px solid red;
  padding: 15px;
  margin: 20px 0;
  color: #ff6b6b;
}

/* Weapons Section */
.weapons-section {
  padding: 20px 0 60px;
  background-color: rgba(10, 10, 10, 0.5);
}

.search-box {
  display: flex;
  margin: 0 0 30px;
  max-width: 400px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 204, 0, 0.2);
  background-color: rgba(10, 10, 10, 0.7);
  color: var(--light-text);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.search-box input::placeholder {
  color: var(--muted-text);
}

.search-box label {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-gold);
}

.weapons-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.weapons-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.weapons-table th {
  background-color: var(--primary-red);
  color: var(--primary-gold);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  text-align: center;
}

.weapons-table th:hover {
  background-color: #6b0c0c;
}

.weapons-table th.sorted-asc::after {
  content: '▲';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.weapons-table th.sorted-desc::after {
  content: '▼';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.weapons-table tbody tr:nth-child(even) {
  background-color: rgba(20, 20, 20, 0.5);
}

.weapons-table tbody tr:hover {
  background-color: rgba(79, 9, 9, 0.3);
}

.weapons-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 204, 0, 0.1);
  text-align: center;
}

.weapons-table td:first-child {
  font-weight: 600;
  color: var(--primary-gold);
}

/* Rules Section */
.rules-list {
  list-style-type: none;
}

.rule-item {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.rule-item::before {
  content: '•';
  color: var(--primary-gold);
  position: absolute;
  left: 5px;
  font-size: 1.5rem;
}

.rule-warning {
  color: var(--warning-color);
  font-weight: 600;
  margin-top: 5px;
}

.highlight {
  color: var(--primary-gold);
  font-weight: 600;
}

.notice-box {
  background-color: rgba(79, 9, 9, 0.3);
  border: 1px solid var(--primary-gold);
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

.notice-title {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Priest Section */
.passive-buffs {
  list-style-type: none;
  margin-bottom: 30px;
}

.passive-buffs li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.passive-buffs li::before {
  content: '•';
  color: var(--primary-gold);
  position: absolute;
  left: 5px;
  font-size: 1.5rem;
}

.spells-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.spells-table th {
  background-color: var(--primary-red);
  color: var(--primary-gold);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
}

.spells-table th:first-child {
  border-radius: 8px 0 0 0;
}

.spells-table th:last-child {
  border-radius: 0 8px 0 0;
}

.spells-table tr:nth-child(even) {
  background-color: rgba(20, 20, 20, 0.5);
}

.spells-table tr:hover {
  background-color: rgba(79, 9, 9, 0.3);
}

.spells-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.spells-table td:first-child {
  font-weight: 600;
  color: var(--primary-gold);
}

.spell-note {
  color: var(--warning-color);
  font-style: italic;
  font-size: 0.9rem;
}

.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
  margin: 20px 0;
}

/* Banner Section */
/* Banner Section */
.banner-section {
  width: 100%;
  padding-top: 80px; /* Matches the header height */
  background-color: var(--dark-bg);
  position: relative;
}

.banner-container {
  width: 100%;
  height: 400px; /* Matches the original banner height */
  background-image: url('images/banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px; /* Soft rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
  opacity: 0; /* For fade-in animation */
  animation: fadeIn 1s ease forwards; /* Fade-in animation */
  transition: transform 0.3s ease; /* For hover effects */
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* Slight slide-up effect */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effect */
.banner-container:hover {
  transform: scale(1.02); /* Slight zoom on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-section {
    padding-top: 70px; /* Matches the header height on mobile */
  }
  .banner-container {
    height: 250px; /* Reduced height on mobile */
    background-size: auto 100%; /* Scales the image to fit height, cropping sides */
    background-position: center; /* Keeps the center (logo/text) intact */
    border-radius: 4px; /* Smaller radius on mobile */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Lighter shadow on mobile */
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 200px; /* Further reduced height on very small screens */
  }
}
}

/* Hover effect */
.banner-image:hover {
  transform: scale(1.02); /* Slight zoom on hover */
  filter: brightness(1.1); /* Brighten slightly on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-section {
    padding-top: 70px; /* Matches the header height on mobile */
  }
  .banner-image {
    border-radius: 4px; /* Smaller radius on mobile */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Lighter shadow on mobile */
    max-height: 200px; /* Caps the height on mobile to avoid overwhelming the screen */
    object-fit: cover; /* Ensures the image fits within the max-height */
  }
}

@media (max-width: 480px) {
  .banner-image {
    max-height: 150px; /* Further reduces height on very small screens */
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-section {
    padding-top: 70px; /* Matches the header height on mobile */
  }
  .banner-image {
    border-radius: 4px; /* Slightly smaller radius on mobile */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Lighter shadow on mobile */
  }
}


/* Modern Card Layout */
.server-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 9, 9, 0.2) 0%, rgba(10, 10, 10, 0.9) 100%);
  z-index: -1;
}

.section-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: 1px solid rgba(255, 204, 0, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 204, 0, 0.1);
}

.card-header {
  background: linear-gradient(to right, rgba(79, 9, 9, 0.8), rgba(20, 20, 20, 0.8));
  padding: 25px 30px 20px;
  border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.card-title {
  color: var(--primary-gold);
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.card-subtitle {
  color: var(--light-text);
  font-size: 1rem;
  text-align: center;
  opacity: 0.8;
}

.card-body {
  padding: 30px;
}

/* Modern Feature List */
.feature-list {
  list-style-type: none;
}

.feature-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: flex;
}

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

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-gold);
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  color: var(--primary-gold);
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.feature-description {
  color: var(--light-text);
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Specs Card */
.specs-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.specs-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.specs-section {
  margin-bottom: 30px;
  flex-grow: 1;
}

.specs-section:last-child {
  margin-bottom: 0;
}

.specs-title {
  color: var(--primary-gold);
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.specs-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-red);
}

.specs-description {
  text-align: center;
  margin-bottom: 20px;
  opacity: 0.9;
}

.specs-list {
  list-style-type: none;
}

.specs-item {
  padding: 10px 0 10px 25px;
  position: relative;
  transition: var(--transition);
}

.specs-item::before {
  content: '•';
  color: var(--primary-gold);
  position: absolute;
  left: 5px;
  font-size: 1.2rem;
}

.specs-item:hover {
  transform: translateX(5px);
}

/* Footer */
footer {
  background-color: var(--primary-red);
  position: relative;
  overflow: hidden;
}

.footer-content {
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
}

.footer-text {
  color: var(--primary-gold);
  font-size: 0.95rem;
}

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

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

::-webkit-scrollbar-thumb {
  background-color: var(--primary-red);
  border-radius: 6px;
  border: 3px solid var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6b0c0c;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-title {
    font-size: 2.5rem;
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 3rem;
  }
  .specs-card {
    margin-top: 0;
  }
  .tab-panel {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .header-inner {
    height: 70px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--darker-bg);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 80px 30px;
    z-index: 1000;
  }
  .nav-container.active {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 20px;
    margin: 0 0 40px 0;
    width: 100%;
  }
  .nav-links a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown-menu::before {
    display: none;
  }
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    margin-top: 10px;
  }
  .dropdown-menu a {
    padding: 12px 0;
    opacity: 0.8;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .page-title-section {
    padding-top: 100px;
  }
  .page-title {
    font-size: 2rem;
  }
  .shop-info {
    padding: 15px;
  }
  .hero-section {
    height: 90vh;
  }
  .hero-logo {
    width: 200px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .card-header {
    padding: 20px;
  }
  .card-body {
    padding: 20px;
  }
  .tab-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .tab-panel {
    padding: 20px;
  }
  .spells-table {
    display: block;
    overflow-x: auto;
  }
  .tabs-nav {
    flex-direction: column;
    gap: 10px;
  }
}