/* Website */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: "Arial", sans-serif;
  background: #0a0a0a;
  color: white;
}

/* Navbar */

nav {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: sticky;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(20, 20, 20, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 40px;
  position: relative;
  z-index: 100;
  gap: 30px;
}

.nav-left {
  left: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  font-weight: 700;
}

.nav-right {
  right: 80px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 700;
}

.logo {
  z-index: 10;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
  cursor: default;
  user-select: none;
}

.shop {
  filter: drop-shadow(0 0 10px orange);
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}

nav a:hover {
  color: orange;
}

.category-filters {
  text-align: center;
  margin-bottom: 20px;
}

.category-filters button {
  background: #222;
  border: none;
  padding: 8px 16px;
  color: #eee;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin: 0 5px 32px 5px;
}

.category-filters button.active,
.category-filters button:hover {
  background: #ff8800;
}

.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #ff8800;
  text-shadow: 0 0 8px rgba(255, 165, 0, 0.8), 0 0 15px rgba(255, 140, 0, 0.6);
}

.card-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.card {
  background: #222;
  color: #fff;
  border-radius: 24px;
  padding: 140px 70px;
  flex: 1 1 0;
  min-width: 250px;
  text-align: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.main-card {
  background: #222;
  border-radius: 32px;
  padding: 40px 0 24px 0;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
}

.main-card-image {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 32px;
  position: relative;
}

.main-card-image img {
  width: 100%;
  max-width: 950px;
  max-height: 80vh;
  border-radius: 30px;
  object-fit: contain;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.carousel-btn {
  background: #ff8800;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: none;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #e67300;
  transform: scale(1.1);
}

.carousel-btn.visible {
  display: flex;
}

.main-card-thumbnails {
  display: flex;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  max-width: 850px;
}

.thumbnail {
  color: #222;
  padding: 8px;
  width: 160px;
  height: 90px;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  background: #333;
}

.small-card-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.small-card {
  background: #222;
  color: #fff;
  border-radius: 18px;
  width: 240px;
  height: 135px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  background-size: cover;
  background-position: center;
  position: relative;
}

.small-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px) scale(1.04);
}

.card-label {
  background: rgba(0, 0, 0, 0.534);
  color: #ff8800;
  border-radius: 12px;
  padding: 8px 16px;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
  width: 90%;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.modal-body {
  display: flex;
  gap: 20px;
  margin: 16px 0;
}

.left-info-column {
  background-color: #2e2d2d;
  border-radius: 20px;
  padding: 20px;
  width: 250px;
  flex-shrink: 0;
}

.left-info-column h3 {
  color: #ff8800;
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: center;
}

.info-item {
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  border-left: 3px solid #ff8800;
}

.right-content-column {
  flex: 1;
}

.info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 20px;
}

.info-title {
  color: #ff8800;
  font-size: 1.3rem;
  font-weight: bold;
  flex: 1;
}

.info-stats {
  color: #ffffff;
  background-color: #2e2d2d;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 0.9rem;
  text-align: right;
  white-space: nowrap;
}

.description-box {
  background-color: #2e2d2d;
  color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.avatar-creator-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.avatar {
  width: 40px;
  height: 40px;
  background-color: #2e2d2d;
  border-radius: 50%;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.creator {
  background-color: #2e2d2d;
  color: #ffffff;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 1rem;
  white-space: nowrap;
}

.bottom-stats {
  color: #ffffff;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 1rem;
  white-space: nowrap;
}

.download-btn {
  position: static;
  margin-left: auto;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff8800, #e67300);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 136, 0, 0.4);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #222;
  margin: 3% auto;
  padding: 20px;
  border-radius: 32px;
  width: 90%;
  max-width: 1000px;
  color: white;
  position: relative;
  max-height: auto;
  overflow: hidden;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 25px;
  user-select: none;
  z-index: 10;
}

.close-button:hover,
.close-button:focus {
  color: #f58301;
  text-decoration: none;
  cursor: pointer;
}

/* Footer */

.footer {
  background-color: #111;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-text {
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.modal-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.modal-socials a {
  display: inline-block;
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.modal-socials a:hover {
  opacity: 1;
}

.modal-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Contact Modal */

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-btn {
  display: block;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn.gmail {
  background: #ff8800;
  color: white;
}

.contact-btn.gmail:hover {
  background: #ff9a27;
}

.contact-btn.discord {
  background: #ff8800;
  color: white;
}

.contact-btn.discord:hover {
  background: #ff9a27;
}

.modal-content1 {
  background: #070707;
  margin: 40px auto;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}
