* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Ubuntu", sans-serif;
  color: #e0e0e0;
  background: #0d0d0f;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(13, 13, 15, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4aa1f3;
}
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.8rem;
}
.nav-link {
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #4aa1f3;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #e0e0e0;
}

/* Sections */
.section {
  padding: 100px 0;
}
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.home-content {
  text-align: center;
}
.home-title {
  font-size: 3.5rem;
  color: #ffffff;
}
.home-description {
  margin: 1.5rem 0;
  font-size: 1.2rem;
  color: #c0c0c0;
}
.home-buttons .btn {
  margin: 0 0.5rem;
}

.create {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid #4aa1f3;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  background: rgba(74, 161, 243, 0.1);
  color: #4aa1f3;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover {
  background: rgba(74, 161, 243, 0.8);
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.feature-card {
  background: #1a1a1f;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s, background-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  background: #24242b;
}
.feature-title {
  font-size: 1.5rem;
  color: #4aa1f3;
  margin-bottom: 0.8rem;
}
.feature-desc {
  color: #c0c0c0;
}

.about-text {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #cccccc;
}

.footer {
  background: #0b0b0d;
  padding: 2rem 0;
  color: #777;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-links a {
  margin: 0 0.8rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #4aa1f3;
}

.header.scrolled {
  background: rgba(13, 13, 15, 0.35);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 200px;
    height: calc(100% - 60px);
    background: #0d0d0f;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
    transition: right 0.3s;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-toggle {
    display: block;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: #1a1a1f;
  border-radius: 8px;
  padding: 1.5rem;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.review-user {
  font-size: 1rem;
  font-weight: bold;
}
.review-stars {
  margin-left: auto;
  color: #ffd700;
}
.review-text {
  color: #c0c0c0;
  font-size: 0.95rem;
}

.review-text-small {
  color: #c0c0c0;
  font-size: 0.55rem;
}

.affiliates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.affiliate-card {
  background: #1a1a1f;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.affiliate-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}
.affiliate-name {
  font-size: 1.2rem;
  color: #4aa1f3;
  margin-bottom: 0.5rem;
}
.affiliate-desc {
  color: #c0c0c0;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.premium-box {
  background: linear-gradient(135deg, #ff7eb3, #ff758c, #ffda77, #9be15d, #00e3ae, #4aa1f3);
  background-size: 300% 300%;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  animation: gradientMove 8s ease infinite;
}
.premium-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}
.premium-desc {
  color: #f0f0f0;
  margin-bottom: 1rem;
}
.premium-btn {
  border: 2px solid white;
  color: white;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.review-stars .star {
  width: 25px;
  height: 25px;
  margin-right: 0px;
}

.gradient-text {
  background: linear-gradient(270deg, #5ECDFA, #3BA1F9, #006BF7, #3BA1F9, #5ECDFA);
  background-size: 1000% 1000%; /* makes the gradient animate smoothly */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 6s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo.gradient-text {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(270deg, #5ECDFA, #3BA1F9, #006BF7, #3BA1F9, #5ECDFA);
  background-size: 1000% 1000%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 6s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.primeicon {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 6px;
}

.robuxicon {
  width: 27px;
  height: 30px;
  vertical-align: middle;
  margin-right: 2px;
  margin-left: 2px;
}

.prem-btn-outline {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid #FFE711;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  background: rgba(74, 161, 243, 0.1);
  color: #FFE711;
  transition: background 0.3s, color 0.3s;
}
.prem-btn-outline:hover {
  background: rgba(255, 231, 17, 0.8);
  color: #fff;
}

.coming-soon-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-text {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns in first row */
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  background: #070707;
  transition: background 0.3s, color 0.3s;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.team-desc {
  font-size: 0.95rem;
  color: #ddd;
}

.team-apply-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  border: 2px solid #fff; 
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

.team-apply-btn:hover {
  background: #fff;
  color: #1a1a1a;
}

.top-logo {
  height: 128px;
  width: 128px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 2px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6c63ff; /* highlight color */
}

.btn-primary {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #6c63ff, #00c6ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.logo-img {
  height: 37px;
  width: 37px;
  margin-top: 8px;
  vertical-align: top;
}

.orange-gradient-text {
  background: linear-gradient(270deg, #FFA500, #FF8C00, #FF7F50, #FF8C00, #FFA500);
  background-size: 1000% 1000%; /* makes the gradient animate smoothly */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 6s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.port-btn-outline {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid #FFA500;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  background: rgba(255, 165, 0, 0.1);
  color: #FFA500;
  transition: background 0.3s, color 0.3s;
}

.underline-link {
  text-decoration: underline;
  background: linear-gradient(270deg, #FF6EC7, #FF3CAC, #FF1493, #FF69B4, #FF6EC7);
  background-size: 1000% 1000%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 6s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.portfolio-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: -5px;
  margin-left: 17px;
}

.error-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 0px;
}