:root {
    --pink: #ff5d8f;
    --pink-deep: #e63a72;
    --ink: #1a1a2e;
    --ink-soft: #2a2a40;
    --paper: #fff7f9;
    --paper-2: #fce4ec;
    --text: #2a2a40;
    --muted: #7a7a8c;
    --gold: #ffd166;
    --shadow: 0 10px 30px rgba(230, 58, 114, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", "Noto Sans JP", sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 209, 102, 0.25), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(255, 93, 143, 0.35), transparent 45%),
        linear-gradient(135deg, #1a1a2e 0%, #2a1a3e 60%, #3a1a4e 100%);
    color: #fff;
    overflow: hidden;
    padding-bottom: 60px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    position: relative;
    z-index: 5;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--pink);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo span {
    font-size: 12px;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 500;
    border-left: 2px solid var(--pink);
    padding-left: 10px;
}

.menu {
    display: flex;
    gap: 32px;
}
.menu a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
    position: relative;
}
.menu a:hover { color: var(--pink); }
.menu-stats {
    background: var(--pink);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 20px;
}
.menu-stats:hover { background: var(--pink-deep); color: #fff !important; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.hero-content {
    max-width: 1180px;
    margin: 80px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 4;
}
.hero-tag {
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--pink);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.hero-sub {
    font-size: clamp(14px, 1.6vw, 18px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary, .btn-ghost {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn-primary:hover {
    background: var(--pink-deep);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.kanji {
    position: absolute;
    font-size: 320px;
    font-weight: 900;
    color: rgba(255, 93, 143, 0.06);
    line-height: 1;
}
.kanji:nth-child(1) { top: 10%; right: -40px; }
.kanji:nth-child(2) { bottom: -20px; left: 10%; font-size: 220px; color: rgba(255, 209, 102, 0.07); }
.kanji:nth-child(3) { top: 40%; left: -40px; font-size: 280px; color: rgba(255, 93, 143, 0.05); }

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}
.section-alt {
    background: var(--paper-2);
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--pink);
    font-weight: 700;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--ink);
    letter-spacing: 1px;
}

/* ===== Anime cards ===== */
.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}
.anime-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.anime-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(230, 58, 114, 0.2);
}
.cover {
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    position: relative;
}
.cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.cover span { position: relative; z-index: 2; }

.c1 { background: linear-gradient(135deg, #ff7eb3, #ff5d8f, #c2185b); }
.c2 { background: linear-gradient(135deg, #5ee7df, #6a82fb, #4527a0); }
.c3 { background: linear-gradient(135deg, #ffecd2, #fcb69f, #d84315); }
.c4 { background: linear-gradient(135deg, #a1c4fd, #c2e9fb, #1976d2); }
.c5 { background: linear-gradient(135deg, #fbc2eb, #a6c1ee, #7b1fa2); }
.c6 { background: linear-gradient(135deg, #84fab0, #8fd3f4, #00838f); }
.c7 { background: linear-gradient(135deg, #2c3e50, #4a4a4a, #1a1a2e); }
.c8 { background: linear-gradient(135deg, #ff6b6b, #ee5a24, #b71c1c); }

.anime-card h3 {
    font-size: 16px;
    padding: 16px 18px 4px;
    color: var(--ink);
}
.meta {
    padding: 0 18px 18px;
    font-size: 13px;
    color: var(--muted);
}

/* ===== Genres ===== */
.genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.genre {
    display: inline-block;
    padding: 12px 26px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.2s;
    cursor: pointer;
}
.genre:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
}

/* ===== News ===== */
.news-list {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.news-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid #f0e0e8;
    font-size: 15px;
    transition: background 0.2s;
}
.news-list li:last-child { border-bottom: none; }
.news-list li:hover { background: #fff5f8; }
.news-date {
    font-weight: 700;
    color: var(--pink);
    font-size: 13px;
    letter-spacing: 1px;
    min-width: 88px;
}
.news-cat {
    background: var(--ink);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* ===== CTA band ===== */
.cta-band {
    background: linear-gradient(135deg, var(--pink), var(--pink-deep));
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 12px;
}
.cta-band p {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
}
.cta-band .btn-primary {
    background: #fff;
    color: var(--pink-deep);
}
.cta-band .btn-primary:hover {
    background: var(--ink);
    color: #fff;
}

/* ===== Footer ===== */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 2px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a:hover { color: var(--pink); }
.footer-desc { margin-top: 16px; line-height: 1.8; }
.copyright {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav { padding: 18px 24px; }
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ink-soft);
        flex-direction: column;
        padding: 20px;
        gap: 18px;
        z-index: 10;
    }
    .menu.open { display: flex; }
    .menu-toggle { display: block; }
    .hero-content { padding: 0 24px; margin-top: 40px; }
    .section { padding: 70px 0; }
    .anime-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
    .cover { font-size: 16px; padding: 14px; }
    .anime-card h3 { font-size: 14px; padding: 12px 14px 4px; }
    .meta { padding: 0 14px 14px; font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .news-list li { padding: 16px 18px; font-size: 14px; }
    .news-date { min-width: auto; }
    .kanji { font-size: 180px !important; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-cta a { text-align: center; }
    .anime-grid { grid-template-columns: repeat(2, 1fr); }
}
