*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#05050a;
color:white;
overflow-x:hidden;
}



/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:70px;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 40px;

background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);

z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
}

.logo img{
width:30px;
}

nav a{
margin-left:20px;
text-decoration:none;
color:white;
opacity:0.8;
}

nav a:hover{
opacity:1;
}



/* HERO */

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;

padding-top:70px;

position:relative;
}

.bg-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to bottom,#000000aa,#05050a);
z-index:-1;
}

.hero-content{
max-width:900px;
}

.hero h1{
display:flex;
flex-direction:column;
gap:10px;
}

.title-main{
font-size:clamp(60px,8vw,120px);
letter-spacing:4px;
}

.title-gradient{
font-size:clamp(60px,8vw,120px);

background:linear-gradient(90deg,#ff00cc,#8a2be2);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}



/* BUTTON */

.btn{

margin-top:25px;

padding:14px 40px;

border:none;
border-radius:40px;

background:linear-gradient(90deg,#ff00cc,#8a2be2,#00c3ff);
background-size:200%;

color:white;
font-weight:bold;

cursor:pointer;

transition:0.4s;

box-shadow:0 0 15px rgba(255,0,200,0.7);
}

.btn:hover{

background-position:right;

transform:scale(1.05);

box-shadow:0 0 30px rgba(255,0,200,1);

}



/* DESCRIPTION */

.description{
padding:120px 20%;
text-align:center;
}



/* VIDEOS */

.videos{
padding:120px 10%;
text-align:center;
}

.video-grid{
margin-top:40px;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

iframe{
width:100%;
height:200px;
border-radius:10px;
border:none;
}



/* ORDER */

.order{
padding:120px 25%;
text-align:center;
}

.order h2{

font-size:40px;
color:white;

text-shadow:
0 0 5px #fff,
0 0 10px #ff00cc,
0 0 20px #ff00cc,
0 0 40px #8a2be2,
0 0 60px #8a2be2;

margin-bottom:40px;

}

form{
margin-top:30px;
display:flex;
flex-direction:column;
gap:20px;
}

input,textarea{
padding:14px;
border:none;
border-radius:8px;
background:#111;
color:white;
}

.video-title{
margin-top:10px;
font-weight:bold;
text-align:center;
}

.video-card{
display:block;
text-decoration:none;
color:white;
transition:0.3s;
}

.video-thumb{
width:100%;
border-radius:12px;
transition:0.3s;
}

.video-title{
margin-top:10px;
font-weight:bold;
text-align:center;
transition:0.3s;
}

.video-card:hover .video-thumb{
transform:scale(1.05);
box-shadow:0 0 25px rgba(255,0,200,0.6);
}

.video-card:hover .video-title{
color:#ff00cc;
text-shadow:0 0 10px #ff00cc;
}

.video-thumb{
width:100%;
border-radius:12px;
object-fit:cover;
aspect-ratio:16/9;
}

.rules-list{
margin-top:20px;
text-align:left;
max-width:700px;
margin-left:auto;
margin-right:auto;
line-height:1.8;
}

.rules-list li{
margin-bottom:10px;
}

.rules-title{

font-size:42px;
color:white;

text-shadow:
0 0 5px #fff,
0 0 10px #ff00cc,
0 0 20px #ff00cc,
0 0 40px #8a2be2,
0 0 60px #8a2be2;

margin-bottom:20px;
text-align:center;

}

.login-btn{

padding:8px 18px;
font-size:14px;

border:none;
border-radius:20px;

background:linear-gradient(90deg,#5865F2,#8a2be2);

color:white;
font-weight:bold;

cursor:pointer;

transition:0.3s;

box-shadow:0 0 8px rgba(138,43,226,0.6);

}

.login-btn:hover{

transform:scale(1.05);
box-shadow:0 0 15px rgba(138,43,226,1);

}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:70px;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 40px;

background:rgba(0,0,0,0.65);
backdrop-filter:blur(12px);

z-index:1000;
}

/* keep logo on left */
.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
}

/* navigation area */
nav{
display:flex;
align-items:center;
gap:20px;
}

.discord-user{

display:flex;
align-items:center;
gap:10px;

background:rgba(255,255,255,0.05);
padding:6px 12px;
border-radius:20px;

}

.discord-user img{

width:32px;
height:32px;
border-radius:50%;

box-shadow:0 0 10px rgba(138,43,226,0.7);

}

.discord-user span{
font-weight:bold;
}
