/* General Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(10, 10, 10, 0.9);
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://nzxt.com/assets/cms/34299/1659662249-canvas-lifestyle-4.jpg?auto=format&fit=max&h=900&w=1375') no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-in-out;
}

.hero-description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
  background-color: #ffd700;
  color: #0a0a0a;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.btn:hover {
  transform: scale(1.05);
}

/* Three Images Section */
.image-section {
  padding: 5rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.image-section.active {
  opacity: 1;
  transform: translateY(0);
}

.image-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.image-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* PC Tiers Section */
.pc-tiers-section {
  padding: 5rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.pc-tiers-section.active {
  opacity: 1;
  transform: translateY(0);
}

.pc-tier-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.pc-tier-image {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-tier-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.pc-tier-content {
  flex: 2;
  text-align: left;
}

.pc-tier-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.pc-tier-subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.pc-tier-description {
  font-size: 1.1rem;
  color: #ccc;
}

/* Platelights and Cases Sections */
.platelights-section,
.cases-section {
  padding: 5rem 2rem;
  opacity: 0;
  transform: translateY(20px); /* Slight upward shift for fade-in effect */
  transition: opacity 1s ease, transform 1s ease;
}

.platelights-section.active,
.cases-section.active {
  opacity: 1;
  transform: translateY(0);
}

.slideshow-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%; /* Full width to allow sliding */
}

.slide {
  min-width: 100%; /* Each slide takes up the full width of the container */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 80%; /* Adjust the width of the slide content */
  max-width: 800px; /* Limit the width of the content */
  margin: 0 auto; /* Center the content */
}

.slide-image {
  width: 40%; /* Adjust the image width */
  height: auto;
  border-radius: 10px;
}

.slide-description {
  flex: 1;
  text-align: left;
}

.slide-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.slide-text {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffd700;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.arrow:hover {
  color: #fff;
}

.left-arrow {
  left: 1rem;
}

.right-arrow {
  right: 1rem;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.section.active {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.section-description {
  font-size: 1.2rem;
  color: #ccc;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Gaming Accessories Section */
.gaming-accessories-section {
  padding: 5rem 2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.gaming-accessories-section.active {
  opacity: 1;
}

.gaming-accessories-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gaming-accessories-image {
  width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.gaming-accessories-description {
  flex: 1;
  text-align: left;
  font-size: 1.1rem;
  color: #ccc;
}

/* About Crythonix Section */
.about-section {
  padding: 5rem 2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.about-section.active {
  opacity: 1;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  text-align: left;
}