        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #e6e6e6;
            line-height: 1.8;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            color: #7289da;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .site-header {
            background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
            padding: 1.5rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #7289da;
            text-shadow: 0 0 15px rgba(114, 137, 218, 0.7);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #ffffff;
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-size: 1.2rem;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            background-color: #2d2d44;
        }
        .nav-desktop a:hover {
            background-color: #7289da;
            text-decoration: none;
        }
        .hamburger-menu {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #7289da;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #2d2d44;
            padding: 1rem;
            border-radius: 12px;
            margin-top: 1rem;
            gap: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #252536;
            font-size: 1rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #b0b0d0;
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: #252536;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .sidebar {
            background-color: #2d2d44;
            padding: 2rem;
            border-radius: 20px;
            height: fit-content;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.5rem;
            color: #7289da;
            text-align: center;
            border-bottom: 4px solid #7289da;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #9fa8ff;
        }
        h3 {
            font-size: 2rem;
            color: #b0b0d0;
        }
        h4 {
            font-size: 1.5rem;
            color: #c9c9e3;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #3a3a5d;
            padding: 1.5rem;
            border-left: 6px solid #7289da;
            border-radius: 8px;
            margin: 2rem 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #a0a0c0;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 2px dashed #3a3a5d;
        }
        .search-form, .comment-form, .rating-form {
            background-color: #3a3a5d;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #55557a;
            background-color: #2d2d44;
            color: #ffffff;
            font-size: 1rem;
        }
        button {
            background-color: #7289da;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-weight: bold;
        }
        button:hover {
            background-color: #5b6eae;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .sidebar h3 {
            color: #9fa8ff;
            border-bottom: 2px solid #7289da;
            padding-bottom: 0.5rem;
        }
        .link-list {
            list-style: none;
            padding: 1rem 0;
        }
        .link-list li {
            margin-bottom: 1rem;
            padding: 0.8rem;
            background-color: #3a3a5d;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .link-list li:hover {
            transform: translateX(10px);
            background-color: #4a4a6d;
        }
        footer {
            background-color: #1a1a2e;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 4px solid #7289da;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: #2d2d44;
            border-radius: 8px;
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #3a3a5d;
            color: #a0a0c0;
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger-menu {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .main-content, .sidebar {
                padding: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .sidebar {
            animation: fadeIn 1s ease-out;
        }
        .link-list li a::before {
            content: "🔗 ";
            font-size: 1rem;
        }
