/*!************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./assets/scss/main.scss ***!
  \************************************************************************************************************************************************************************/
@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #f5f5f5;
  font-size: 1rem;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

.header {
  background-color: #0f0f0f;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
  }
}

.logo {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: #f5f5f5;
}

.nav-menu {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .nav-menu {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.nav-menu li a {
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.nav-menu li a:hover, .nav-menu li a.active {
  background-color: #8B0000;
}

.hero {
  background-image: url("/assets/img/web-header.webp");
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 130px 20px 60px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  z-index: 2;
  position: relative;
}
.hero h1 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #f5f5f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 3rem;
  }
}
.hero h2 {
  font-size: 1.8rem;
  color: #f5f5f5;
  font-weight: 300;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .hero h2 {
    font-size: 1.4rem;
  }
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.6;
  color: #f5f5f5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.content {
  background-color: #1a1a1a;
  padding: 80px 20px;
}
.content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 767px) {
  .features {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.features {
  margin-bottom: 80px;
}

.feature h3 {
  font-size: 2.5rem;
  color: #f5f5f5;
  margin-bottom: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .feature h3 {
    font-size: 2rem;
  }
}
.feature p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
}

.join-community {
  text-align: center;
  background: linear-gradient(135deg, #2a1810, #1a1a1a);
  padding: 60px 80px;
  border-radius: 10px;
}
.join-community h3 {
  font-size: 2.5rem;
  color: #DAA520;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .join-community h3 {
    font-size: 2rem;
  }
}

.register-btn {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
.register-btn:hover {
  opacity: 0.9;
}
.register-btn {
  background-color: #8B0000;
  color: #f5f5f5;
}
.register-btn:hover {
  background-color: #a00000;
}
.register-btn {
  padding: 15px 40px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.page-header {
  background-color: #0f0f0f;
  padding: 130px 20px 60px;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  color: #f5f5f5;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
}
.page-header .subtitle {
  font-size: 1.8rem;
  color: #d0d0d0;
  font-weight: 300;
}

.category-filter {
  background-color: rgba(15, 15, 15, 0.8);
  padding: 30px 0;
  margin-bottom: 60px;
  position: sticky;
  top: 110px;
  z-index: 100;
}
.category-filter .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.category-filter .filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.category-filter .filter-tabs .filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #DAA520;
  color: #DAA520;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.category-filter .filter-tabs .filter-btn:hover, .category-filter .filter-tabs .filter-btn.active {
  background-color: #DAA520;
  color: #0f0f0f;
}
@media (max-width: 767px) {
  .category-filter .filter-tabs .filter-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}

.mods-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .mods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.mod-card {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(218, 165, 32, 0.2);
}
.mod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}
.mod-card .mod-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  align-content: flex-start;
}
.mod-card .mod-image .mod-category {
  background-color: rgba(139, 0, 0, 0.9);
  color: #f5f5f5;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.mod-card .mod-image .mod-featured {
  background-color: rgba(218, 165, 32, 0.9);
  color: #0f0f0f;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.mod-card .mod-image .mod-new {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(16, 185, 129, 0.9);
  color: #f5f5f5;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s;
  animation: pulse-new 2s infinite;
}
.mod-card .mod-image .mod-new:hover {
  background-color: #059669;
  transform: scale(1.05);
}
.mod-card .mod-image .mod-updated {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(59, 130, 246, 0.9);
  color: #f5f5f5;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s;
  animation: pulse-updated 2s infinite;
}
.mod-card .mod-image .mod-updated:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}
.mod-card .mod-content {
  padding: 20px;
}
.mod-card .mod-content .mod-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f5f5f5;
  margin-bottom: 10px;
}
.mod-card .mod-content .mod-title a {
  color: inherit;
  transition: color 0.3s;
}
.mod-card .mod-content .mod-title a:hover {
  color: #DAA520;
}
.mod-card .mod-content .mod-description {
  padding: 30px;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mod-card .mod-content .mod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 12px;
  color: #d0d0d0;
  flex-wrap: wrap;
  gap: 4px;
}
.mod-card .mod-content .mod-meta .mod-version {
  background-color: rgba(218, 165, 32, 0.2);
  color: #DAA520;
  padding: 2px 6px;
  border-radius: 3px;
}
.mod-card .mod-content .mod-meta .mod-release-date {
  background-color: rgba(139, 0, 0, 0.2);
  color: #8B0000;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
}
.mod-card .mod-content .mod-actions {
  display: flex;
  gap: 10px;
}
.mod-card .mod-content .mod-actions .btn {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.mod-card .mod-content .mod-actions .btn.btn-primary {
  background-color: #8B0000;
  color: #f5f5f5;
}
.mod-card .mod-content .mod-actions .btn.btn-primary:hover {
  background-color: #a00000;
}
.mod-card .mod-content .mod-actions .btn.btn-secondary {
  background-color: transparent;
  color: #DAA520;
  border: 1px solid #DAA520;
}
.mod-card .mod-content .mod-actions .btn.btn-secondary:hover {
  background-color: #DAA520;
  color: #0f0f0f;
}

@keyframes pulse-new {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
  }
}
@keyframes pulse-updated {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0);
  }
}
.featured-section {
  background: linear-gradient(135deg, #2a1810, #1a1a1a);
  padding: 80px 20px;
  margin-bottom: 80px;
}
.featured-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.featured-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #DAA520;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mod-detail {
  padding-top: 130px;
}
.mod-detail .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mod-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .mod-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.mod-hero .mod-gallery .main-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.mod-hero .mod-gallery .main-image .mod-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}
.mod-hero .mod-gallery .main-image .mod-badges .badge {
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.mod-hero .mod-gallery .main-image .mod-badges .badge.category {
  background-color: rgba(139, 0, 0, 0.9);
  color: #f5f5f5;
}
.mod-hero .mod-gallery .main-image .mod-badges .badge.featured {
  background-color: rgba(218, 165, 32, 0.9);
  color: #0f0f0f;
}
.mod-hero .mod-gallery .main-image .mod-badges .badge.new {
  background-color: rgba(16, 185, 129, 0.9);
  color: #f5f5f5;
}
.mod-hero .mod-gallery .main-image .mod-badges .badge.updated {
  background-color: rgba(59, 130, 246, 0.9);
  color: #f5f5f5;
}
.mod-hero .mod-gallery .thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
}
.mod-hero .mod-gallery .thumbnail-grid .thumbnail {
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.mod-hero .mod-gallery .thumbnail-grid .thumbnail:hover, .mod-hero .mod-gallery .thumbnail-grid .thumbnail.active {
  opacity: 1;
}
.mod-hero .mod-info .mod-title {
  font-size: 1.8rem;
  color: #f5f5f5;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .mod-hero .mod-info .mod-title {
    font-size: 1.8rem;
  }
}
.mod-hero .mod-info .mod-subtitle {
  font-size: 1.2rem;
  color: #d0d0d0;
  font-weight: 300;
  margin-bottom: 30px;
}
.mod-hero .mod-info .mod-stats {
  background: rgba(15, 15, 15, 0.5);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.mod-hero .mod-info .mod-stats .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}
