body {
    padding-top: 250px;
}

.gameplay-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gameplay-section.slide-in {
    opacity: 1;
    transform: translateY(0);
}

.gameplay-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.gameplay-text {
    flex: 1 1 350px;
    font-family: 'Oswald', Arial, sans-serif;
    text-align: justify;
    font-size: 1.6rem;
    color: #111;
    line-height: 1.5;
    max-width: 540px;
}

.gameplay-note {
    font-size: 1rem;
    margin-top: 2rem;
}

.gameplay-video-wrapper {
    position: relative;
    flex: 1 1 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 340px;
    min-height: 340px;
}

.video-bg-squares {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.square {
    position: absolute;
    border-radius: 0;
    z-index: 1;
}

.square.yellow {
    width: 80%;
    height: 70%;
    background: #fed111;
    top: -40px;
    left: 0px;
}

.square.blue {
    width: 90%;
    height: 70%;
    background: #357abd;
    bottom: -40px;
    right: 0;
}

.video-embed {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 1200px) {
    body {
        padding-top: 150px;
    }
    .gameplay-text {
        font-size: 1.2rem;
    }
    .video-embed {
        max-width: 420px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 100px;
    }
    .gameplay-section {
        padding: 16px 0;
    }
    .gameplay-text {
        font-size: 1rem;
        padding: 0 8px;
        margin-bottom: 20px;
    }
    .gameplay-container {
        gap: 18px;
    }
    .gameplay-video-wrapper {
        min-width: 0;
        min-height: 0;
    }
    .video-embed {
        max-width: 100%;
    }
}