body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(180deg,#000763,#121212,#0a0a0a);
    color:white;
}

main{
    max-width:1000px;
    margin:auto;
    padding:40px;
}

/* HERO */
.hero{
    text-align:center;
    padding:80px 20px;
}

h1{
    font-size:70px;
    letter-spacing:6px;
    margin:0;
}

.tagline{
    opacity:0.8;
    margin-top:10px;
    margin-bottom:30px;
}

/* Wishlist now on steam button yea*/
.btn{
    display:inline-block;
    padding:15px 30px;
    background:#371ab6;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    transition:.2s;
    box-shadow:0 10px 30px rgba(150, 143, 245, 0.69);
}

.btn:hover{
    transform:scale(1.05);
    background:#5950d8;
}

/* SECTIONS */
.block{
    margin-top:60px;
}

h2{
    border-left:4px solid #4460ff;
    padding-left:10px;
}

/* FEATURES LIST */
ul{
    list-style:none;
    padding:0;
}

li{
    padding:10px 0;
    opacity:0.9;
}

/* SCREENSHOTS */
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.img{
    height:150px;
    background:#222;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    opacity:0.8;
}


footer{
    margin-top:80px;
    text-align:center;
    opacity:0.5;
}

img{
    width:300px;
    height:auto;
}

.butao {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    padding: 10px 18px;
    cursor: pointer;
    position: relative;
    transition: color 0.25s;
    transition: transform 0.25s ease;
}

.butao::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: white;
    transform: translateX(-50%);
    transition: width 0.25s;
}

.butao:hover {
    color: #ffffff;
    transform: rotate(-5deg);
}

.butao:hover::after {
    width: 80%;
}

.butao2 {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    padding: 10px 18px;
    cursor: pointer;
    position: relative;
    transition: color 0.25s;
    transition: transform 0.25s ease;
}

.butao2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: white;
    transform: translateX(-50%);
    transition: width 0.25s;
}

.butao2:hover {
    color: #ffffff;
    transform: rotate(-10deg);
}

.butao2:hover::after {
    width: 80%;
}

.butao:active {
   transform:scale(0.97);
}

.butao2:active {
    transform:scale(0.97);
}

.credits-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.credits-page main {
    flex: 1;
}

.credits-page footer {
    text-align: center;
    padding: 20px;
}