        body {
            font-family: 'Inter', sans-serif;
            background-color: #1a202c; /* Dark background */
            color: #e2e8f0; /* Light text */
        }
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 0.75rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #4299e1;
            border-radius: 9999px;
        }
        .card {
            background-color: #2d3748;
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .figure-gallery img {
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .figure-details ul {
            list-style: none;
            padding: 0;
        }
        .figure-details li {
            margin-bottom: 0.5rem;
        }
        .figure-details li strong {
            color: #9f7aea;
        }
        .character-card-image {
            width: 100%;
            height: 500px; /* Adjust height as needed */
            object-fit: cover;
            border-radius: 0.75rem;
            margin-bottom: 2rem;
            background-color: #4a5568;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        .detail-page-logo {
            width: 100px; /* Smaller logo for detail page */
            height: 100px;
            object-fit: contain;
            border-radius: 0.5rem;
            margin: 0 auto 1rem auto;
            background-color: #4a5568;
            display: block;
        }
        .model-sheet-image {
            width: 100%;
            height: auto; /* Maintain aspect ratio */
            aspect-ratio: 16 / 9; /* 16:9 ratio */
            object-fit: cover;
            border-radius: 0.75rem;
            margin-top: 2rem; /* Space from above content */
            background-color: #4a5568;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }