@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #7b2cbf; /* Purple - unchanged */
  --secondary: #ffc107; /* Changed from cyan #00f5ff to yellow #FFC107 */
  --tertiary: #ff0055; /* Pinkish-red - unchanged */
  --dark: #0f0c29; /* Dark blue - unchanged */
  --darker: #060420; /* Darker blue - unchanged */
  --light: #e9ecef; /* Light gray - unchanged */
  --accent: #00ffaa; /* Green - unchanged */
  --glow: 0 0 10px rgba(255, 193, 7, 0.7), 0 0 20px rgba(255, 193, 7, 0.4); /* Updated to yellow */
  --neon-text-shadow: 0 0 5px rgba(255, 193, 7, 0.7),
    0 0 10px rgba(255, 193, 7, 0.5), 0 0 20px rgba(255, 193, 7, 0.3); /* Updated to yellow */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", sans-serif;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233f37c9' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"),
    linear-gradient(
      135deg,
      rgba(15, 12, 41, 0.95) 0%,
      rgba(6, 4, 32, 0.95) 100%
    );
  background-blend-mode: overlay;
  z-index: -1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--darker);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top: 4px solid var(--secondary); /* Now yellow */
  animation: spin 1s linear infinite;
  position: relative;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: var(--tertiary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--tertiary);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary); /* Now yellow */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
}

.custom-cursor-follower {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: transform 0.1s;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(
    90deg,
    rgba(123, 44, 191, 0.2) 0%,
    rgba(255, 193, 7, 0.2) 100% /* Updated gradient to yellow */
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  /* font-size: clamp(1.5rem, 4vw, 2.2rem); */
  letter-spacing: 3px;
  color: var(--light);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: relative;
  text-shadow: var(--neon-text-shadow);
}

.logo span {
  color: var(--secondary); /* Now yellow */
}

.logo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary),
    transparent
  ); /* Now yellow */
  transform-origin: right;
}

.logo-icon {
  margin-right: 15px;
  width: clamp(1.2rem, 3vw, 1.8rem); /* Replaces font-size */
  height: auto; /* Maintain aspect ratio */
  color: var(--tertiary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Navigation */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--light);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  transition: transform 0.3s ease;
}

.menu-toggle.active {
  transform: rotate(90deg);
}

nav {
  position: relative;
  width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--secondary); /* Now yellow */
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary); /* Now yellow */
  transition: width 0.3s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links .active a {
  color: var(--secondary); /* Now yellow */
}

.nav-links .active a::before {
  width: 100%;
}

.warpcast-logo {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.nav-links a:hover .warpcast-logo {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 60px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://source.unsplash.com/random/1600x900?space")
    center/cover;
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--darker) 0%,
    rgba(15, 12, 41, 0.3) 50%,
    var(--darker) 100%
  );
  z-index: 1;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to right,
      rgba(255, 193, 7, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 193, 7, 0.1) 1px, transparent 1px); /* Updated to yellow */
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(30deg);
  transform-origin: center;
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  transform: translateY(-50px);
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}

.hero-tag {
  display: inline-block;
  background: rgba(123, 44, 191, 0.3);
  color: var(--secondary); /* Now yellow */
  padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 193, 7, 0.3); /* Updated to yellow */
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive sizing */
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 15px rgba(123, 44, 191, 0.5); /* Subtle glow */
}

.hero-description {
  font-size: clamp(1rem, 3vw, 1.2rem); /* Responsive description */
  margin-bottom: 20px;
  max-width: 600px;
  color: rgba(233, 236, 239, 0.9);
  margin-left: auto;
  margin-right: auto;
}

.hero-info {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.hero-ticker {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--light);
}

.hero-ticker strong {
  color: var(--secondary);
  font-weight: 700;
  text-shadow: var(--neon-text-shadow);
}

