/* 🌙 Thème sombre et moderne */
body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* 🖌 Titre avec un effet de glow */
h1 {
    font-size: 42px;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
}

/* 🎭 Couleur spéciale pour "Oshi no Ko" */
.oshi-text {
    color: #ff007f;
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.9);
}

/* 📦 Conteneur principal */
.home-container {
    max-width: 800px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(255, 69, 0, 0.3);
}

/* 🎥 Image avec effet glow */
.home-img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 15px rgba(255, 69, 0, 0.7);
}

/* 🔳 Boutons stylisés */
.btn-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-content: center;
}

.watch-btn {
    background: linear-gradient(45deg, #ff4500, #ff007f);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    box-shadow: 0px 4px 15px rgba(255, 69, 0, 0.7);
}

.watch-btn:hover {
    background: linear-gradient(45deg, #e63e00, #ff0055);
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(255, 69, 0, 1);
}

/* 🚀 Barre de navigation moderne */
.navbar {
    width: 100%;
    padding: 15px 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(255, 69, 0, 0.5);
}

.nav-link {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-link:hover {
    color: #ff4500;
    text-shadow: 0px 0px 10px rgba(255, 69, 0, 0.8);
}
