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

body{
    background:#0d1117;
    color:white;
    min-height:100vh;
}

header{
    width:90%;
    margin:30px auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
}

.logo{
    font-size:30px;
    font-weight:bold;
    color:#ff7a00;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    transition:.3s;
}

nav a:hover{
    color:#ff7a00;
}

.hero{
    height:80vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

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

.hero p{
    font-size:24px;
    color:#bdbdbd;
}

.buttons{
    margin-top:40px;
}

button{
    padding:18px 45px;
    border:none;
    border-radius:15px;
    margin:10px;
    background:#ff7a00;
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:scale(1.08);
}

.ip{
    margin-top:30px;
    font-size:22px;
}

.ip span{
    color:#ff7a00;
    font-weight:bold;
}
.custom-navbar{

    background:rgba(20,20,20,.55);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:15px 0;
}

.logo{

    font-size:30px;

    font-weight:700;

    color:white !important;

    text-decoration:none;
}

.logo span{

    color:#ff7a00;
}

.nav-link{

    color:white !important;

    margin-left:20px;

    transition:.3s;
}

.nav-link:hover{

    color:#ff7a00 !important;
}

.steam-login{

    background:#ff7a00;

    color:white;

    text-decoration:none;

    padding:12px 24px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;
}

.steam-login:hover{

    background:#ff8f2b;

    color:white;

    transform:translateY(-2px);
}