        * { 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: #f0f0f0;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #a5d8ff; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a3d66;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .logo a { background: none; }
        .nav-desktop { display: flex; gap: 25px; }
        .nav-desktop a {
            color: #ccd6f6;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active { border-bottom-color: #4dabf7; color: #fff; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ccd6f6;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(12, 26, 45, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2a3d66;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #ccd6f6;
            padding: 15px 10px;
            border-bottom: 1px solid #2a3d66;
            font-weight: 600;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .nav-mobile a:hover { color: #4dabf7; }
        .breadcrumb {
            background: rgba(42, 61, 102, 0.5);
            padding: 12px 0;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #a5d8ff; }
        .breadcrumb span { color: #8892b0; }
        main { padding: 30px 0 60px; }
        article { background: rgba(22, 33, 62, 0.7); border-radius: 15px; padding: 40px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
        h1 {
            font-size: 3rem;
            background: linear-gradient(90deg, #ffa8a8, #74c0fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #4ecdc4;
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3d66;
        }
        h3 {
            font-size: 1.6rem;
            color: #a5d8ff;
            margin: 35px 0 15px;
        }
        p {
            margin-bottom: 25px;
            color: #ccd6f6;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #fff;
            font-weight: 500;
            padding-left: 20px;
            border-left: 4px solid #ff6b6b;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,107,0.15), rgba(78,205,196,0.15));
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #4dabf7;
            margin: 30px 0;
        }
        .legend-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .legend-card {
            background: rgba(42, 61, 102, 0.6);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid #3a506b;
        }
        .legend-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
            border-color: #4dabf7;
        }
        .legend-img { width: 100%; height: 180px; object-fit: cover; }
        .legend-info { padding: 20px; }
        .legend-name { font-size: 1.5rem; color: #ffa8a8; margin-bottom: 10px; }
        .legend-stats { display: flex; justify-content: space-between; margin-top: 15px; font-size: 0.9rem; color: #8892b0; }
        .emoji { font-size: 1.2em; margin-right: 8px; }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid #3a506b;
        }
        .module {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #3a506b;
        }
        .module-title { font-size: 1.8rem; color: #4ecdc4; margin-bottom: 20px; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .form-group { flex: 1 1 300px; }
        label { display: block; margin-bottom: 8px; color: #ccd6f6; font-weight: 600; }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            background: rgba(42, 61, 102, 0.7);
            border: 1px solid #3a506b;
            border-radius: 8px;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        button, .btn {
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            color: #0c1a2d;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            flex-shrink: 0;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star.active, .star:hover { color: #ffd700; }
        .footer-links {
            background: rgba(12, 26, 45, 0.9);
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(42, 61, 102, 0.5);
            padding: 18px;
            border-radius: 8px;
            border-left: 4px solid #4dabf7;
            transition: background 0.3s;
        }
        .web-link:hover { background: rgba(42, 61, 102, 0.8); }
        .web-link a { color: #a5d8ff; font-weight: 600; }
        .site-footer {
            background: #0c1a2d;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid #2a3d66;
        }
        .copyright {
            color: #8892b0;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a3d66;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .legend-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .header-content { padding: 0 10px; }
            article { padding: 25px; }
            .module { padding: 20px; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            .legend-grid { grid-template-columns: 1fr; }
            .search-form, .comment-form, .rating-form { flex-direction: column; }
            .form-group { flex: 1 1 100%; }
            .stars { justify-content: center; }
        }
