*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #121212;
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  line-height: 1.6;
}

main {
  width: 100%;
}

section {
  padding: 4rem 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

p {
  color: #bdbdbd;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #7209b7;
}
.main-nav a {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.main-nav a:hover {
  color: #f72585;
}
.main-nav__logo img {
  width: 110px;
  height: auto;
}
@media (min-width: 768px) {
  .main-nav {
    flex-direction: row;
    justify-content: center;
    gap: 6rem;
  }
}

.dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.dashboard__header {
  background: #1e1e1e;
  border: 1px solid rgba(114, 9, 183, 0.4);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.dashboard__header h1 {
  color: #f72585;
  margin-bottom: 0.5rem;
}
.dashboard__header p {
  color: #bdbdbd;
}
.dashboard__eyebrow {
  color: #4895ef;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.dashboard__avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid #f72585;
}
.dashboard__actions {
  display: grid;
  gap: 1rem;
  background: #1e1e1e;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.dashboard__actions a {
  display: block;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(114, 9, 183, 0.2);
  color: #ffffff;
  text-align: center;
  transition: 0.3s ease;
}
.dashboard__actions a:hover {
  background: rgba(247, 37, 133, 0.25);
  color: #f72585;
}
.dashboard__stats {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.dashboard__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
.dashboard__section {
  margin-top: 2rem;
}
.dashboard__section-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.dashboard__section-header h2 {
  color: #f72585;
}
.dashboard__section-header a {
  color: #4895ef;
  font-weight: 600;
}

.dashboard-card,
.event-card,
.request-card,
.empty-state {
  background: #1e1e1e;
  border: 1px solid rgba(114, 9, 183, 0.35);
  border-radius: 12px;
  padding: 1.5rem;
}

.dashboard-card {
  height: fit-content;
}
.dashboard-card h2 {
  color: #f72585;
  margin-bottom: 1rem;
}
.dashboard-card ul {
  display: grid;
  gap: 1rem;
}
.dashboard-card li {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #bdbdbd;
}
.dashboard-card strong {
  color: #ffffff;
}
.dashboard-card a {
  display: inline-block;
  margin-top: 0.7rem;
  color: #4895ef;
  font-weight: 600;
}
.dashboard-card__label {
  display: block;
  color: #bdbdbd;
  margin-bottom: 0.5rem;
}
.dashboard-card__value {
  display: block;
  color: #f72585;
  font-size: 2rem;
}

.event-grid,
.request-list {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  gap: 1rem;
  box-shadow: 0 0 18px rgba(114, 9, 183, 0.15);
}
.event-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.event-card__title {
  margin: 0;
  color: #f72585;
  font-size: 1.15rem;
  font-weight: 800;
}
.event-card__infos {
  display: grid;
  gap: 0.4rem;
  color: #bdbdbd;
}
.event-card__status, .event-card__label, .event-card__hint {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.event-card__status {
  padding: 0.35rem 0.65rem;
  text-transform: uppercase;
}
.event-card__label {
  padding: 0.4rem 0.7rem;
}
.event-card__hint {
  padding: 0.35rem 0.65rem;
  color: #4895ef;
  background: rgba(72, 149, 239, 0.12);
  border: 1px solid rgba(72, 149, 239, 0.35);
}
.event-card__status--valid, .event-card__label--success {
  color: #32d583;
  background: rgba(25, 135, 84, 0.15);
  border: 1px solid rgba(25, 135, 84, 0.35);
}
.event-card__status--pending, .event-card__label--warning {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.35);
}
.event-card__label--info {
  color: #4895ef;
  background: rgba(72, 149, 239, 0.15);
  border: 1px solid rgba(72, 149, 239, 0.35);
}
.event-card__label--danger {
  color: #ff6b6b;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.35);
}
.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}
.event-card__actions a {
  color: #4895ef;
  font-weight: 700;
  text-decoration: none;
}
.event-card__actions a:hover {
  color: #f72585;
  text-decoration: underline;
}
.event-card__refuse-form {
  display: grid;
  gap: 0.6rem;
  width: 100%;
}
.event-card__refuse-form textarea {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  border-radius: 12px;
  border: 1px solid rgba(114, 9, 183, 0.4);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 0.8rem;
}
.event-card__refuse-form textarea::placeholder {
  color: #bdbdbd;
}
.event-card__notice {
  padding: 0.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
}
.event-card__notice--danger {
  color: #ffb3b3;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.35);
}

.request-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.request-card p {
  color: #bdbdbd;
}
.request-card strong {
  color: #ffffff;
}
.request-card__actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.empty-state {
  color: #bdbdbd;
  text-align: center;
}

@media (min-width: 768px) {
  .dashboard {
    padding: 3rem 1.5rem;
  }
  .dashboard__actions {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #f72585, #7209b7);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(247, 37, 133, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(247, 37, 133, 0.55);
}

.btn--secondary {
  background: transparent;
  border: 1px solid #4895ef;
  color: #4895ef;
}
.btn--secondary:hover {
  background: #4895ef;
  color: #121212;
}

.btn--danger {
  background: linear-gradient(135deg, #ff4d6d, #c1121f);
  color: #ffffff;
}
.btn--danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 77, 109, 0.45);
}

.event-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}
.event-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.event-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
}
.event-modal__content {
  position: relative;
  width: min(700px, 90%);
  max-height: 90vh;
  overflow-y: auto;
  background: #1e1e1e;
  border: 1px solid rgba(114, 9, 183, 0.4);
  border-radius: 12px;
  padding: 2rem;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.event-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.event-modal__close:hover {
  color: #f72585;
}
.event-modal__title {
  color: #f72585;
  margin-bottom: 1.5rem;
}
.event-modal__image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.event-modal__description {
  color: #bdbdbd;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.event-modal__infos {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.event-modal__infos li {
  color: #ffffff;
}
.event-modal__infos strong {
  color: #4895ef;
}
.event-modal__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.event-modal__actions .btn-primary {
  min-width: 220px;
}
.event-modal__actions-secondary {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.event-modal__actions-secondary .btn-secondary {
  flex: 1;
  max-width: 170px;
}
.event-modal__loading, .event-modal__error {
  text-align: center;
  color: #bdbdbd;
  padding: 2rem;
}

@media (min-width: 768px) {
  .event-modal__content {
    width: 95%;
    padding: 1.5rem;
  }
  .event-modal__title {
    font-size: 1.5rem;
  }
  .event-modal__actions {
    align-items: flex-end;
  }
  .event-modal__actions .btn-primary {
    width: auto;
    min-width: 180px;
  }
  .event-modal__actions-secondary {
    justify-content: flex-end;
  }
  .event-modal__actions-secondary .btn-secondary {
    flex: initial;
    min-width: 150px;
  }
}
.form {
  width: 100%;
  margin: 2rem auto;
  padding: 1.4rem;
  background: #1e1e1e;
  border: 1px solid rgba(114, 9, 183, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(114, 9, 183, 0.25);
}
.form__title {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #ffffff;
  font-size: 1.6rem;
}
.form__intro {
  margin-bottom: 1.5rem;
  color: #bdbdbd;
  text-align: center;
  line-height: 1.6;
}
.form__group {
  margin-bottom: 1.3rem;
}
.form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: #121212;
  color: #ffffff;
  border: 1px solid rgba(189, 189, 189, 0.3);
  border-radius: 12px;
  font-family: "Exo 2", sans-serif;
  transition: 0.3s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: #f72585;
  box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.2);
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}
.form__checkbox {
  margin: 1rem 0;
}
.form__checkbox label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #bdbdbd;
  cursor: pointer;
}
.form__checkbox input {
  width: auto;
  accent-color: #f72585;
}
.form__actions {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .form {
    max-width: 520px;
    padding: 2rem;
    margin: 3rem auto;
  }
  .form__title {
    font-size: 2rem;
  }
}
.footer {
  padding: 3rem 1rem;
  border-top: 2px solid #7209b7;
  background: rgba(18, 18, 18, 0.95);
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__brand {
  display: inline-block;
}
.footer__logo {
  display: block;
  width: 80px;
  max-width: 80px;
  height: auto;
}
.footer__copyright {
  color: #bdbdbd;
}
.footer__made {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bdbdbd;
}
.footer__heart {
  width: 18px;
  height: 18px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__nav a {
  color: #ffffff;
  transition: 0.3s ease;
}
.footer__nav a:hover {
  color: #f72585;
}

@media (min-width: 768px) {
  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
.events-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.events-page__header {
  text-align: center;
  margin-bottom: 2rem;
}
.events-page__header h1 {
  font-size: 2rem;
  color: #f72585;
  margin-bottom: 1rem;
}
.events-page__header p {
  color: #bdbdbd;
  line-height: 1.6;
}
.events-page__filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.events-page__filters label {
  color: #ffffff;
  font-weight: 600;
}
.events-page__filters select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 2px solid #7209b7;
  background: #1e1e1e;
  color: #ffffff;
  transition: 0.3s ease;
}
.events-page__filters select:focus, .events-page__filters select:hover {
  border-color: #f72585;
}
.events-page__actions {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.events-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.events-page__empty {
  padding: 1.5rem;
  border-radius: 12px;
  background: #1e1e1e;
  color: #bdbdbd;
  text-align: center;
}

.events-section {
  margin-top: 3rem;
}
.events-section h2 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.5rem;
  border-left: none;
  padding-left: 0;
}
.events-section h2 span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.events-section--upcoming h2 span {
  background: rgba(72, 149, 239, 0.18);
  color: #4895ef;
}
.events-section--live h2 span {
  background: rgba(247, 37, 133, 0.18);
  color: #f72585;
}
.events-section--finished h2 span {
  background: rgba(189, 189, 189, 0.18);
  color: #bdbdbd;
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.8rem;
  background: #1e1e1e;
  border: 1px solid rgba(114, 9, 183, 0.35);
  border-radius: 12px;
  transition: 0.3s ease;
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: #f72585;
  box-shadow: 0 15px 35px rgba(114, 9, 183, 0.35);
}
.event-card h3 {
  color: #f72585;
  font-size: 1.35rem;
}
.event-card p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bdbdbd;
}
.event-card p i {
  color: #4895ef;
}
.event-card .btn--secondary {
  margin-top: auto;
}

.events-ranking {
  margin-top: 3rem;
  padding: 2rem;
  background: #1e1e1e;
  border-radius: 12px;
}
.events-ranking h2 {
  text-align: center;
  color: #f72585;
  margin-bottom: 2rem;
}
.events-ranking__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(114, 9, 183, 0.15);
  border-left: 4px solid #f72585;
  border-radius: 12px;
  transition: 0.3s ease;
}
.events-ranking__item:hover {
  background: rgba(114, 9, 183, 0.3);
}
.events-ranking__item strong {
  color: #ffffff;
}
.events-ranking__item span {
  color: #4895ef;
  font-weight: 700;
}

@media (min-width: 768px) {
  .events-page {
    padding: 3rem 1.5rem;
  }
  .events-page__header {
    margin-bottom: 3rem;
  }
  .events-page__header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .events-page__header p {
    font-size: 1.1rem;
  }
  .events-page__filters {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .events-page__filters select {
    width: auto;
  }
  .events-page__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .events-ranking__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.legal {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.legal h1 {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}
.legal h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #f72585;
}
.legal p {
  margin-bottom: 1rem;
}
.legal ul {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 2rem;
  padding-left: 1.2rem;
  list-style: disc;
}
.legal li {
  color: #bdbdbd;
}
.legal a {
  color: #4895ef;
}
.legal a:hover {
  color: #f72585;
}
.legal__actions {
  margin: 2rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .legal {
    padding: 5rem 2rem;
  }
}
.auth {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.auth__form {
  animation: authFadeIn 0.4s ease;
}
.auth__links {
  margin-top: 1.5rem;
  text-align: center;
  color: #bdbdbd;
}
.auth__links p {
  margin-bottom: 0.5rem;
}
.auth__links a {
  color: #4895ef;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}
.auth__links a:hover {
  color: #f72585;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.event-detail {
  padding: 3rem 1rem;
}
.event-detail__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #1e1e1e;
  border: 1px solid rgba(114, 9, 183, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(114, 9, 183, 0.2);
}
.event-detail__title {
  margin-bottom: 2rem;
  text-align: center;
  color: #f72585;
  font-size: 2.3rem;
}
.event-detail__image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.event-detail__description {
  margin-bottom: 2rem;
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 1.05rem;
}
.event-detail__infos {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}
.event-detail__infos li {
  padding: 1rem;
  background: rgba(18, 18, 18, 0.75);
  border-left: 4px solid #4895ef;
  border-radius: 12px;
  color: #ffffff;
}
.event-detail__infos strong {
  color: #4895ef;
}
.event-detail__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.event-detail__actions form {
  display: inline-flex;
}

@media (max-width: 768px) {
  .event-detail {
    padding: 2rem 1rem;
  }
  .event-detail__container {
    padding: 1.5rem;
  }
  .event-detail__title {
    font-size: 1.8rem;
  }
  .event-detail__actions {
    flex-direction: column;
  }
  .event-detail__actions .btn,
  .event-detail__actions form,
  .event-detail__actions form button {
    width: 100%;
  }
}
.profile-page {
  padding: 2rem 1rem;
}
.profile-page__container {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.profile-page__form {
  margin-top: 1.5rem;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
}
.profile-card__avatar {
  width: 130px;
  height: 130px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f72585;
  box-shadow: 0 0 25px rgba(247, 37, 133, 0.35);
  transition: 0.3s ease;
}
.profile-card__avatar:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(114, 9, 183, 0.45);
}
.profile-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-card__title {
  margin-bottom: 0.5rem;
  color: #f72585;
  font-size: 1.8rem;
}
.profile-card__subtitle {
  color: #bdbdbd;
  line-height: 1.6;
}

.profile-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .profile-page {
    padding: 3rem 1rem;
  }
  .profile-card__avatar {
    width: 160px;
    height: 160px;
  }
  .profile-card__title {
    font-size: 2rem;
  }
}
.ranking-page {
  padding: 2rem 1rem;
}
.ranking-page__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #1e1e1e;
  border: 1px solid rgba(114, 9, 183, 0.35);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(114, 9, 183, 0.25);
}
.ranking-page__header {
  text-align: center;
  margin-bottom: 3rem;
}
.ranking-page__header h1 {
  margin: 0.75rem 0 0.5rem;
  color: #f72585;
}
.ranking-page__header p {
  color: #bdbdbd;
}
.ranking-page__icon {
  display: block;
  font-size: 3rem;
}
.ranking-page__empty {
  text-align: center;
  color: #bdbdbd;
  padding: 2rem 0;
}
.ranking-page__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.podium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.podium__card {
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  background: rgba(114, 9, 183, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(114, 9, 183, 0.35);
  transition: 0.3s ease;
  overflow-wrap: anywhere;
}
.podium__card span {
  display: block;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.podium__card h2 {
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
  text-transform: capitalize;
  overflow-wrap: anywhere;
}
.podium__card p {
  color: #4895ef;
  font-weight: 700;
}
.podium__card--first {
  order: 1;
  border-color: rgba(255, 215, 0, 0.65);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.35);
}
.podium__card--second {
  order: 2;
  border-color: rgba(192, 192, 192, 0.5);
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.25);
}
.podium__card--third {
  order: 3;
  border-color: rgba(205, 127, 50, 0.5);
  box-shadow: 0 0 20px rgba(205, 127, 50, 0.25);
}

@media (min-width: 768px) {
  .podium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
  .podium__card {
    min-width: 0;
  }
  .podium__card--second {
    order: 1;
  }
  .podium__card--first {
    order: 2;
  }
  .podium__card--third {
    order: 3;
  }
}
.ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ranking-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(114, 9, 183, 0.12);
  border-left: 4px solid #f72585;
  border-radius: 12px;
  transition: 0.3s ease;
}
.ranking-list__item:hover {
  transform: translateX(5px);
}
.ranking-list__position {
  color: #4895ef;
  font-weight: 700;
}
.ranking-list__player {
  color: #ffffff;
  font-weight: 700;
}
.ranking-list__score {
  color: #f72585;
  font-weight: 700;
}

@media (min-width: 768px) {
  .ranking-page {
    padding: 3rem 1.5rem;
  }
  .ranking-page__header {
    margin-bottom: 4rem;
  }
  .ranking-page__container {
    padding: 3rem;
  }
  .podium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
  }
  .podium__card {
    min-width: 0;
  }
  .podium__card--second {
    order: 1;
  }
  .podium__card--first {
    order: 2;
    transform: translateY(-25px);
    z-index: 2;
  }
  .podium__card--third {
    order: 3;
  }
  .ranking-list__item {
    flex-direction: row;
    align-items: center;
  }
  .ranking-list__position {
    width: 60px;
  }
  .ranking-list__player {
    flex: 1;
    padding: 0 1rem;
  }
}
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background-image: linear-gradient(90deg, rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.45)), linear-gradient(135deg, rgba(247, 37, 133, 0.25), rgba(72, 149, 239, 0.25)), url("/uploads/hero-gaming.jpg");
  background-size: cover;
  background-position: center;
}

