.final-section {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, #001140 6.71%, rgba(15, 82, 152, 0) 30%),
                url('../images/last_pic.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.final-section-container {
    display: flex;
    flex-grow: 1;
    max-width: 800px;
    margin-top: 150px;
    flex-direction: column;
    align-items: center;
}

.performance-container {
    width: 100%;
    padding: 40px 20px;
    position: relative;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
}

.social-link {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
}

.social-icon {
    width: 34px;
    height: 34px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.divider {
    width: 1px;
    height: 50px;
    background-color: #001140;

}

@media (max-width: 768px) {
    .final-section::before {
        background-position: center center;
    }

    .final-section-container {
        margin-top: 150px;
    }

    .final-section-container h2 {
        padding: 10px 10px;
        font-size: 1.3rem;
    }

    .performance-container {
        padding: 20px;
    }

    .social-links {
        gap: 20px;
        margin-bottom: 10px;
    }

    .divider {
        height: 40px;  /* Adjusted divider height */
    }
}

@media (max-width: 480px) {
    .final-section {
        min-height: 100vh;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .final-section {
        min-height: 100vh;
    }

    .final-section-container {
        margin-top: 40px;
    }
} 