

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, Arial;
}

body{
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:white;
}

/* NAVBAR */
 
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
}

.menu{
display:flex;
flex-wrap:wrap;
}

.menu a{
color:white;
margin:6px;
text-decoration:none;
font-size:14px;
}

.menu a:hover{
color:#00e5ff;
} */




navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:24px;
font-weight:bold;
}

.menu{
display:flex;
}

.menu a{
margin:0 10px;
color:white;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.menu a:hover{
color:#00e5ff;
}

.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
}

/* HERO */

.hero{
text-align:center;
padding:80px 20px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
opacity:.8;
}


.menu-btn{
display:none;
font-size:26px;
cursor:pointer;
}

/* MOBILE MENU */

@media(max-width:900px){

.menu{
display:none;
flex-direction:column;
width:100%;
background:#0f2027;
margin-top:10px;
}

.menu a{
padding:12px;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.menu-btn{
display:block;
}

.show{
display:flex;
}

}

/* TITLE */

.page-title{
text-align:center;
padding:30px 10px;
}

.page-title h1{
color:#00e5ff;
}

/* CONTAINER */

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

/* CARD */

.card{
background:rgba(255,255,255,0.08);
border-radius:12px;
padding:20px;
margin-bottom:20px;
border:1px solid rgba(255,255,255,0.1);
overflow:auto;
}

/* TABLE */

.table-wrap{
overflow-x:auto;
}

table{
width:100%;
border-collapse:collapse;

}

table th,table td{
border:1px solid rgba(255,255,255,0.2);
padding:10px;
}

table th{
background:#00e5ff;
color:black;
}

table tr:hover{
background:rgba(255,255,255,0.1);
}

table td a{
    color: #4ade80;
}

/* NOTE */

.note{
background:#fff3cd;
color:black;
padding:10px;
margin-top:10px;
border-radius:6px;
font-size:14px;
}

/* VIDEO */

.video-box{
max-width:600px;
margin:auto;
aspect-ratio:16/9;
}

.video-box iframe{
width:100%;
height:100%;
border:none;
border-radius:10px;
}




footer{
text-align:center;
padding:40px;
margin-top:80px;
background:rgba(0,0,0,0.3);
}