.hero-ca {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: rgba(233, 236, 239, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; /* Allows wrapping on small screens */
  justify-content: center;
}

.hero-ca code {
  background: rgba(255, 193, 7, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Orbitron", sans-serif;
  color: var(--secondary);
  letter-spacing: 1px;
  word-break: break-all;
}

.copy-btn {
  background: none;
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--secondary);
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: var(--secondary);
  box-shadow: var(--glow);
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero h1 .highlight {
  color: var(--secondary); /* Now yellow */
  text-shadow: var(--neon-text-shadow);
}

.hero h1 .bg-clip {
  background-image: linear-gradient(
    90deg,
    var(--tertiary),
    var(--secondary) /* Now yellow */
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  color: rgba(233, 236, 239, 0.8);
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 3vw, 30px); /* Responsive padding */
  text-decoration: none;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
  border: 1px solid var(--primary);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary); /* Now yellow */
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: var(--dark);
  border-color: var(--secondary); /* Now yellow */
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-outline {
  background-color: transparent;
  color: var(--secondary); /* Now yellow */
  border: 1px solid var(--secondary); /* Now yellow */
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary); /* Now yellow */
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0.1;
}

.btn-outline:hover {
  color: var(--light);
}

.btn-outline:hover::before {
  width: 100%;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.scroll-down span {
  color: var(--light);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-down i {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--secondary);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Floating Elements */
.floating-element {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(123, 44, 191, 0.2) 0%,
    rgba(255, 193, 7, 0.1) 100% /* Updated to yellow */
  );
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
  top: 20%;
  right: 15%;
  width: 400px;
  height: 400px;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  bottom: 10%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.2) 0%,
    rgba(255, 193, 7, 0.1) 100% /* Updated to yellow */
  );
  animation-delay: -5s;
}

.floating-element:nth-child(3) {
  top: 40%;
  left: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 170, 0.2) 0%,
    rgba(123, 44, 191, 0.1) 100%
  );
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.05);
  }
  50% {
    transform: translate(0, 20px) scale(1);
  }
  75% {
    transform: translate(-20px, -10px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Section Styles */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary); /* Now yellow */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--secondary); /* Now yellow */
}

.section-subtitle::before {
  left: -40px;
}

.section-subtitle::after {
  right: -40px;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--secondary); /* Now yellow */
  text-shadow: var(--neon-text-shadow);
}

.section-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(233, 236, 239, 0.8);
}

/* Spaces Grid */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.space-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(15, 12, 41, 0.8),
    rgba(6, 4, 32, 0.9)
  );
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid rgba(123, 44, 191, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.space-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: var(--secondary); /* Now yellow */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 193, 7, 0.2); /* Updated to yellow */
}

.space-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 193, 7, 0.1) 100% /* Updated to yellow */
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.space-card:hover::before {
  opacity: 1;
}

.space-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.space-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.space-card:hover .space-img img {
  transform: scale(1.1);
}

.space-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(6, 4, 32, 1) 0%,
    rgba(6, 4, 32, 0) 100%
  );
}

.space-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 0, 85, 0.8);
  color: var(--light);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 0, 85, 0.3);
  box-shadow: 0 5px 15px rgba(255, 0, 85, 0.3);
}

.space-badge.ungated {
  background: rgba(0, 255, 170, 0.8);
  color: var(--dark);
  border-color: rgba(0, 255, 170, 0.3);
  box-shadow: 0 5px 15px rgba(0, 255, 170, 0.3);
}

.space-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.space-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.space-card:hover .space-content h3 {
  color: var(--secondary); /* Now yellow */
  text-shadow: var(--neon-text-shadow);
}

.space-content p {
  color: rgba(233, 236, 239, 0.7);
  margin-bottom: 25px;
  font-size: 1rem;
}

.space-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.space-users {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(233, 236, 239, 0.6);
  font-size: 0.9rem;
}

.space-action .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Map Section */
.map-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    0deg,
    rgba(6, 4, 32, 0.9) 0%,
    rgba(15, 12, 41, 0.9) 100%
  );
  overflow: hidden;
}

.map-container {
  background: rgba(15, 12, 41, 0.9);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.2); /* Updated to yellow */
  position: relative;
}

.map-container img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.5s ease;
}

.map-container:hover img {
  transform: scale(1.05);
}

.map-legend {
  margin-top: 30px;
  background: rgba(6, 4, 32, 0.7);
  padding: 20px;
  border-radius: 5px;
  border: 1px solid rgba(123, 44, 191, 0.2);
}

