body{
margin:0;
font-family:Poppins;
color:white;
background-image:url("gta.jpg");
background-size:cover;
background-position:center;
background-attachment:fixed;
min-height:100vh;
cursor:none;
}

/* cursor */

#cursor{
width:14px;
height:14px;
border-radius:50%;
background:#ff2d8d;
position:fixed;
pointer-events:none;
z-index:9999;
box-shadow:0 0 15px #ff2d8d,0 0 30px #ff2d8d;
transform:translate(-50%,-50%);
}

/* loader */

#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:black;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:9999;
transition:0.6s;
}

#loader.hidden{
opacity:0;
visibility:hidden;
}

.loader-logo{
width:280px;
animation:pulseLogo 2s infinite;
}

@keyframes pulseLogo{
0%{transform:scale(1)}
50%{transform:scale(1.07)}
100%{transform:scale(1)}
}

.loader-bar{
width:260px;
height:6px;
background:#222;
margin-top:20px;
border-radius:20px;
overflow:hidden;
}

.loader-progress{
height:100%;
background:linear-gradient(90deg,#ff2d8d,#ff0055,#ff7b00);
animation:load 3s forwards;
}

@keyframes load{
0%{width:0}
100%{width:100%}
}

/* overlay */

.overlay{
position:fixed;
width:100%;
height:100%;
background:linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0.9));
z-index:-1;
}

/* navbar */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 60px;
}

.nav-logo{
width:120px;
}

.navbar a{
color:white;
text-decoration:none;
margin-left:25px;
}

/* hero */

.hero{
text-align:center;
max-width:800px;
margin:auto;
margin-top:-10px;
padding:0px;
background:rgba(0,0,0,0.45);
border-radius:40px;
backdrop-filter:blur(12px);
}

.logo{
width:350px;
filter:drop-shadow(0 0 30px #ff2d8d);
}

.description{
margin-top:10px;
opacity:0.85;
}

.date{
margin-top:10px;
opacity:0.7;
letter-spacing:2px;
}

/* CONTADOR */

.countdown{
display:flex;
justify-content:center;
gap:30px;
margin-top:25px;
}

.time-box{
background:rgba(0,0,0,0.6);
padding:20px;
border-radius:15px;
min-width:100px;
backdrop-filter:blur(10px);
box-shadow:0 0 20px rgba(255,0,90,0.2);
transition:0.3s;
}

.time-box:hover{
transform:translateY(-5px);
box-shadow:0 0 30px rgba(255,0,90,0.4);
}

.time-box span{
font-size:42px;
font-weight:700;
color:#ff4da6;
display:block;
}

.time-box p{
font-size:12px;
opacity:0.7;
margin-top:5px;
letter-spacing:1px;
}

#countdown-text{
margin-top:15px;
opacity:0.8;
font-size:14px;
}

/* botones */

.button{
display:inline-block;
padding:12px 28px;
background:linear-gradient(135deg,#ff2d8d,#ff0055);
border-radius:40px;
font-weight:600;
transition:0.25s;
margin-top:20px;
box-shadow:0 6px 20px rgba(255,0,90,0.5);
text-decoration:none; 
color:white; 
}

.button:hover{
transform:translateY(-5px) scale(1.05);
}

/* STAFF */

.staff-section{
max-width:1400px;
margin:auto;
padding:60px 20px;
text-align:center;
}

.staff-title{
font-family:Anton;
font-size:60px;
margin-bottom:60px;
}

.staff-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
perspective:1000px;
}

.staff-card{
background:rgba(0,0,0,0.55);
backdrop-filter:blur(12px);
padding:30px;
border-radius:18px;
transition:transform 0.25s ease,box-shadow 0.25s ease;
transform-style:preserve-3d;
}

.staff-card:hover{
box-shadow:0 0 40px rgba(255,20,120,0.8);
}

.staff-card img{
width:100px;
height:100px;
border-radius:50%;
border:3px solid #ff2d8d;
object-fit:cover;
transform:translateZ(30px);
}

.staff-card h3{
margin-top:15px;
transform:translateZ(20px);
}

.role{
font-size:12px;
padding:6px 14px;
border-radius:20px;
transform:translateZ(15px);
}

.owner{background:#ff2d8d}
.admin{background:#ff7b00}

/* partículas */

#particles{
position:fixed;
width:100%;
height:100%;
pointer-events:none;
z-index:-2;
}

.particle{
position:absolute;
width:3px;
height:3px;
background:white;
border-radius:50%;
opacity:0.6;
animation:float linear infinite;
}

@keyframes float{
from{transform:translateY(100vh)}
to{transform:translateY(-10vh)}
}

/* ESTADO ABIERTO */

body.opened .time-box span{
color:#22c55e;
text-shadow:0 0 15px #22c55e, 0 0 30px #22c55e;
animation:glow 1.5s infinite alternate;
}

@keyframes glow{
from{opacity:0.6}
to{opacity:1}
}

/* ========================= */
/* 🔥 DISCORD FLOATING APP */
/* ========================= */

#discord-button{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:linear-gradient(135deg,#5865F2,#404EED);
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
cursor:pointer;
z-index:9999;
box-shadow:0 0 20px rgba(88,101,242,0.6);
transition:0.3s;
opacity:0;
transform:scale(0);
}

body.loaded #discord-button{
opacity:1;
transform:scale(1);
}

#discord-button:hover{
transform:scale(1.1);
box-shadow:0 0 30px rgba(88,101,242,1);
}

#discord-button img{
width:30px;
}

/* PANEL */

#discord-widget{
position:fixed;
bottom:100px;
right:25px;
width:320px;
height:420px;
background:rgba(0,0,0,0.7);
border-radius:20px;
backdrop-filter:blur(15px);
box-shadow:0 0 40px rgba(255,0,90,0.4);
overflow:hidden;
z-index:9998;
transform:translateY(20px);
opacity:0;
pointer-events:none;
transition:0.3s;
}

#discord-widget.active{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

#discord-widget iframe{
width:100%;
height:100%;
border:none;
border-radius:20px;
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */

@media (max-width: 768px){

.navbar{
padding:15px 20px;
}

.nav-logo{
width:90px;
}

.navbar a{
margin-left:15px;
font-size:14px;
}

.hero{
margin-top:20px;
padding:20px;
border-radius:15px;
}

.logo{
width:220px;
}

.description{
font-size:14px;
}

.date{
font-size:12px;
}

.countdown{
gap:10px;
}

.time-box{
padding:12px;
min-width:70px;
}

.time-box span{
font-size:26px;
}

.time-box p{
font-size:10px;
}

#countdown-text{
font-size:12px;
}

.button{
padding:10px 20px;
font-size:14px;
}

.staff-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.staff-card{
padding:20px;
}

.staff-card img{
width:80px;
height:80px;
}

.staff-title{
font-size:40px;
}

#cursor{
display:none;
}

/* Discord responsive */

#discord-widget{
width:90%;
right:5%;
bottom:90px;
}

}

/* móviles pequeños */

@media (max-width: 480px){

.logo{
width:180px;
}

.time-box span{
font-size:22px;
}

.staff-grid{
grid-template-columns:1fr;
}

.staff-title{
font-size:32px;
}

}