.mod-hero .mod-info .mod-stats .stat-grid .stat-item .stat-label {
  font-size: 12px;
  color: #d0d0d0;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mod-hero .mod-info .mod-stats .stat-grid .stat-item .stat-value {
  font-weight: bold;
  color: #DAA520;
}
.mod-hero .mod-info .download-section {
  background: linear-gradient(135deg, #2a1810, #1a1a1a);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.mod-hero .mod-info .download-section .download-btn {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
.mod-hero .mod-info .download-section .download-btn:hover {
  opacity: 0.9;
}
.mod-hero .mod-info .download-section .download-btn {
  background-color: #8B0000;
  color: #f5f5f5;
}
.mod-hero .mod-info .download-section .download-btn:hover {
  background-color: #a00000;
}
.mod-hero .mod-info .download-section .download-btn {
  padding: 15px 60px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  width: 100%;
}
.mod-hero .mod-info .download-section .download-btn:hover {
  transform: translateY(-2px);
}
.mod-hero .mod-info .download-section .download-info {
  font-size: 12px;
  color: #d0d0d0;
}
.mod-hero .mod-info .download-section .download-info .file-size {
  display: block;
  margin-bottom: 4px;
}
.mod-hero .mod-info .download-section .download-info .requirements {
  color: #DAA520;
}

.mod-description {
  background: rgba(15, 15, 15, 0.3);
  padding: 60px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.mod-description .section-title {
  font-size: 1.8rem;
  color: #DAA520;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mod-description .description-content {
  color: #f5f5f5;
  line-height: 1.7;
}
.mod-description .description-content p {
  margin-bottom: 20px;
}
.mod-description .description-content p:last-child {
  margin-bottom: 0;
}
.mod-description .description-content ul, .mod-description .description-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.mod-description .description-content ul li, .mod-description .description-content ol li {
  margin-bottom: 10px;
  color: #d0d0d0;
}
.mod-description .description-content ul {
  list-style-type: disc;
}
.mod-description .description-content ol {
  list-style-type: decimal;
}

.mod-features {
  margin-bottom: 40px;
}
.mod-features .features-section,
.mod-features .specs-section {
  background: rgba(26, 26, 26, 0.8);
  padding: 30px;
  border-radius: 10px;
}
.mod-features .features-section .section-title,
.mod-features .specs-section .section-title {
  font-size: 1.2rem;
  color: #DAA520;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mod-features .features-section .feature-list,
.mod-features .specs-section .feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.mod-features .features-section .feature-list .feature-item,
.mod-features .specs-section .feature-list .feature-item {
  padding: 10px 0;
  color: #d0d0d0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}
.mod-features .features-section .feature-list .feature-item:before,
.mod-features .specs-section .feature-list .feature-item:before {
  content: "✓";
  color: #DAA520;
  font-weight: bold;
  margin-right: 10px;
}
.mod-features .features-section .spec-list .spec-item,
.mod-features .specs-section .spec-list .spec-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}
.mod-features .features-section .spec-list .spec-item:last-child,
.mod-features .specs-section .spec-list .spec-item:last-child {
  border-bottom: none;
}
.mod-features .features-section .spec-list .spec-item .spec-label,
.mod-features .specs-section .spec-list .spec-item .spec-label {
  color: #d0d0d0;
}
.mod-features .features-section .spec-list .spec-item .spec-value,
.mod-features .specs-section .spec-list .spec-item .spec-value {
  color: #f5f5f5;
  font-weight: 500;
}

.related-mods .section-title {
  font-size: 1.8rem;
  color: #DAA520;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.related-mods .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
@media (max-width: 767px) {
  .related-mods .related-grid {
    grid-template-columns: 1fr;
  }
}

.breadcrumb {
  padding: 20px 0;
  margin-bottom: 30px;
}
.breadcrumb .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #d0d0d0;
}
.breadcrumb .breadcrumb-nav a {
  color: #DAA520;
  transition: color 0.3s;
}
.breadcrumb .breadcrumb-nav a:hover {
  color: #f5f5f5;
}
.breadcrumb .breadcrumb-nav .separator {
  color: #d0d0d0;
}
