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

#site-content{
    filter:blur(10px);
    pointer-events:none;
    user-select:none;
}

body.authenticated #site-content{
    filter:none;
    pointer-events:auto;
    user-select:auto;
}

#auth-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:5000;

}

#age-error{
    color:#ff5555;
    margin-bottom:15px;
    font-size:.9rem;
}

.hidden{
    display:none;
}

.auth-box{

    width:420px;

    max-width:90%;

    background:#1d1d1d;

    border-radius:12px;

    padding:35px;

    text-align:center;

}

.auth-box h1{

    color:#fff;

    margin-bottom:10px;

}

.auth-box p{

    color:#bbb;

    margin-bottom:30px;

}

.auth-tabs{

    display:flex;

    margin-bottom:25px;

}

.tab{

    flex:1;

    background:#333;

    color:white;

}

.tab.active{

    background:#e50914;

}

.auth-box input{

    width:100%;

    margin-bottom:15px;

    padding:14px;

    border:none;

    border-radius:6px;

    background:#2d2d2d;

    color:white;

}

.auth-button{

    width:100%;

    background:#e50914;

    color:white;

    padding:14px;

    font-size:1rem;

}

.hidden{

    display:none;

}

body{
    background:#111;
    color:white;
}

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:rgba(0,0,0,.75);
    z-index:100;
}

.logo{
    color:#e50914;
    font-size:2rem;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

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

nav a:hover{
    color:#e50914;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:2rem;
    cursor:pointer;
}

@media (max-width:768px){

    header{
        padding:20px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#111;
        display:none;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }

}

.hero{
    margin-top:80px;
    height:75vh;
    background:url("/images/heros/hero1.jpg") center/cover;
    display:flex;
    align-items:center;
    padding:60px;
}

.hero-content{
    max-width:600px;
}

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

.hero p{
    line-height:1.6;
    margin-bottom:25px;
}

.buttons{
    display:flex;
    gap:15px;
}

button{
    padding:14px 28px;
    border:none;
    cursor:pointer;
    font-size:1rem;
    border-radius:4px;
}

.play{
    background:white;
    color:black;
}

.info{
    background:#555;
    color:white;
}

section{
    padding:30px 50px;
}

section h2{
    margin-bottom:15px;
}

.row{
    display:flex;
    gap:15px;
    overflow-x:auto;
    scrollbar-width:none;
}

.row::-webkit-scrollbar{
    display:none;
}

.card{
    min-width:250px;
    height:140px;
    border-radius:8px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    transition:.3s;
}

.card:hover{
    transform:scale(1.08);
    z-index:10;
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card-title{
    position:absolute;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,.7);
    padding:10px;
    text-align:center;
}

footer{
    text-align:center;
    padding:40px;
    color:#888;
}

/* Locked website */
#site-content {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease;
}

/* Unlocked after authentication */
#site-content.unlocked {
    filter: none;
    pointer-events: auto;
    user-select: auto;
}
