body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #1f4037, #0f2027 70%);
    color:white;
    text-align:center;
    overflow-x:hidden;
}

/* Animación de entrada */
body{
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(15px);}
    to{opacity:1; transform:translateY(0);}
}

header{
    padding:60px 20px;
}

h1{
    font-size:60px;
    margin:0;
    letter-spacing:3px;
    text-shadow:0 0 15px #00ff99;
}

.subtitle{
    font-size:18px;
    opacity:0.85;
    margin-top:10px;
}

.section{
    padding:50px 20px;
}

/* Tarjetas estilo vidrio moderno */
.card{
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,0.2);
    margin:30px auto;
    padding:30px;
    border-radius:20px;
    width:85%;
    max-width:550px;
    box-shadow:0 15px 40px rgba(0,0,0,0.5);
    transition:all 0.3s ease;
}

.card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 50px rgba(0,0,0,0.7);
}

h2{
    margin-bottom:15px;
    color:#00ffcc;
}

/* Botones más impactantes */
button{
    background: linear-gradient(45deg, #00ff99, #00c853);
    border:none;
    padding:14px 28px;
    margin:12px;
    border-radius:30px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:all 0.3s ease;
}

button:hover{
    transform:scale(1.1);
    box-shadow:0 10px 25px rgba(0,255,153,0.6);
}

a{
    text-decoration:none;
}

/* GIF de fondo sin afectar márgenes */
body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("partido.gif") no-repeat center center;
    background-size: 1550px; /* tamaño del gif */
    opacity: 0.12; /* transparencia */
    z-index: -1;
    pointer-events: none;
}

.social{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    margin:15px;
    border-radius:50%;
    font-size:28px;
    color:white;
    transition:0.3s;
}

.ig{
    background:linear-gradient(45deg,#feda75,#d62976,#962fbf,#4f5bd5);
}

.fb{
    background:#1877f2;
}

.social:hover{
    transform:scale(1.2);
    box-shadow:0 10px 25px rgba(0,0,0,0.6);
}

/* Menú */
.menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  gap: 20px;
}

.menu ul li a {
  text-decoration: none;
  color: #d35400;
  font-weight: bold;
  transition: color 0.3s;
}

.menu ul li a:hover {
  color: #e67e22;
}

/* Galería */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

