/* ΒΑΣΙΚΟ BACKGROUND */
body {
  margin: 0;
  padding: 0;
  background-color: #001b2b;
  background-image: url("../img/ea_bg.jpg");
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: auto;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

/* Κεντρικό container για τίτλο + λογότυπο */
#slgr_center_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
  padding: 0 15px;
}

/* Premium “card” πίσω από τίτλο + λογότυπο */
#slgr_center_inner {
  background: radial-gradient(circle at top, rgba(255,255,255,0.16), rgba(0,0,0,0.55));
  border-radius: 14px;
  padding: 18px 32px 24px 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  animation: slgr_fade_in 0.9s ease-out both;
}

/* Τίτλος "Super League Greece" */
#slgr_title {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(0,0,0,0.75);
  margin: 0 0 12px 0;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Μικρό υπότιτλο αν τον χρειαστείς */
#slgr_subtitle {
  font-size: 13px;
  color: #e0e7ff;
  opacity: 0.85;
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}

/* Logo κάτω από τον τίτλο */
#slgr_title_logo {
  width: 100px;
  max-width: 80vw;
  height: auto;
  opacity: 0.98;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.75));
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

#slgr_center_inner:hover #slgr_title_logo {
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
}

/* Animation keyframes */
@keyframes slgr_fade_in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ------- BUTTONS SECTION ------- */

#slgr_buttons_section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 90px; /* αφήνουμε χώρο για footer */
}

#slgr_buttons_container {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 260px));
  gap: 20px;
  padding: 0 20px;
}

.slgr_button {
  text-decoration: none;
  color: #ffffff;
  background: rgba(0, 43, 73, 0.92);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
}

.slgr_button_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.slgr_button_subtitle {
  font-size: 13px;
  opacity: 0.88;
}

.slgr_button:hover {
  transform: translateY(-4px);
  background: rgba(0, 70, 110, 0.96);
  border-color: rgba(0, 200, 255, 0.7);
  box-shadow: 0 20px 40px rgba(0,0,0,0.55);
}

/* ------- FOOTER ------- */

#ea_login_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #f1f1f1;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  box-sizing: border-box;
  z-index: 1000;
}

#ea_login_footer a {
  color: #f1f1f1;
  text-decoration: none;
}

#ea_login_footer a:hover {
  text-decoration: underline;
}

#ea_login_footer .ea-left {
  display: flex;
  gap: 8px;
  align-items: center;
}

#ea_login_footer .ea-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ea-social {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ea-social img {
  width: 18px;
  height: 18px;
  display: block;
}

/* -------- Responsive ρυθμίσεις για mobile -------- */

@media (max-width: 992px) {
  #slgr_buttons_container {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  #slgr_center_container {
    margin-top: 25px;
    margin-bottom: 20px;
  }
  #slgr_center_inner {
    padding: 16px 18px 20px 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.60);
  }
  #slgr_title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  #slgr_subtitle {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  #slgr_title_logo {
    width: 110px;
  }
  #ea_login_footer {
    font-size: 11px;
    padding: 8px 12px;
  }
  #ea_login_footer .ea-left,
  #ea_login_footer .ea-right {
    gap: 6px;
  }
  #slgr_buttons_container {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  #slgr_title {
    font-size: 20px;
  }
  #slgr_title_logo {
    width: 95px;
  }
}

/* --- Social Icons Hover Effect --- */
.ea-social a img {
  transition: transform 0.18s ease-out, filter 0.18s ease-out;
}

.ea-social a:hover img {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.25);
}

/* --- Hide social icons on mobile --- */
@media (max-width: 768px) {
  .ea-social {
    display: none;
  }
}