.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.logo {
    width: 380px;
    height: auto;
}

.coop-title {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    opacity: 0.9;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.logo-animate.pulse {
    animation: pulse 2.5s infinite ease-in-out;
}

.shine {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #333;
}

    .shine::after {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100% );
        animation: shineAnim 5s infinite;
    }

@keyframes shineAnim {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@keyframes zoomInFull {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: scale(15);
        opacity: 0;
        filter: blur(6px);
    }
}

.zoom-in-effect {
    animation: zoomInFull 0.8s ease-in forwards;
    transform-origin: center center;
    z-index: 999;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        flex-direction: column;
    }

    .left-panel, .right-panel {
        padding: 2rem;
        text-align: center;
    }
}