/* Importation de la police Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    /* Fond sombre RaiPlay avec dégradé */
    background-color: #0a0b10;
    background-image: radial-gradient(circle at top, #1a1c29 0%, #0a0b10 50%);
    font-family: 'Inter', sans-serif;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

h1 span {
    color: #00b4e6; /* Cyan RaiPlay */
}

.nav-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    
    transition: all 0.3s ease;
}

a::before {
    content: "▶";
    margin-right: 12px;
    font-size: 1rem;
    color: #00b4e6;
    transition: color 0.3s ease;
}

/* Effet au survol style bouton RIPRODUCI */
a:hover {
    background: linear-gradient(90deg, #00d2ff 0%, #00a0e0 100%);
    color: #050510;
    border-color: #00b4e6;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 180, 230, 0.3);
}

a:hover::before {
    color: #050510;
}