.goku-character {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 10;
}

.floating-goku {
    width: 300px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-text {
    position: absolute;
    right: 50px;
    bottom: 150px;
    text-align: right;
    color: white;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.discover-button {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.btn-discover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-download {
    background: #ff6b00;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-download:hover {
    background: #ff8533;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Styles des nouvelles */
.dernieres-nouvelles {
    padding: 50px 0;
    background: #f8f9fa;
}

.dernieres-nouvelles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 50px;
}

.dernieres-nouvelles-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.voir-tout {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nouvelles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 50px;
    align-items: stretch;
}

.nouvelle-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nouvelle-card:hover {
    transform: translateY(-5px);
}

.nouvelle-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.nouvelle-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nouvelle-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tag-update {
    background: #e8f5ff;
    color: #0088ff;
}

.tag-event {
    background: #fff2e8;
    color: #ff6b00;
}

.tag-content {
    background: #ffe8f5;
    color: #ff00aa;
}

.nouvelle-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.4;
}

.nouvelle-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.nouvelle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.nouvelle-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lire-suite {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 8px 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.lire-suite:hover {
    color: #ff8533;
}