@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(15deg);
    }
    20% {
        transform: translateX(100%) rotate(15deg);
    }
    100% {
        transform: translateX(100%) rotate(15deg);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

body {
    background-color: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%) rotate(15deg);
    animation: shine 8s infinite;
    pointer-events: none;
}

.content {
    opacity: 0;
    max-width: 800px;
    padding: 1rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .content {
        padding: 2rem;
    }
}

.client-logo {
    filter: grayscale(100%) brightness(0.5);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
}

.client-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

@media (min-width: 768px) {
    .client-link {
        padding: 1rem;
    }
}

.client-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.date {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Mobile order */
@media (max-width: 767px) {
    .webkitchen {
        order: 3;
    }
    .totalenergies {
        order: 2;
    }
    .qardify {
        order: 1;
    }
} 