:root {
    --meiju-purple: #6c5ce7;
    --meiju-gold: #fdcb6e;
    --meiju-black: #2d3436;
    --meiju-dark: #000000;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    background-color: var(--meiju-dark);
    color: #dfe6e9;
    font-family: 'Avenir', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0,0,0,0.8);
    padding: 20px 0;
    border-bottom: 1px solid var(--meiju-purple);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--meiju-purple);
}

nav ul { display: flex; list-style: none; }
nav li { margin-left: 20px; }
nav a { color: #fff; text-decoration: none; font-size: 14px; }
nav a:hover { color: var(--meiju-gold); }

.hero {
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://picsum.photos/1200/500?random=60');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 { font-size: 48px; color: var(--meiju-gold); }

.series-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 0;
}

.series-card {
    background: var(--meiju-black);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.series-card:hover { transform: translateY(-10px); }
.series-card img { width: 100%; height: 300px; object-fit: cover; }
.series-card .info { padding: 15px; }
.series-card h4 { color: var(--meiju-gold); margin-bottom: 5px; }

footer {
    background: #111;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--meiju-purple);
}
