@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap");

:root {
  --bg: #000000;
  --clr-1: #00c2ff;
  --clr-2: #33ff8c;
  --clr-3: #ffc640;
  --clr-4: #e54cff;

  --blur: 1rem;
  --fs: clamp(3rem, 8vw, 7rem);
  --ls: clamp(-1.75px, -0.25vw, -3.5px);
}

*,
*::before,
*::after {
  font-family: inherit;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: #fff;
  font-family: "Inter", "DM Sans", Arial, sans-serif;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--clr-1);
}

/* Main Content */
main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.title {
  font-size: var(--fs);
  font-weight: 800;
  letter-spacing: var(--ls);
  position: relative;
  overflow: hidden;
  background: var(--bg);
  margin: 0;
  line-height: 1.1;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 400;
  background: linear-gradient(135deg, var(--clr-1), var(--clr-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: darken;
  pointer-events: none;
}

.aurora__item {
  overflow: hidden;
  position: absolute;
  width: 60vw;
  height: 60vw;
  background-color: var(--clr-1);
  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  filter: blur(var(--blur));
  mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
  top: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
  background-color: var(--clr-3);
  right: 0;
  top: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
  background-color: var(--clr-2);
  left: 0;
  bottom: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
  background-color: var(--clr-4);
  right: 0;
  bottom: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
  0% {
    top: 0;
    right: 0;
  }

  50% {
    top: 100%;
    right: 75%;
  }

  75% {
    top: 100%;
    right: 25%;
  }

  100% {
    top: 0;
    right: 0;
  }
}

@keyframes aurora-2 {
  0% {
    top: -50%;
    left: 0%;
  }

  60% {
    top: 100%;
    left: 75%;
  }

  85% {
    top: 100%;
    left: 25%;
  }

  100% {
    top: -50%;
    left: 0%;
  }
}

@keyframes aurora-3 {
  0% {
    bottom: 0;
    left: 0;
  }

  40% {
    bottom: 100%;
    left: 75%;
  }

  65% {
    bottom: 40%;
    left: 50%;
  }

  100% {
    bottom: 0;
    left: 0;
  }
}

@keyframes aurora-4 {
  0% {
    bottom: -50%;
    right: 0;
  }

  50% {
    bottom: 0%;
    right: 40%;
  }

  90% {
    bottom: 50%;
    right: 25%;
  }

  100% {
    bottom: -50%;
    right: 0;
  }
}

@keyframes aurora-border {
  0% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }

  25% {
    border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
  }

  50% {
    border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
  }

  75% {
    border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
  }

  100% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--clr-1), var(--clr-2), var(--clr-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  color: var(--clr-1);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--clr-1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background-color: var(--clr-1);
  color: var(--bg);
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

footer p {
  margin: 0;
}

/* About Page Styles */
.about-main {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.about-hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1), rgba(51, 255, 140, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, var(--clr-1), var(--clr-2), var(--clr-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Vision Section */
.about-vision {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-container h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--clr-1), var(--clr-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* Focus Areas Section */
.focus-areas {
  padding: 4rem 2rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-title {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--clr-2), var(--clr-4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.primary-focus {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.primary-card {
  background: rgba(0, 194, 255, 0.08);
  border: 2px solid rgba(0, 194, 255, 0.3);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.primary-card:hover {
  border-color: var(--clr-1);
  background: rgba(0, 194, 255, 0.15);
}

.secondary-focus {
  max-width: 900px;
  margin: 0 auto;
}

.secondary-card {
  background: rgba(51, 255, 140, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  opacity: 0.9;
}

.secondary-title {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--clr-2), var(--clr-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.focus-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.focus-card h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem 0;
  color: var(--clr-1);
}

.focus-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partnership-focus {
  background: rgba(0, 194, 255, 0.05);
  border-left: 3px solid var(--clr-1);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.partnership-focus h4,
.services-section h4,
.game-focus h4 {
  color: var(--clr-1);
  margin-top: 0;
  font-size: 1rem;
}

.services-section {
  background: rgba(0, 194, 255, 0.05);
  border-left: 3px solid var(--clr-1);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.game-focus {
  background: rgba(51, 255, 140, 0.05);
  border-left: 3px solid var(--clr-2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.game-focus h4 {
  color: var(--clr-2);
}

.game-focus p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.focus-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.focus-list li:last-child {
  border-bottom: none;
}

.focus-list li:before {
  content: "→ ";
  color: var(--clr-2);
  margin-right: 0.5rem;
  font-weight: 600;
}

/* Kingdom Impact Section */
.kingdom-impact {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.impact-container h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--clr-3), var(--clr-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-text {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}

.impact-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(51, 255, 140, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--clr-2);
  background: rgba(51, 255, 140, 0.1);
}

.value-item h4 {
  color: var(--clr-2);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.value-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .title {
    margin: 0 1rem;
  }

  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .contact-details {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-link {
    display: block;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .logo {
    font-size: 1rem;
  }

  .content {
    padding-top: 120px;
  }

  .contact-section {
    padding: 2rem 1rem;
  }
}
