.content-main {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/background_lfa.png');
    background-size: cover;
    background-attachment: fixed;
}

.carousel-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    display: flex;
    align-items: center;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    opacity: 0.5;
    transition: opacity 0.5s;
}

.carousel-item.active {
    opacity: 1;
}

.comp-logo {
    width: 200px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.comp-logo:hover {
    transform: rotateY(180deg);
}

.shiny-btn {
    margin-top: 20px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffd700;
    color: #ffd700;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.shiny-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.carousel-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.admin-link {
    margin-top: 30px;
}

.admin-link a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
}
