:root {
    --primary-color: #9146FF; /* Violet Twitch */
    --bg-overlay: rgba(13, 13, 15, 0.85); /* Pour rendre le texte lisible sur ton image */
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --font-family: 'Inter', sans-serif; /* Ou ta police Etsy */
}

body {
    margin: 0;
    color: var(--text-main);
    font-family: var(--font-family);
    /* Ton image Etsy */
    background: url('/assets/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

/* Effet de flou global pour la DA */
.planning-page::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-overlay);
    z-index: -1;
}

#app {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Style des cartes de jour */
.day-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px); /* L'effet de flou sur ton image Etsy */
    transition: transform 0.2s ease;
}

.day-card:hover {
    transform: scale(1.02); /* Petit effet de zoom au survol */
    border-color: var(--primary-color);
}

.event-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.box-art {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}