:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --text: #f1f1f1;
            --text-muted: #b0b0b0;
            --card-bg: #0f3460;
            --border: #2d4059;
            --success: #4CAF50;
            --warning: #ff9800;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff7b9c;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 15px 0;
            border-bottom: 2px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #fff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links li a:hover {
            background-color: rgba(233, 69, 96, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .breadcrumb {
            background-color: var(--secondary);
            padding: 10px 20px;
            margin: 10px 0;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px dashed var(--accent);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #4cc9f0;
            margin: 30px 0 15px;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #72efdd;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.5rem;
            color: #b8c0ff;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(233, 69, 96, 0.1);
            border-left: 4px solid var(--accent);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px auto;
            display: block;
            border: 3px solid var(--border);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: -10px;
            margin-bottom: 25px;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .link-list a {
            background-color: var(--secondary);
            padding: 12px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .link-list a:hover {
            transform: translateY(-5px);
            background-color: var(--accent);
            color: white;
        }
        .link-list i {
            font-size: 1.2rem;
        }
        .functional-section {
            background-color: var(--secondary);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid var(--border);
        }
        .functional-section h2 {
            border-left: none;
            text-align: center;
            color: var(--accent);
        }
        .search-box, .comment-form, .score-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background-color: var(--primary);
            color: var(--text);
            font-size: 1rem;
            width: 100%;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
        }
        button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s;
        }
        button:hover {
            background-color: #ff2e63;
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .stars i {
            font-size: 2rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .stars i:hover, .stars i.active {
            color: var(--warning);
        }
        footer {
            background-color: var(--secondary);
            padding: 40px 0 20px;
            margin-top: 40px;
            border-top: 3px solid var(--accent);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        friend-link {
            display: block;
            background-color: var(--primary);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        friend-link:hover {
            border-color: var(--accent);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent);
            font-weight: bold;
            text-align: right;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: var(--secondary);
                width: 250px;
                padding: 20px;
                border-radius: 0 0 0 15px;
                transition: right 0.5s ease;
                box-shadow: -5px 5px 15px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            article { padding: 20px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .link-list { grid-template-columns: 1fr; }
        }
