*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0d0d0d;
    color:white;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    background:#111;
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#ffcc00;
}

nav a{
    color:white;
    margin-left:20px;
    text-decoration:none;
    transition:0.3s;
}

nav a:hover{
    color:#ffcc00;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    background:linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.8)
    ),
    url('../images/bg.jpg');
    background-size:cover;
}

.hero-content{
    animation:fadeIn 1.2s ease;
}

.hero h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

.buttons{
    margin-top:40px;
}

.btn{
    display:inline-block;
    padding:16px 35px;
    margin:10px;
    border-radius:10px;
    text-decoration:none;
    color:white;
    background:#ff8800;
    transition:0.4s;
}

.btn:hover{
    transform:translateY(-5px);
    background:#ffcc00;
    color:black;
}

.form-container{
    width:100%;
    max-width:500px;
    margin:150px auto;
    background:#161616;
    padding:40px;
    border-radius:20px;
}

.form-container h2{
    margin-bottom:25px;
}

input, select{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:10px;
}

button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#ff8800;
    color:white;
    cursor:pointer;
}

.ticket{
    width:700px;
    margin:100px auto;
    background:white;
    color:black;
    border-radius:20px;
    overflow:hidden;
}

.ticket-header{
    background:#ff8800;
    padding:25px;
    color:white;
}

.ticket-body{
    padding:40px;
}

.ticket-code{
    background:black;
    color:#00ff88;
    padding:15px;
    margin-top:20px;
    border-radius:10px;
    font-size:20px;
}

.admin-card{
    background:#161616;
    padding:30px;
    border-radius:20px;
    margin-bottom:20px;
}

.footer{
    text-align:center;
    padding:40px;
    background:#111;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}