* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

header {
    height: 10vh;
    background-color: rgba(23, 23, 46, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 10000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

a {
    text-decoration: none;
    color: white;
}

img {
    height: 5em;
    padding: 0.5em;
}

body {
    position: relative;
    max-height: 220vh;
    z-index: -2; 
    width: 100%;
    background-color: rgb(9, 6, 31);
}

.img {
    height: 1.2em;
    width: 1.2em;
    padding: 0;
    object-fit: contain;
}

.trophyYellow {
    height: 1.5em;
    width: 1.5em;
    padding: 0;
    object-fit: contain;
}

.currentTournament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
}

.current {
    font-size: 24px;
    color: rgb(74, 144, 226);
    font-weight: bold;
}

.players img {
    margin-left: 0.5rem;
}

main {
    height: 220vh;
    width: 100%;
}
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(99,102,241, 0.6);
    border-radius: 50%;
    animation: floatUp 6s infinite linear;
    z-index: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(calc(100vh + 20px));
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}
.sec-info {
  margin-bottom: 10rem;
  height: 90vh;
  width: 100%;
  position: relative;
  overflow: visible;  
  z-index: 10;        
}

.sec-info::before {
  content: "";
  position: absolute;  
  inset: 0;
  top: -10vh;
  background-image: url('../gif/Girattina.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;            
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(0.15);     
  transform-origin: center;
}

.sec-info::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9.84vh;
  height: 30vh;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(9, 6, 31, 1)  0%,
    rgb(9, 6, 31, 1) 35%,
    rgba(9, 6, 31, 0.3) 85%,
    rgba(9, 6, 31, 0.1)  100%
  );
  transition: opacity .35s ease;
  opacity: 1;
}

.sec-rules {
  height: 60vh;
  position: relative;
  z-index: 5;
}


section {
    scroll-margin-top: 10vh; 
}
.links{
    display: flex;
    justify-content: center;
    align-items: center;
}

