@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url(img1.jpg);
    background-size: cover;
}

.card{
    position: relative; /* position değiştirildi */
    width: 480px;
    color: #fff;
    background: rgba(0, 0, 0, 0.43);
    border-radius: 1rem;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid #ffffff20;
}

.card header{
    cursor: all-scroll;
    text-align: center;
    user-select: none;
    padding: 1.5rem;
    border-bottom: 1px solid #ffffff20;
}

.card .card-body{
    padding: 1.5rem;
    border-bottom: 1px solid #ffffff20;
}

.card .card-body  .logo{
    text-align: center;
}

.card .card-body .logo h4{
    margin-top: 15px;
    font-size: 22px;
}

.card .card-body .logo img{
    max-width: 120px;
}

.card .card-body a{
    display: inline-block;
    background-color: #282828;
    color: #fff;
    text-decoration: none;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 14px;
}

.card .card-body h4{
    margin: 10px 0;
}

.card .card-body ul{
    margin-top: 0;
}

.card footer{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 1rem;
}

.card footer button{
    padding: 0.5rem 1rem;
    outline: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.card footer button.gamesatis{
    background-color: #2d90c9;
    color: #081844;
}
.card footer button.gamesatis a{
    text-decoration: none;
    color: white;
}

.card footer button.gamesatis:hover{
    color: #fff;
}

.card footer button.reset{
    background-color: #fa5e49;
    color: #3a100b;
}

.card footer button.reset:hover{
    color: #fff;
}

.card footer button.youtube{
    background-color: #ff0000;
    color: #5a0b01;
}
.card footer button.youtube a{
    text-decoration: none;
    color: white;
}

.card footer button.youtube:hover{
    color: #fff;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0px;
}

.card {
    border: 1px solid #000;
    padding: 20px;
}
