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

body{
    font-family: 'Inter', sans-serif;
    background:linear-gradient(
180deg,
#ffffff 0%,
#fafafa 100%
);
    color:#222;
}

.hero{

    min-height:100vh;

    display:flex;
    flex-direction:column;

    padding:40px 8%;
}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:120px;

    position:sticky;
    top:0;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(12px);

    padding:20px 0;

    z-index:999;
}

.logo{

    font-size:28px;

    font-weight:bold;
}

.menu{

    display:flex;

    gap:35px;
}

.menu a{

    color:#333;

    text-decoration:none;

    font-weight:600;
}

.hero-content{

    max-width:700px;
}

.hero h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;
}

.hero p{

    font-size:22px;

    color:#666;

    line-height:1.7;

    margin-bottom:45px;
}

.play-button{

    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#111;

    color:white;

    text-decoration:none;

    padding:18px 34px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.play-button:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.22);

    background:#000;

}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 420px;
    align-items:center;
    gap:80px;
    flex:1;
}

.hero-left h1{
    font-size:72px;
    margin:20px 0;
    line-height:1.05;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:#f3f3f3;
    font-size:14px;
    font-weight:600;
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.dino-placeholder{

    width:320px;
    height:320px;

    border-radius:30px;

    background:#fafafa;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:160px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
