*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Georgia, serif;
    background:linear-gradient(180deg,#1a120b,#2d1d0d,#120d08);
    color:white;
}

header{
    text-align:center;
    padding:60px 20px;
    border-bottom:2px solid #b89040;
}

header h1{
    font-size:60px;
    color:#e2c26d;
    text-shadow:0 0 15px rgba(255,210,100,.5);
}

header p{
    margin-top:15px;
    font-size:22px;
    color:#ddd;
}

nav{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    padding:20px;
    background:#24180d;
}

nav a{
    color:white;
    text-decoration:none;
    padding:10px 18px;
    border:1px solid #8a6a2d;
    border-radius:8px;
    transition:.3s;
}

nav a:hover{
    background:#b89040;
    color:#111;
}

.hero{
    max-width:900px;
    margin:60px auto;
    text-align:center;
    padding:20px;
}

.hero h2{
    font-size:42px;
    color:#f0d27b;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    line-height:1.8;
}

.play-button{
    display:inline-block;
    margin-top:30px;
    padding:18px 35px;
    background:#d5a741;
    color:#111;
    font-weight:bold;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.play-button:hover{
    transform:scale(1.05);
    background:#f0c766;
}

.categories{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    padding:40px;
    max-width:1200px;
    margin:auto;
}

.card{
    background:#2d1d0d;
    border:2px solid #8a6a2d;
    border-radius:15px;
    padding:25px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 20px rgba(255,200,90,.4);
}

.card h3{
    color:#f0d27b;
    margin-bottom:15px;
}

footer{
    text-align:center;
    padding:40px;
    margin-top:60px;
    background:#24180d;
    color:#999;
}

.banner{
    min-height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:
    linear-gradient(rgba(15,10,5,.75),rgba(15,10,5,.75)),
    url("https://images.unsplash.com/photo-1518709268805-4e9042af2176");
    background-size:cover;
    background-position:center;
}

.overlay{
    max-width:850px;
    padding:40px;
}

.overlay h2{
    font-size:55px;
    color:#ffd66b;
    margin-bottom:20px;
}

.overlay p{
    font-size:24px;
    line-height:1.8;
    margin-bottom:40px;
}

.search{

padding:60px 20px;

text-align:center;

background:#18110b;

}

.search h2{

margin-bottom:25px;

color:#f2cb70;

}

.search input{

width:320px;

max-width:90%;

padding:15px;

border-radius:10px;

border:none;

font-size:18px;

margin-bottom:15px;

}

.search button{

padding:15px 30px;

background:#d4a73f;

border:none;

border-radius:10px;

font-weight:bold;

cursor:pointer;

}

.search button:hover{

background:#f0c766;

}

#result{

margin-top:25px;

font-size:20px;

color:#fff;

}