:root {
  --primary-color: #71a9d8;
  --secondary-color: #e0f2ff;
  --text-color: #ffffff;
  --light-text-color: #94a3b8;
  --card-bg-color: rgba(15, 15, 15, 0.8);
  --card-shadow: rgba(0, 0, 0, 0.4);
  --hover-glow: #71a9d8;
  --bg-overlay: rgba(0, 0, 0, 0.7);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
  border: 2px solid var(--card-bg-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hover-glow);
}

body {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-family: 'Goldman', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background-color 0.5s ease;
  overflow-y: scroll;

  /* Background Image and Overlay */
  background-image: url('images/background.jpg'); /* Changed image name here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-overlay);
  z-index: -1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: rgba(15, 15, 15, 0.7);
  box-shadow: 0 4px 6px -1px var(--card-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.navbar .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
}

.navbar nav a {
  color: var(--light-text-color);
  text-decoration: none;
  margin-left: 25px;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar nav a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 40px;
  transition: padding 0.5s ease;
}

.title {
  font-size: 3.5em;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(113, 169, 216, 0.2);
  margin-bottom: 10px;
  animation: fadeInDown 1s ease-in-out;
}

.intro {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: var(--light-text-color);
  animation: fadeInUp 1s ease-in-out 0.2s backwards;
}

.description {
  font-size: 1.1em;
  color: var(--light-text-color);
  max-width: 800px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-in-out 0.4s backwards;
}

/* Product Grid and Box Styling */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
}

.product-box {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--card-shadow);
  border: 1px solid #1f1f1f;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.product-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--hover-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  opacity: 0;
  z-index: -1;
}

.product-box:hover::before {
  width: 400px;
  height: 400px;
  opacity: 1;
}

.product-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(113, 169, 216, 0.3);
  border-color: var(--primary-color);
}

.product-box h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.product-box p {
  font-size: 1em;
  color: var(--light-text-color);
}

/* Keyframe Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Pricing Page specific styles */
.pricing-container {
  background-color: var(--card-bg-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--card-shadow);
  border: 1px solid #1f1f1f;
  max-width: 600px;
  width: 100%;
  margin-top: 30px;
}

.pricing-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.pricing-list li {
  font-size: 1.3em;
  color: var(--text-color);
  margin: 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2f0ff;
  transition: all 0.3s ease;
}

.pricing-list li:hover {
  color: var(--primary-color);
  transform: translateX(10px);
}

.pricing-list li strong {
  color: var(--primary-color);
  display: inline-block;
  min-width: 200px;
}
@@ -249,54 +249,48 @@ body::before {
  display: inline-block;
  min-width: 200px;
}


/*
=================================
  Refined Product Box Styles
=================================
*/

.purchase-header {
  text-align: center;
  margin-bottom: 50px;
}

.product-box {
  display: flex;
  flex-direction: column; /* Align content vertically */
  justify-content: space-between; /* Space out content */
  height: 100%; /* Ensure boxes in a row are same height */
}

.product-box h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.product-box p {
  font-size: 1em;
  color: var(--light-text-color);
  flex-grow: 1; /* Allows paragraph to fill available space */
  margin-bottom: 20px;
}

.price {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.buy-button {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Goldman', sans-serif;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.buy-button:hover {
  background-color: var(--hover-glow);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(113, 169, 216, 0.25);
}

/*
=================================
  Purchase Modal Styles
=================================
*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  background-color: var(--card-bg-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 10px 40px var(--card-shadow);
  width: 100%;
  max-width: 500px;
  position: relative;
  animation: slideInUp 0.4s ease-in-out;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--light-text-color);
  font-size: 2em;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: var(--primary-color);
}

.modal-content h2 {
  color: var(--primary-color);
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}

.modal-content p {
  text-align: center;
  color: var(--light-text-color);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.modal-content .order-summary {
  margin-bottom: 20px;
}

.modal-content .summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.4em;
  padding: 15px 0;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
}

.modal-content .form-section {
  margin-bottom: 20px;
}

.modal-content label {
  display: block;
  margin-bottom: 8px;
  color: var(--light-text-color);
}

.modal-content input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #1f1f1f;
  background-color: rgba(0,0,0,0.3);
  color: var(--text-color);
  font-size: 1em;
}

/*
=================================
  Refined Purchase Button Style
=================================
*/

.buy-button {
  background-color: transparent; /* Transparent background by default */
  color: var(--primary-color); /* Text color matches the site's accent */
  border: 2px solid var(--primary-color); /* Outline in the accent color */
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Goldman', sans-serif;
  font-size: 1.1em;
  font-weight: 700; /* Bolder font for better visibility */
  text-transform: uppercase; /* Adds to the tech aesthetic */
  letter-spacing: 1px; /* More spacing for a premium feel */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.buy-button:hover {
  background-color: var(--primary-color); /* Fill with the accent color on hover */
  color: #0f0f0f; /* Dark text for high contrast against the blue background */
  transform: translateY(-3px);
  /* The glow effect matches the product box hover effect */
  box-shadow: 0 0 25px rgba(113, 169, 216, 0.6);
}

/*
=================================
  Social Links Section
=================================
*/

.social-links {
  margin-top: 40px; /* Adds space between the description and the logo */
  text-align: center; /* Ensures the logo container is centered */
}

.discord-link {
  display: inline-block;
  line-height: 0; /* Prevents extra vertical space */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.discord-logo {
  color: var(--light-text-color); /* Initial color matches secondary text */
  width: 48px; /* You can adjust size if needed */
  height: auto;
  transition: color 0.3s ease;
}

.discord-link:hover {
  transform: translateY(-5px); /* Lifts the logo slightly on hover for a nice effect */
}

.discord-link:hover .discord-logo {
  color: var(--primary-color); /* Changes color to your main theme color */
  /* Adds the signature glow to match other interactive elements */
  filter: drop-shadow(0 0 10px rgba(113, 169, 216, 0.7));
}
