{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 30px;
        }

        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 10px;
            font-size: 2.5em;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
        }

        .subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 30px;
            font-style: italic;
        }

        .story-list {
            list-style: none;
        }

        .story-item {
            background: linear-gradient(to right, #ffffff, #f8f9fa);
            border-left: 5px solid #3498db;
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .story-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .story-title {
            color: #2c3e50;
            font-size: 1.5em;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .story-description {
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 1em;
        }

        .story-link {
            display: inline-block;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: 500;
            transition: background-color 0.2s ease;
        }

        .story-link:hover {
            background-color: #2980b9;
        }

        .fandom-tag {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            font-size: 0.8em;
            padding: 3px 10px;
            border-radius: 15px;
            margin-top: 10px;
        }

        footer {
            text-align: center;
            margin-top: 30px;
            color: #7f8c8d;
            font-size: 0.9em;
        }