html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: white;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background-image.jpg') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.90);
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    text-align: justify; 
    max-width: 40vw; 
    margin: 0 auto; 
    padding: 20px; 
}


@media (max-width: 1300px) {
    .content {
        max-width: 70vw;
    }
}

/* Tabletler için (768px ve üzeri) */
@media (max-width: 1024px) {
    .content {
        max-width: 75vw;
    }
}

/* Mobil cihazlar için (767px ve altı) */
@media (max-width: 767px) {
    .content {
        max-width: 85vw;
    }
}

.logo img {
    max-width: 250px; 
    height: auto;
    margin-bottom: 40px; 
    margin-top: 30px; 
}

.title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center; 
}

.game-title {
    font-size: 36px; 
    font-weight: 700; 
    color: #fcc30b; 
    padding: 15px 20px; 
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    margin-bottom: 20px; 
    animation: blink 1s infinite; 
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.game-title a {
    color: inherit; 
    text-decoration: none; 
}

.description, .game-description {
    font-size: 16px; 
    line-height: 1.4;
    text-align: justify; 
    padding: 20px;
}

.game-description ul {
    list-style-type: disc;
    padding-left: 20px; 
}

.game-description ul li {
    margin-bottom: 10px;
}

.image {
    margin: 30px 0; 
    width: 100%;
}

.image img {
    max-width: 100%;
    height: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 640px; 
    background: #000; 
    margin: 20px 0;
}

#player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.social-icons {
    margin-top: 20px;
    margin-bottom: 50px; 
}

.social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.social-icons a i {
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: #1da1f2;
}

/* Yeni eklenen GIF için stil */
.game-gif {
    margin: 20px 0;
    text-align: center;
}

.game-gif img {
    max-width: 100%;
    height: auto;
}

/* Steam Widget için stil */
.steam-widget {
    margin: 20px 0;
    width: 100%;
    text-align: center; /* Widget'ı ortalayalım */
}

.steam-widget iframe {
    max-width: 100%; /* Widget genişliğini içeriğe göre ayarlayalım */
    width: 640px; /* İsteğe bağlı olarak genişliği ayarlayabilirsiniz */
    height: 190px;
    border: none; /* Kenar çerçevesini kaldıralım */
    margin: 0 auto; /* Ortalayalım */
}


footer {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
}

footer .footer-logo img {
    max-width: 190px;
    height: auto;
    margin-bottom: 10px;
}

footer .footer-text {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}
