* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}

body {
background: #111;
color: white;
text-align: center;
line-height: 1.6;
}

header {
padding: 40px 20px;
background: #000;
border-bottom: 2px solid #222;
}

header h1 {
font-size: 48px;
margin-bottom: 0px;
font-family: 'Bebas Neue', sans-serif;
font-size: 60px;
letter-spacing: 3px;
text-transform: uppercase;
}

header p {
color: #bbb;
}

.hero {
padding: 60px 20px;
max-width: 700px;
margin: auto;
}

.hero h2 {
font-size: 32px;
margin-bottom: 15px;
}

.hero p {
margin-bottom: 30px;
color: #ccc;
}

.play-btn {
display: inline-block;
padding: 15px 30px;
background: #e50914;
color: white;
text-decoration: none;
font-size: 18px;
border-radius: 6px;
transition: 0.3s;
}

.play-btn:hover {
background: #ff1f2c;
}

.how-it-works {
padding: 60px 20px;
background: #181818;
}

.steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
max-width: 900px;
margin: auto;
margin-top: 30px;
}

.step {
background: #222;
padding: 20px;
border-radius: 10px;
}

.features {
padding: 60px 20px;
}

.features ul {
list-style: none;
max-width: 400px;
margin: auto;
margin-top: 20px;
}

.features li {
padding: 10px;
border-bottom: 1px solid #333;
}

footer {
padding: 30px;
background: black;
color: #777;
font-size: 14px;
}

.game-header{
padding:30px;
background:#000;
border-bottom:2px solid #222;
}

.game-container{
max-width:800px;
margin:auto;
padding:40px 20px;
}

.frame-container{
margin-bottom:30px;
}

.frame-container img{
width:100%;
max-height:450px;
object-fit:cover;
border-radius:10px;
border:3px solid #222;
}

.guess-section{
display:flex;
gap:10px;
justify-content:center;
margin-bottom:20px;
}

#guess-input{
padding:12px;
font-size:16px;
width:60%;
border-radius:5px;
border:none;
}

#guess-btn{
padding:12px 20px;
background:#e50914;
border:none;
color:white;
border-radius:5px;
cursor:pointer;
}

#guess-btn:hover{
background:#ff1f2c;
}

.controls{
margin-bottom:20px;
}

#skip-btn{
padding:10px 20px;
background:#333;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

#skip-btn:hover{
background:#555;
}

.attempts{
margin-top:10px;
color:#aaa;
}

#share-btn{
padding:10px 20px;
background:#1da1f2;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

#share-btn:hover{
background:#0d8ddb;
}

#result-message{
margin-top:20px;
font-size:20px;
font-weight:bold;
}

#countdown{
margin-top:20px;
font-size:18px;
color:#aaa;
}

.input-wrapper{
position: relative;
width: 60%;
}

#suggestions{
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #222;
border-radius: 5px;
max-height: 200px;
overflow-y: auto;
z-index: 10;
}

.suggestion{
padding: 10px;
cursor: pointer;
border-bottom: 1px solid #333;
}

.suggestion:hover{
background:#333;
}
#frame-progress{
font-size: 28px;
letter-spacing: 6px;
margin-top: 10px;
}
