/* ===========================
RESET
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background:#0f172a;
color:#f8fafc;
min-height:100vh;
}

/* ===========================
CORES
=========================== */

:root{
--bg:#0f172a;
--card:#1e293b;
--card-hover:#334155;
--primary:#22c55e;
--primary-hover:#16a34a;
--secondary:#3b82f6;
--warning:#f59e0b;
--text:#f8fafc;
--muted:#94a3b8;
}

/* ===========================
HEADER
=========================== */

header{
background:#1e293b;
padding:20px 40px;
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid rgba(255,255,255,.05);
position:sticky;
top:0;
z-index:999;
}

.logo{
font-size:28px;
font-weight:700;
color:var(--primary);
}

nav{
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
}

nav a:hover{
color:var(--primary);
}

/* ===========================
HERO
=========================== */

.hero{
padding:80px 20px;
text-align:center;
background:linear-gradient(
135deg,
#22c55e,
#3b82f6
);
}

.hero h1{
font-size:50px;
margin-bottom:15px;
}

.hero p{
font-size:20px;
max-width:700px;
margin:auto;
}

/* ===========================
CONTAINER
=========================== */

.container{
max-width:1400px;
margin:auto;
padding:30px;
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

/* ===========================
CARD DOS JOGOS
=========================== */

.card{
background:var(--card);
border-radius:20px;
padding:25px;
transition:.3s;
box-shadow:
0 10px 25px rgba(0,0,0,.25);
}

.card:hover{
transform:translateY(-5px);
background:var(--card-hover);
}

.card h2{
margin-bottom:20px;
text-align:center;
}

/* ===========================
TIMES
=========================== */

.times{
display:flex;
justify-content:space-between;
align-items:center;
margin:20px 0;
}

.time{
text-align:center;
}

.time img{
width:90px;
height:90px;
object-fit:contain;
background:white;
padding:8px;
border-radius:50%;
}

.time p{
margin-top:10px;
}

.vs{
font-size:30px;
font-weight:bold;
color:var(--warning);
}

/* ===========================
ODDS
=========================== */

.odds{
text-align:center;
margin:20px 0;
}

.odds span{
background:var(--warning);
color:white;
padding:10px 18px;
border-radius:30px;
font-weight:bold;
}

/* ===========================
BOTÃO
=========================== */

.btn{
display:block;
width:100%;
text-align:center;
padding:15px;
border-radius:12px;
text-decoration:none;
font-weight:bold;
background:var(--primary);
color:white;
transition:.3s;
}

.btn:hover{
background:var(--primary-hover);
}

/* ===========================
FORMULÁRIOS
=========================== */

.form-container{
max-width:700px;
margin:40px auto;
background:var(--card);
padding:30px;
border-radius:20px;
}

.form-container h2{
margin-bottom:25px;
}

input,
textarea,
select{
width:100%;
padding:14px;
border:none;
border-radius:10px;
background:#334155;
color:white;
margin-bottom:15px;
}

input:focus,
textarea:focus{
outline:2px solid var(--primary);
}

button{
width:100%;
padding:15px;
border:none;
border-radius:12px;
background:var(--primary);
color:white;
font-size:16px;
cursor:pointer;
}

button:hover{
background:var(--primary-hover);
}

/* ===========================
TABELAS
=========================== */

table{
width:100%;
border-collapse:collapse;
background:var(--card);
border-radius:15px;
overflow:hidden;
}

table th{
background:#334155;
padding:15px;
}

table td{
padding:15px;
border-bottom:1px solid rgba(255,255,255,.05);
}

/* ===========================
FOOTER
=========================== */

footer{
margin-top:60px;
text-align:center;
padding:30px;
color:var(--muted);
}

/* ===========================
RESPONSIVO
=========================== */

@media(max-width:768px){

```
header{
    flex-direction:column;
    gap:15px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.times{
    flex-direction:column;
    gap:20px;
}

.vs{
    font-size:24px;
}

.container{
    grid-template-columns:1fr;
    padding:15px;
}
```

}
