* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('penguinibackground.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.center-button {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #8A2BE2;
    cursor: pointer;
    transition: none;
    box-shadow: none;
    position: relative;
    min-width: 300px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-button:hover {
    transform: none;
    box-shadow: none;
}

.center-button:active {
    transform: none;
}

.button-text {
    color: #8A2BE2;
    font-weight: bold;
}

.button-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    width: auto;
    height: auto;
}

/* Animation d'apparition */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.center-button {
    animation: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .center-button {
        padding: 15px 30px;
        font-size: 16px;
        min-width: 250px;
        min-height: 60px;
    }
}

/* Compteur de meow */
.meow-counter {
    margin-top: 30px;
    text-align: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.counter-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.counter-number {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
}

/* Texte informatif */
.info-text {
    margin-top: 20px;
    text-align: center;
}

.info-text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

/* Bouton Twitter */
.twitter-button-container {
    margin-top: 30px;
    text-align: center;
}

.twitter-button {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.twitter-button:hover {
    transform: scale(1.05);
}

.twitter-button-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Mode plein écran - bouton plus petit */
@media (min-width: 1920px) {
    .center-button {
        min-width: 200px;
        min-height: 60px;
        padding: 15px 30px;
    }
    
    .meow-counter {
        margin-top: 25px;
        padding: 12px 20px;
    }
    
    .info-text {
        margin-top: 18px;
    }
    
    .info-text p {
        font-size: 15px;
        padding: 8px 18px;
    }
    
    .twitter-button-container {
        margin-top: 25px;
    }
    
    .twitter-button-image {
        width: 70px;
        height: 70px;
    }
}

/* Mode plein écran très large */
@media (min-width: 2560px) {
    .center-button {
        min-width: 180px;
        min-height: 50px;
        padding: 12px 25px;
    }
    
    .meow-counter {
        margin-top: 20px;
        padding: 10px 18px;
    }
    
    .info-text {
        margin-top: 15px;
    }
    
    .info-text p {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .twitter-button-container {
        margin-top: 20px;
    }
    
    .twitter-button-image {
        width: 60px;
        height: 60px;
    }
}
