body {
    font-family: 'RobotoCondensed', sans-serif;
    color: #ffffff;
    background: black;
    margin: 0;
}
@media (max-width: 768px) {
    .section {
        background-attachment: scroll;
        font-size: 0.9rem;
        padding: 3vw;
    }
    .sidebar-1, .sidebar-2 {
        width: 80%;
        height: auto;
    }
}
@font-face {
    font-family: 'RobotoCondensed';
    src: url('RobotoCondensed-Bold.ttf') format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: 'RobotoCondensed';
    src: url('RobotoCondensed-Bold.ttf') format('truetype');
    font-weight: bold;
}
.fade-up {
    opacity: 0;
    transform: translateY(6rem);
    transition: opacity 400ms ease, transform 400ms ease;
}
.in-view {
    opacity: 1;
    transform: translateY(0);
}
.section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5vw;
    position: relative;
}
.section-1 {
    background-image: url(images/deadbydaylightmain.webp);
}
.section-2 {
    background-image: url(images/dbdflashlightsave.jpg);
}
.section-3 {
    background-image: url(images/dbdresidentevil.webp);
}
.section-4 {
    background-image: url(images/deadbydaylightmyers.png);
}
.section h2 {
    font-size: 4rem;
}
.sidebar-1, .sidebar-2{
    width: 60%;
    height: 20vh;
    margin: 2rem auto;
    background-color: #0f0f0f;
    padding: 2rem;
    text-align: center;
    opacity: 0.7;
}
.sidebar-1 p, .sidebar-2 p {
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
}
.platform-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    z-index: 2;
}
.platform-logos img {
    width: 6rem;
    height: auto;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}
.platform-logos img:hover {
    transform: scale(1.1);
    opacity: 1;
}
.button {
    background: #000000;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-family: 'RobotoCondensed', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}