/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #000;
  margin:0;
  padding:0;
  color: white;
  font-family: 'Arial', sans-serif;
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  overflow: visible;
  padding: 1rem 2rem;
}
.logo img {
  font-size: 1.5rem;
  font-weight: bold;
  height:50px;
  width: auto;
  transform: scale(4);
  transform-origin: left center;
  color: #dc3545;
}
.nav-buttons {
  display: flex;
  gap: 1rem;
}
.nav-btn {
  background-color: transparent;
  border: 2px solid #dc3545;
  color: #dc3545;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}
.nav-btn:hover {
  background-color: #dc3545;
  color: black;
}
.nav-btn.discord i {
  margin-right: 6px;

}

/* Thin Red Line */
.red-line {
  height: 2px;
  background-color: #dc3545;
  width: 100%;
}

/* Hero Section */
/* New full-width wrapper for hero */
.hero-wrapper {
  width: 100vw;
  padding: 0;
  margin: 3rem 0 0 0;
  
}

/* Full-width glass panel that wraps both sides */
.hero {
  display: flex;
  justify-content: center;   /* Horizontal center */
  align-items: center;       /* Vertical center */
  padding: 3rem;
  height: 400px;             /* Add fixed height if needed */
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 53, 69, 0.3);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
  text-align: center;
  
}

/* Text section stays the same */
.hero-text {
   flex: 1;
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 2px #dc3545;
  font-weight: 800;
  text-align: center;
}
.hero-text h1:hover {
  text-shadow: 0 0 10px #dc3545;
}
.features-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 4rem; /* 👈 Push it down from previous section */
}

.features-section {
  
  background: rgba(255, 255, 255, 0.03);
  padding: 4rem 2rem;
  text-align: center;
}

.features-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #dc3545;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.features-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 53, 69, 0.3);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
}

.feature-card i {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #bbb;
  font-size: 0.95rem;
}
.tiers-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 5rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.tiers-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #dc3545;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.tiers-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.tier-card {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
}

.tier-card h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tier-devices {
  font-size: 0.95rem;
  color: #dc3545;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(220, 53, 69, 0.3);
  padding-bottom: 0.5rem;
  width: 100px;
}

.tier-features {
  list-style-type: disc;
  padding-left: 1.2rem;
  text-align: left;
  color: #ccc;
}

.tier-features li {
  margin-bottom: 0.75rem;
}
.tier-price {
  font-size: 1.25rem;
  color: #dc3545;
  margin-bottom: 1rem;
  font-weight: bold;
}
.tier-button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 2px solid #dc3545;
  color: #dc3545;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tier-button:hover {
  background-color: #dc3545;
  color: black;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
}
.popular {
  border: 2px solid #dc3545;
  position: relative;
  box-shadow: 0 0 25px rgba(220, 53, 69, 0.3);
}

.popular-tag {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #dc3545;
  color: black;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  z-index: 5;
}
.tiers-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  font-style: italic;
  color: #dc3545;
}
.cta-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(220, 53, 69, 0.2);
  margin-top: 5rem;
}

.cta-heading {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.cta-subheading {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #dc3545;
  background-color: transparent;
  color: #dc3545;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #dc3545;
  color: black;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.4);
}
.site-footer {
  background-color: #000;
  color: #ccc;
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(220, 53, 69, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  max-width: 600px;
  flex: 2;
}

.footer-title {
  color: #dc3545;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #999;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #dc3545;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 2px #dc3545);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

.footer-brand {
  color: #dc3545;
  font-weight: bold;
}
.locations-button {
  background-color: transparent;
  border: 2px solid #dc3545;
  color: #dc3545;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.locations-button:hover {
  background-color: #dc3545;
  color: black;
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.4);
}

.locations-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #111;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  border: 1px solid rgba(220, 53, 69, 0.4);
  text-align: center;
  color: #ccc;
}

.modal-content h3 {
  color: #dc3545;
  margin-bottom: 1rem;
}

.locations-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
  margin-top: 1rem;
}

.locations-list li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

.locations-list li::before {
  content: "•";
  color: #dc3545;
  position: absolute;
  left: 0;
}

.close-btn {
  color: #dc3545;
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1; /* Keep it behind everything */
  top: 0;
  left: 0;
}
.footer-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon img {
  height: 24px;
  width: auto;
  
}
.footer-icon a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-icon a:hover {
  color: #dc3545;
}
.payment-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.payment-label {
  font-size: 0.85rem;
  color: #ccc;
  margin-right: 0.5rem;
}

.payment-logos img {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 0 1px #dc3545);
}

.stripe-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

.stripe-badge img {
  height: 20px;
  width: auto;
}
.paypal-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

.paypal-badge img {
  height: 24px;
  width: auto;
}