.baseline {
  width: min(100%, 850px);
  text-align: center;
}
.baseline__title-fixe {
  display: inline-block;
  margin-bottom: 1rem;
  color: #f72585;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.baseline__banner {
  margin-bottom: 1.5rem;
}
.baseline__title-dynamique {
  display: block;
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(247, 37, 133, 0.5), 0 0 24px rgba(72, 149, 239, 0.4);
}
.baseline__texte {
  display: block;
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #bdbdbd;
  font-size: 1.1rem;
}
.baseline__cta {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .header {
    padding: 6rem 2rem;
  }
  .baseline__title-dynamique {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .header {
    padding: 8rem 2rem;
  }
  .baseline__title-dynamique {
    font-size: 5rem;
  }
}
.presentation {
  padding: 2rem 1rem;
}
.presentation__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.presentation__content {
  text-align: center;
}
.presentation__title {
  margin-bottom: 1rem;
}
.presentation__accent {
  color: #f72585;
}
.presentation__text {
  margin-bottom: 1.5rem;
}
.presentation__image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  margin: 16px auto;
}

@media (min-width: 768px) {
  .presentation__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
  .presentation__content {
    text-align: left;
  }
}
.advantages {
  padding: 2rem 1rem;
}
.advantages__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.advantages__title {
  margin-bottom: 2rem;
  text-align: center;
}
.advantages__grid {
  display: grid;
  gap: 1rem;
}
.advantages__card {
  padding: 1.5rem;
  background: #1e1e1e;
  border-radius: 12px;
}
.advantages__icon {
  font-size: 2rem;
  color: #f72585;
  margin-bottom: 1rem;
}
.advantages__image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .advantages__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .advantages__content {
    order: 2;
  }
  .advantages__image {
    order: 1;
  }
  .advantages__image img {
    height: 420px;
    object-fit: cover;
    margin-top: 6rem;
  }
  .advantages__title {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .advantages__image img {
    height: 460px;
  }
}
.challenges {
  padding: 2rem 1rem;
}
.challenges__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.challenges__content {
  text-align: center;
}
.challenges__subtitle {
  display: block;
  margin-bottom: 1.5rem;
  color: #f72585;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.challenges__list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.challenges__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  background: #1e1e1e;
  border-radius: 12px;
}
.challenges__item i {
  color: #4895ef;
  font-size: 1.3rem;
}
.challenges__image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(247, 37, 133, 0.25), 0 0 40px rgba(72, 149, 239, 0.2);
}