.map-legend h3 {
  color: var(--secondary); /* Now yellow */
  font-family: "Orbitron", sans-serif;
  margin-bottom: 15px;
}

.map-legend ul {
  list-style: none;
}

.map-legend li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: rgba(233, 236, 239, 0.8);
}

.map-legend li strong {
  color: var(--light);
}

.map-legend p {
  margin-top: 15px;
  font-size: 0.9rem;
  color: rgba(233, 236, 239, 0.6);
}

/* Proof Section */
.proof-section {
  padding: 120px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.proof-card {
  background: linear-gradient(
    145deg,
    rgba(15, 12, 41, 0.8),
    rgba(6, 4, 32, 0.9)
  );
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(123, 44, 191, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.proof-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary); /* Now yellow */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.proof-card h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--secondary); /* Now yellow */
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.proof-card ul {
  list-style: none;
}

.proof-card li {
  margin-bottom: 15px;
  font-size: 1rem;
}

.proof-card a {
  color: var(--secondary); /* Now yellow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.proof-card a:hover {
  color: var(--tertiary);
}

.proof-card .btn {
  margin-top: 20px;
  display: inline-block;
}

/* Resources Section */
.resources-section {
  padding: 120px 0;
  background: linear-gradient(
    0deg,
    rgba(6, 4, 32, 0.9) 0%,
    rgba(15, 12, 41, 0.9) 100%
  );
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.resource-card {
  background: linear-gradient(
    145deg,
    rgba(15, 12, 41, 0.8),
    rgba(6, 4, 32, 0.9)
  );
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(123, 44, 191, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.resource-card:hover {
  transform: translateY(-10px) rotate(2deg);
  border-color: var(--secondary); /* Now yellow */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.resource-icon {
  font-size: 2.5rem;
  color: var(--secondary); /* Now yellow */
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.resource-card:hover .resource-icon {
  transform: scale(1.2);
}

.resource-card h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--light);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.resource-card p {
  color: rgba(233, 236, 239, 0.7);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(
    145deg,
    rgba(15, 12, 41, 0.8),
    rgba(6, 4, 32, 0.9)
  );
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(123, 44, 191, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.contact-form:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--light);
  font-size: 1rem;
  font-family: "Rajdhani", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  width: 100%;
  text-align: center;
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(123, 44, 191, 0.2);
  text-align: center;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--light);
  text-shadow: var(--neon-text-shadow);
  margin-bottom: 30px;
}

.footer-logo span {
  color: var(--secondary); /* Now yellow */
}

.social-links {
  margin-bottom: 30px;
}

.social-links a {
  color: var(--light);
  font-size: 1.8rem;
  margin: 0 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.social-links a:hover {
  color: var(--secondary); /* Now yellow */
  transform: scale(1.2);
}

.social-warpcast-logo {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-links a:hover .social-warpcast-logo {
  transform: scale(1.2);
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: rgba(233, 236, 239, 0.8);
  margin: 0 15px;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--secondary); /* Now yellow */
}

.copyright {
  color: rgba(233, 236, 239, 0.5);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 80px; /* Adjust for smaller header */
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 15px;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
  }
  .hero p {
    font-size: 1rem;
  }

  .hero-description {
    margin-bottom: 15px;
  }

  .hero-info {
    gap: 8px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .section-title {
    font-size: 2.2rem;
  }

  /* Navbar Responsiveness */
  header {
    padding: 15px 0;
  }

  .header-content {
    flex-direction: row;
    align-items: center;
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--dark), var(--darker));
    padding: 20px;
    gap: 20px;
    border-top: 1px solid rgba(123, 44, 191, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px;
    font-size: 1.2rem;
  }

  .nav-links a::before {
    bottom: 5px;
  }

  .warpcast-logo {
    margin-right: 10px;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }
  .scroll-down {
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero {
    padding-top: 70px;
  }

  .hero-content {
    padding: 10px;
  }

  .hero-ca {
    flex-direction: column;
    gap: 5px;
  }

  .copy-btn {
    padding: 3px 6px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 12px;
  }
  .warpcast-logo {
    width: 20px;
    height: 20px;
  }
  .social-warpcast-logo {
    width: 24px;
    height: 24px;
  }
}
