@import url(global.css);

body {
  font-family: "Arial", sans-serif;
  background-image: url("HeavenlyInferno.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.feet {
  background: linear-gradient(0.25turn, #a3d5ff, #8b4513, #ff0000);
  text-align: center;
  padding: 40px;
  margin-top: 50px;
}
.feet a {
  color: white;
  text-shadow: #000, 20px;
  text-decoration: none;
  font-family: "Papyrus", cursive;
  font-size: x-large;
  margin: 90px;
}
.feet a:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.829);
}

.button {
  position: absolute;
  padding: 20px 50px;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background-color: black;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  animation: pulsate 2s infinite;
  top: 82%;
  margin-left: 40.5%;
}
.button:hover {
  background-color: #333;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}




  body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a0000, #3b0000, #000000, #001e3c, #e0f7ff);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: white;
    text-align: center;
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  h1 {
    margin-top: 90px;
    font-size: 3rem;
    text-shadow: 0 0 10px red;
  }

  .about-text {
    max-width: 800px;
    margin: 40px auto;
    font-size: 1.2rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  }

  .creators-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px auto;
    max-width: 900px;
  }

  .creator-bubble {
    background: linear-gradient(135deg, #5a0000, #1e1e1e);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .creator-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.6);
  }

  .section-title {
    margin-top: 60px;
    font-size: 2rem;
    text-shadow: 0 0 5px #ff5555;
  }

.creator-info {
  display: block;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.9rem;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.creator-info::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(0, 0, 0, 0.9);
}
.creator-bubble:hover .creator-info {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: glow 1s ease-in-out 1;
}
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
  }
}
.inferno-back-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #8b0000, #ff1a1a);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 9999;
}
.inferno-back-btn:hover {
  background: linear-gradient(135deg, #ff1a1a, #8b0000);
  box-shadow: 0 0 20px rgba(255, 80, 80, 0.9);
  transform: scale(1.05);
}
.partner-container {
  margin: 50px auto 80px auto;
  max-width: 900px;
  display: flex;
  justify-content: center;
}


.partner-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-radius: 22px;
  overflow: hidden;

  background: radial-gradient(circle at top left, rgba(255,0,0,0.35), rgba(0,0,0,0.9));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 25px rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}


.partner-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at center, rgba(255,0,0,0.45), transparent 60%);
  opacity: 0.3;
  pointer-events: none;
  transform: scale(0.95);
  filter: blur(10px);
  animation: partnerGlow 4s ease-in-out infinite;
}

@keyframes partnerGlow {
  0% {
    opacity: 0.25;
    transform: scale(0.93);
  }
  50% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.25;
    transform: scale(0.93);
  }
}

.partner-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 35px rgba(255, 60, 60, 0.75);
  border-color: rgba(255,80,80,0.6);
}


.partner-avatar {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.1),
    0 0 18px rgba(255,0,0,0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover .partner-avatar {
  transform: scale(1.06) rotate(-1.5deg);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.18),
    0 0 24px rgba(255,60,60,1);
}

.partner-content {
  position: relative;
  z-index: 1;
  color: white;
}

.partner-name {
  font-size: 1.5rem;
  margin: 0 0 4px 0;
}

.partner-role {
  opacity: 0.85;
  margin: 0 0 14px 0;
  font-size: 0.95rem;
}


.partner-socials {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: space-between;
  width: 100%;
}

.partner-socials a {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;

  background: linear-gradient(135deg, rgba(255,0,0,0.4), rgba(120,0,0,0.8));
  border: 1px solid rgba(255,120,120,0.7);
  box-shadow: 0 0 8px rgba(255,0,0,0.4);

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.partner-socials a:hover {
  transform: translateY(-1px) scale(1.03);
  background: linear-gradient(135deg, rgba(255,60,60,0.9), rgba(150,0,0,1));
  box-shadow: 0 0 14px rgba(255,80,80,0.9);
}




.team-section {
    margin: 60px 0;
    text-align: center;
}

.team-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.member-card {
    background: linear-gradient(145deg, #1a0000, #2a0000);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    min-width: 220px;
}

.member-card.small {
    padding: 15px 20px;
    min-width: 180px;
}

.member-card h3 {
    margin: 0;
    color: #ffffff;
}

.member-card p {
    margin: 5px 0 0 0;
    color: #cccccc;
    font-size: 14px;
}

.sub-title {
    margin-top: 30px;
    color: #aaaaaa;
}