@media (min-width: 768px) {
  .challenges__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
  .challenges__content {
    text-align: left;
  }
  .challenges__item {
    justify-content: flex-start;
  }
  .challenges__text {
    margin: 1.5rem 0;
    color: #bdbdbd;
    line-height: 1.8;
  }
  .challenges .btn-primary {
    margin-top: 1rem;
  }
  .challenges__image img {
    max-height: 500;
    object-fit: cover;
  }
}
.competition {
  padding: 2rem 1rem;
}
.competition__stats {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}
.competition__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: #1e1e1e;
  border-radius: 12px;
  text-align: center;
}
.competition__stat i {
  font-size: 2rem;
  color: #f72585;
  margin-bottom: 1rem;
}
.competition__stat strong {
  font-size: 2rem;
  color: #ffffff;
}
.competition__content {
  text-align: center;
}
.competition__title {
  margin-bottom: 1.5rem;
}
.competition__texte {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.competition__question {
  display: block;
  margin: 1rem;
  color: #f72585;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(247, 37, 133, 0.4);
}

@media (min-width: 768px) {
  .competition__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.games-carousel {
  padding: 2rem 1rem;
}
.games-carousel__title {
  text-align: center;
  margin-bottom: 2rem;
}
.games-carousel__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 1300px;
  margin-inline: auto;
}
.games-carousel__track {
  display: flex;
  gap: 1rem;
  max-width: 1120px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.games-carousel__track::-webkit-scrollbar {
  display: none;
}
.games-carousel__item {
  flex: 0 0 80%;
  scroll-snap-align: start;
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(72, 149, 239, 0.15);
}
.games-carousel__logo {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.games-carousel__content {
  padding: 1rem;
  text-align: center;
}
.games-carousel__name {
  margin-bottom: 0.5rem;
}
.games-carousel__editor {
  color: #bdbdbd;
}
.games-carousel__button {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #7209b7;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
}
.games-carousel__button:hover {
  background: #f72585;
}

@media (min-width: 768px) {
  .games-carousel__item {
    flex-basis: 45%;
  }
}
@media (min-width: 1024px) {
  .games-carousel__item {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
.events {
  padding: 2rem 1rem;
}
.events__title {
  text-align: center;
  margin-bottom: 3rem;
}
.events__empty {
  text-align: center;
}
.events__grid {
  display: grid;
  gap: 2rem;
}

.event-card {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}
.event-card:hover {
  transform: translateY(-5px);
}
.event-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.event-card__content {
  padding: 1.5rem;
}
.event-card__title {
  margin-bottom: 1rem;
}
.event-card__date, .event-card__players {
  margin-bottom: 0.75rem;
}
.event-card__link {
  display: inline-block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .events__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.community {
  padding: 2rem 1rem;
  display: grid;
  gap: 2rem;
}
.community__title {
  margin-bottom: 1rem;
  text-align: center;
}
.community__partners, .community__newsletter {
  padding: 1.5rem;
  background: #1e1e1e;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(72, 149, 239, 0.12);
}
.community__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background: #1e1e1e;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(72, 149, 239, 0.12);
}
.community__image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.community__text {
  margin-bottom: 1.5rem;
}
.community__social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.community__social-links a {
  font-size: 1.6rem;
  color: #ffffff;
  transition: 0.3s ease;
}
.community__social-links a:hover {
  color: #f72585;
  transform: translateY(-3px);
}
.community form {
  display: grid;
  gap: 1rem;
}
.community input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.community input::placeholder {
  color: #bdbdbd;
}

@media (min-width: 768px) {
  .community {
    grid-template-columns: repeat(2, 1fr);
  }
  .community__newsletter {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  .community {
    grid-template-columns: repeat(3, 1fr);
  }
  .community__newsletter {
    grid-column: auto;
  }
}
.about {
  padding: 4rem 1rem;
}
.about__intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  text-align: center;
}
.about__title {
  margin-bottom: 1.5rem;
}
.about__text {
  margin-bottom: 1rem;
}
.about__cards {
  display: grid;
  gap: 1rem;
}
.about__card {
  padding: 1.5rem;
  background: #1e1e1e;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(72, 149, 239, 0.12);
}
.about__icon {
  margin-bottom: 1rem;
  color: #f72585;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .about__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery {
  padding: 2rem 1rem;
}
.gallery__title {
  text-align: center;
  margin-bottom: 1rem;
}
.gallery__subtitle {
  max-width: 650px;
  margin: 0 auto 3rem;
  text-align: center;
}
.gallery__grid {
  display: grid;
  gap: 1.5rem;
}
.gallery__card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 12px;
  background: #1e1e1e;
  box-shadow: 0 0 20px rgba(72, 149, 239, 0.12);
}
.gallery__image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: 0.3s ease;
}
.gallery__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(18, 18, 18, 0.95));
}
.gallery__content h3 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.gallery__content p {
  color: #bdbdbd;
}
.gallery__card:hover .gallery__image {
  transform: scale(1.08);
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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