body {
  background: url(https://www.ea.com/_next/static/media/galaxy-base-bg.da79970e.jpg) no-repeat center center fixed;
  background-size: cover;
  margin: 0px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-container {
  display: flex;
  justify-content: center;
  padding: 15px;
  margin: auto;
  max-width: 1440px;
  width: 100%;
  gap: 15px;
  flex-direction: column;
  align-items: center;
}

span,
a,
p,
h1, h2, h3, h4, h5 {
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.btn--primary {
  padding: 12px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn--primary:hover {
  background-color: #0056b3;
  color: white;
}

.privacy-container {
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 65px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(90deg, rgba(0, 46, 91, 0.95), rgba(0, 75, 150, 0.85));
  z-index: 999;
}

.nav-links {
  display: flex;
  gap: 1rem;
  z-index: 999;
}
.nav-links a {
  position: relative; /* Required for the ::after positioning */
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #ffd600;
  transition: width 0.3s ease;
}

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

.logo {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.logo-icon {
  background-color: #ffffff;
  color: rgb(0, 46, 91);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 1rem;
  z-index: 2;
  white-space: nowrap;
}
.logo-scout {
  position: relative;
  display: inline-block;
  transform: translateX(-100%);
  opacity: 0;
  animation: scout-slide 1.2s ease-out forwards;
  animation-delay: 0.5s;
  z-index: 1;
  white-space: nowrap;
}

@keyframes scout-slide {
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
/* Hide hamburger on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(46deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-48deg) translate(6px, -6px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 65px; /* height of navbar */
    right: 0;
    background-color: rgba(0, 46, 91, 0.95);
    height: calc(100vh - 60px);
    width: 200px;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 0 10px;
  }
  .nav-links.active {
    transform: translateX(0%);
  }
  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }
}
.footer {
  /* Keep your existing footer styles */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(0, 46, 91, 0.95), rgba(0, 75, 150, 0.85));
  margin-top: auto;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.footer .logo {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.footer .logo-icon {
  background-color: #ffffff;
  color: rgb(0, 46, 91);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 1rem;
  z-index: 2;
  white-space: nowrap;
}
.footer .logo-scout {
  position: relative;
  display: inline-block;
  transform: translateX(-100%);
  opacity: 0;
  animation: scout-slide 1.2s ease-out forwards;
  animation-delay: 0.5s;
  z-index: 1;
  white-space: nowrap;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  z-index: 999;
}
.footer-nav__link a {
  position: relative; /* Required for the ::after positioning */
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

@keyframes scout-slide {
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
.developer {
  color: white;
}

@media (max-width: 440px) {
  .footer__container {
    flex-direction: column;
  }
}
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
  padding: 12px 20px;
  border-radius: 12px;
}

.pagination-btn,
.page-btn {
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(2px);
}

.pagination-btn:hover,
.page-btn:hover {
  background-color: rgba(0, 46, 91, 0.4);
  box-shadow: 0 0 8px rgba(0, 46, 91, 0.5);
  transform: translateY(-1px);
}

.page-btn.active {
  background-color: rgba(0, 130, 255, 0.4);
  color: white;
  box-shadow: 0 0 12px rgba(0, 46, 91, 0.8);
}

.ellipsis {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  user-select: none;
}

.search-bar__container {
  background: rgba(0, 75, 150, 0.85);
  padding: 25px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-bar__container h2 {
  color: #fff;
  margin: 0;
  font-size: 24px;
  text-align: center;
}
.search-bar__container .input-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.search-bar__container .input-row-with-warning {
  flex-direction: column;
  gap: 5px;
}
.search-bar__container .input-row-with-warning small {
  color: #ffd600;
}
.search-bar__container .input-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.full-width {
  width: 100%;
}

label {
  color: #eee;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-field {
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  background: #f0f0f0;
}

.form-field:focus {
  background: #fff;
  border: 1px solid #007bff;
}

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

.toggle-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.toggle-btn:hover {
  background-color: #0060c0;
}

.nav-content {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.submit-container {
  display: flex;
  margin-top: 20px;
}

.submit-container button {
  width: 100%;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #eee;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}
.spinner-container {
  text-align: center;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.spinner-container .typewriter {
  color: white;
  white-space: nowrap;
  overflow: hidden;
  height: 30px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.search-result-info {
  color: #ffd600;
  font-weight: bold;
  text-transform: uppercase;
}

.player-tile {
  width: 350px;
  height: 225px;
  perspective: 1000px;
  flex: 0 0 auto;
}
.player-tile-container {
  background: rgba(154, 180, 255, 0.15);
  border-radius: 5px;
  flex-wrap: wrap;
  width: 100%;
  padding: 15px;
  display: flex;
  gap: 15px;
  max-width: 1170px;
  justify-content: center;
}
.player-tile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}
.player-tile-inner.flipped {
  transform: rotateY(180deg);
}
.player-tile-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.player-tile-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.player-tile-front,
.player-tile-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
  color: white;
  display: flex;
  padding: 15px;
  box-sizing: border-box;
}

/* Front face */
.player-tile-front {
  background-image: linear-gradient(to bottom, rgba(155, 155, 155, 0.5), rgba(155, 155, 155, 0.5)), url(https://preview.redd.it/lbzeaws57m061.png?width=640&crop=smart&auto=webp&s=49987abcf97ca3027f465328c898e1c4fcbfccf9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  cursor: pointer;
  z-index: 2;
}

.player-tile-front:hover {
  box-shadow: 0 0 12px 4px rgba(0, 255, 255, 0.6);
}

/* Glimmer */
.player-tile-front::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%);
  transform: skewX(-25deg);
}

.player-tile-front:hover::after {
  animation: glimmer 1s ease-in-out;
}

@keyframes glimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
/* Back face */
.player-tile-back {
  background: url(https://media.istockphoto.com/id/482030962/photo/background-texture-of-rough-asphalt.jpg?s=612x612&w=0&k=20&c=lvOYqEZtrFKa9eDGwM7WNg9aF_vRWOsdEeGcldw89Ow=);
  transform: rotateY(180deg);
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.player-tile-back span {
  z-index: 4;
}

.player-tile-back::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: -1; /* Put the overlay behind the text */
  display: flex;
  flex-direction: column;
}

.player-tile-left__top,
.player-tile-left__bottom {
  display: flex;
  flex-direction: column;
}

.player__picture {
  width: 50px;
  height: 50px;
}

.player__name {
  font-size: 20px;
}

.player__gp strong,
.player__gls strong,
.player__active strong,
.player__allycode strong,
.player__level strong,
.player__timezone strong {
  margin-right: 5px;
}

.player__gac__icon {
  z-index: 1;
  position: absolute;
  left: -100px;
  max-height: 200px;
  opacity: 0.5;
}

.player__gac__div {
  z-index: 2;
  position: absolute;
  left: -35px;
  max-height: 75px;
  opacity: 0.5;
}

.guild__name {
  color: lightgrey;
  font-size: 15px;
}

.danger {
  background: red;
}

.success {
  background: green;
}

.warning {
  background: orange;
}

.probability {
  height: 50px;
  width: 50px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  border-radius: 5px;
  border: solid 3px lightgrey;
  display: flex;
  align-items: center;
  justify-content: center;
}
.probability.high {
  background: #00a700;
}
.probability.very-high {
  background: darkgreen;
}
.probability.low {
  background: red;
}
.probability.normal-high {
  background: #798100;
}
.probability.normal {
  background: orange;
}

/* Responsive styles */
@media (max-width: 375px) {
  .player-tile {
    height: 275px;
  }
}
/* Responsive styles */
@media (max-width: 475px) {
  .player-tile {
    width: 100%;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, rgb(0, 46, 91), rgba(0, 75, 150, 0.95));
  color: white;
  text-align: center;
  padding: 1rem;
  z-index: 1000;
}

.cookie-banner a {
  color: #ffc107;
  text-decoration: underline;
}

.cookie-banner button {
  margin-left: 1rem;
}

.hero-section {
  background: url("/images/galaxy-hero.jpg") center center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}
.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}
.hero-section a {
  text-shadow: none;
}

@media (max-width: 425px) {
  .hero-section {
    padding: 60px 20px;
  }
}
.features-section {
  padding: 60px 0;
  background-color: #121212;
  color: #eee;
  text-align: center;
}
.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.features-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #1f1f1f;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  cursor: pointer;
}
.feature-card h3 {
  margin-bottom: 15px;
  color: #ffd600;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.4;
  color: #ccc;
}

/*# sourceMappingURL=site.css.map */
