:root {
    --red:  #9b1a1a;
    --red2: #c0392b;
    --gold: #c9a333;
}
.section-title {
    text-align: center !important;
    font-family: 'Cinzel Decorative', cursive !important;
    color: var(--gold) !important;
    font-size: 2rem !important;
    margin-bottom: 40px !important;
    letter-spacing: 4px !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    padding-bottom: 16px !important;
}body { background: #000; color: #eee; font-family: 'Shippori Mincho', serif; padding-top: 80px; }
        .container { max-width: 1000px; margin: 0 auto; padding: 20px 20px; }
        .girls-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }
        .girl-card { text-decoration: none; color: inherit; border: 1px solid #222; background: #111; border-radius: 8px; padding: 10px; transition: 0.3s; }
        .girl-card:hover { border-color: #c9a333; transform: translateY(-5px); }
        .girl-img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 4px; }
        .girl-name { text-align: center; margin-top: 10px; font-weight: bold; color: #c9a333; }
        footer { margin-top: 80px; border-top: 1px solid #222; padding: 40px 20px; text-align: center; color: #444; font-size: 12px; letter-spacing: 2px; }
        footer .footer-logo { font-family: 'Noto Serif JP', serif; font-size: 18px; color: #c9a333; letter-spacing: 6px; margin-bottom: 16px; }
        @media (max-width: 768px) { .girls-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
