:root {
            --primary: #2a2d43;
            --secondary: #ff4654;
            --accent: #00c9b7;
            --light: #f8f9fa;
            --dark: #1a1c2b;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            min-height: 100vh;
        }
        header {
            background: var(--dark);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--primary);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background: var(--secondary);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background: white;
            padding: 1rem 2rem;
            border-bottom: 1px solid #eee;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        main {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--dark);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 5px solid var(--secondary);
        }
        h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            background: linear-gradient(90deg, rgba(0,201,183,0.1) 0%, rgba(255,70,84,0.1) 100%);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
            margin: 2rem 0;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,70,84,0.1) 0%, rgba(255,70,84,0.1) 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 700;
        }
        .tier-container {
            display: grid;
            gap: 2rem;
            margin: 3rem 0;
        }
        .tier-row {
            display: grid;
            grid-template-columns: 100px 1fr;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            border-radius: 10px;
            transition: var(--transition);
        }
        .tier-row:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .tier-s {
            background: linear-gradient(135deg, #ffd70022, #ffd70011);
            border: 2px solid #ffd700;
        }
        .tier-a {
            background: linear-gradient(135deg, #c0c0c022, #c0c0c011);
            border: 2px solid #c0c0c0;
        }
        .tier-b {
            background: linear-gradient(135deg, #cd7f3222, #cd7f3211);
            border: 2px solid #cd7f32;
        }
        .tier-label {
            font-size: 2rem;
            font-weight: 900;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .tier-s .tier-label { color: #ffd700; }
        .tier-a .tier-label { color: #c0c0c0; }
        .tier-b .tier-label { color: #cd7f32; }
        .legends-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 1rem;
        }
        .legend-card {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: var(--transition);
            cursor: pointer;
        }
        .legend-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        .legend-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }
        .search-box {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box input {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--accent);
            border-radius: 50px;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .btn {
            background: linear-gradient(135deg, var(--secondary), #ff2e3d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255,70,84,0.3);
        }
        .rating-section, .comments-section {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ffd700;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin: 1rem 0;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .update-notice {
            background: linear-gradient(135deg, var(--accent), #00a89b);
            color: white;
        }
        .popular-legends ul {
            list-style: none;
            padding-left: 0;
        }
        .popular-legends li {
            padding: 1rem;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: var(--transition);
        }
        .popular-legends li:hover {
            background: var(--light);
            padding-left: 1.5rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: white;
            border-radius: 10px;
        }
        .web-link {
            padding: 1rem;
            background: var(--light);
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: linear-gradient(135deg, var(--accent), #00a89b);
            color: white;
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link:hover a {
            color: white;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0.5rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .container {
                padding: 0 1rem;
            }
            main {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .tier-row {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .legends-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .stagger-delay-1 { animation-delay: 0.1s; }
        .stagger-delay-2 { animation-delay: 0.2s; }
        .stagger-delay-3 { animation-delay: 0.3s; }
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
