* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fallingSpin {
    0% {
        top: -50px;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        top: 100vh;
        transform: rotate(360deg);
        opacity: 0;
    }
}

body::before {
    content: '';
    position: fixed;
    top: -50px;
    left: 10%;
    width: 40px;
    height: 40px;
    background-image: url('/images/tete.jpg');
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    animation: fallingSpin 8s linear infinite;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: -50px;
    left: 50%;
    width: 40px;
    height: 40px;
    background-image: url('/images/tete.jpg');
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    animation: fallingSpin 10s linear infinite 2s;
    pointer-events: none;
    z-index: -1;
}
  
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: #333;
    padding: 20px;
    min-height: 100vh;
    /* Santa peeking top-right (fixed)  */
    background-image: url('/images/pere-noel-head.png'), linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: calc(100% + 60px) calc(100%), center;
    background-size: 409px auto, cover;
    background-attachment: fixed, fixed;
    /* pointer-events: none; */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
h1 {
    text-align: center;
    color: #c41e3a;
    margin-bottom: 30px;
    font-size: 2.5em;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #c41e3a;
    color: white;
}
tr:hover {
    background-color: #f5f5f5;
}
input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}
input[type="text"]:focus {
    outline: none;
    border-color: #c41e3a;
}
.url-section {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}
.url-section p {
    margin-bottom: 10px;
    font-weight: bold;
}
.url-display {
    background: white;
    padding: 15px;
    border: 2px solid #c41e3a;
    border-radius: 5px;
    word-break: break-all;
    color: #c41e3a;
    min-height: 50px;
}