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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #361a20;
            /* Deep maroon/burgundy */
            color: #f5f5dc;
            overflow-x: hidden;
            cursor: none;
            min-height: 100vh;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #b55d72;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transition: all 0.1s ease;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(181, 93, 114, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99998;
            transition: all 0.3s ease;
        }

        /* Animated Background - Sakura Petals */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .petal {
            position: absolute;
            background: linear-gradient(135deg, #ffb7c5, #b55d72);
            border-radius: 15px 0 15px 0;
            opacity: 0.4;
            animation: fall-sakura linear infinite;
        }

        @keyframes fall-sakura {
            0% {
                transform: translateY(-50px) rotate(0deg) scale(1);
            }

            50% {
                transform: translateY(50vh) rotate(180deg) scale(1.2) translateX(20px);
            }

            100% {
                transform: translateY(110vh) rotate(360deg) scale(1) translateX(-20px);
                opacity: 0;
            }
        }

        /* Main Container */
        .container {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 6rem 2rem 2rem;
        }

        .header-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 4rem;
        }

        .back-btn {
            position: fixed;
            top: 2rem;
            left: 2rem;
            text-decoration: none;
            color: #b55d72;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: none;
            transition: all 0.3s ease;
            z-index: 10;
            border: 1px solid transparent;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background: rgba(54, 26, 32, 0.8);
            backdrop-filter: blur(10px);
        }

        .back-btn:hover {
            color: #ffb7c5;
            border-color: rgba(181, 93, 114, 0.3);
            background: rgba(181, 93, 114, 0.2);
            transform: translateX(-5px);
        }

        .topic-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: sway 4s infinite ease-in-out alternate;
            text-shadow: 0 0 20px rgba(181, 93, 114, 0.5);
        }

        @keyframes sway {
            0% {
                transform: rotate(-10deg);
            }

            100% {
                transform: rotate(10deg);
            }
        }

        .title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            color: #b55d72;
            margin-bottom: 0.5rem;
            text-align: center;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(181, 93, 114, 0.3);
        }

        .subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #ffb7c5;
            opacity: 0.8;
            max-width: 600px;
            text-align: center;
            margin-bottom: 2rem;
        }

        /* Anime Grid Layout */
        .anime-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 1400px;
            padding: 1rem;
        }

        /* Anime Card */
        .anime-card {
            background: rgba(181, 93, 114, 0.05);
            border: 1px solid rgba(181, 93, 114, 0.2);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            height: 480px;
            cursor: none;
        }

        .anime-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #b55d72;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(181, 93, 114, 0.3);
        }

        /* Number Badge */
        .card-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(54, 26, 32, 0.9);
            color: #ffb7c5;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            z-index: 2;
            border: 2px solid #b55d72;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }

        /* Card Image Placeholder */
        .card-image-wrapper {
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(181, 93, 114, 0.2);
            background: linear-gradient(45deg, #1a0b10, #361a20);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .image-fallback {
            font-size: 3rem;
            opacity: 0.3;
            color: #b55d72;
            position: absolute;
        }

        .anime-card:hover .card-image {
            transform: scale(1.1);
        }

        /* Card Content */
        .card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
            background: linear-gradient(to top, rgba(54, 26, 32, 1) 40%, rgba(54, 26, 32, 0.8) 100%);
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffb7c5;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .card-meta {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .meta-tag {
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            background: rgba(181, 93, 114, 0.2);
            color: #f5f5dc;
            border: 1px solid rgba(181, 93, 114, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .meta-tag.movie {
            background: rgba(255, 183, 197, 0.2);
            border-color: rgba(255, 183, 197, 0.4);
            color: #ffb7c5;
        }

        .card-desc {
            font-size: 0.9rem;
            color: #cbb4d4;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-top: auto;
        }


        @media (max-width: 768px) {
            body {
                cursor: auto;
            }

            .cursor,
            .cursor-follower {
                display: none;
            }

            .anime-grid {
                grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
                gap: 1.5rem;
            }

            .anime-card {
                height: 420px;
            }
        }
