        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0e17;
            color: #a7a9be;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fffffe;
            text-shadow: 0 0 8px rgba(255, 137, 6, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-highlight { color: #ff8906; }
        .bg-dark { background-color: #0f0e17; }
        .bg-darker { background-color: #0a0a14; }
        .bg-gradient {
            background: linear-gradient(135deg, #0f0e17 0%, #1a1830 100%);
        }
        .site-header {
            background-color: rgba(15, 14, 23, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff8906;
            padding: 15px 0;
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            animation: logo-pulse 0.5s ease;
        }
        @keyframes logo-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 137, 6, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff8906;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1a1830;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #ff8906;
        }
        .search-section {
            background-color: #1a1830;
            padding: 30px 0;
            margin-top: 20px;
            border-radius: 12px;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #333344;
            background-color: #0f0e17;
            color: #fffffe;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #ff8906;
        }
        .search-button {
            padding: 0 30px;
            background: linear-gradient(90deg, #ff8906, #f25f4c);
            color: #fffffe;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 137, 6, 0.4);
        }
        .main-content {
            padding: 40px 0;
        }
        article {
            background-color: rgba(26, 24, 48, 0.7);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1, h2, h3, h4 {
            color: #fffffe;
            font-weight: 800;
            line-height: 1.3;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 4px solid #ff8906;
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.4rem;
            border-left: 6px solid #ff8906;
            padding-left: 20px;
            margin-top: 2em;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff8906;
        }
        h4 {
            font-size: 1.4rem;
            color: #a7a9be;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #e2e2f2;
            font-weight: 300;
            margin-bottom: 2em;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .highlight-box {
            background-color: #1a1830;
            border-left: 5px solid #f25f4c;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        blockquote {
            border-left: 4px solid #ff8906;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #c3c3d8;
            font-size: 1.2rem;
        }
        ul, ol {
            padding-left: 30px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 10px;
        }
        .figure-container {
            margin: 40px auto;
            max-width: 800px;
            text-align: center;
        }
        .figure-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .figure-container img:hover {
            transform: scale(1.02);
        }
        .figcaption {
            margin-top: 15px;
            font-style: italic;
            color: #8888aa;
            font-size: 0.95rem;
        }
        .rating-section, .comment-section {
            background-color: #1a1830;
            border-radius: 16px;
            padding: 40px;
            margin-top: 40px;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            max-width: 700px;
            margin: 30px auto 0;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2.5rem;
            margin: 20px 0;
        }
        .star-rating input {
            display: none;
            pointer-events: none;
        }
        .star-rating label {
            color: #444455;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .star-rating input:checked ~ label {
            color: #ffcc00;
        }
        .star-rating label:active {
            transform: scale(0.9);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-label {
            font-weight: 600;
            color: #e2e2f2;
        }
        .form-input, .form-textarea {
            padding: 15px;
            background-color: #0f0e17;
            border: 2px solid #333344;
            border-radius: 8px;
            color: #fffffe;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #ff8906;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            padding: 18px;
            background: linear-gradient(90deg, #ff8906, #f25f4c);
            color: #fffffe;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 10px;
        }
        .submit-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 137, 6, 0.4);
        }
        .site-footer {
            background-color: #0a0a14;
            padding: 50px 0 20px;
            border-top: 2px solid #ff8906;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #fffffe;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 12px 20px;
            background-color: #1a1830;
            border-radius: 8px;
            border-left: 4px solid #ff8906;
            transition: background-color 0.3s, transform 0.3s;
        }
        friend-link:hover {
            background-color: #252244;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333344;
            color: #777788;
            font-size: 0.95rem;
        }
        .last-updated {
            text-align: center;
            margin-top: 40px;
            padding: 15px;
            background-color: #1a1830;
            border-radius: 10px;
            color: #a7a9be;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.7rem; }
            h2 { font-size: 2.1rem; }
            h3 { font-size: 1.6rem; }
            .main-nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                right: -100%;
                background-color: #0f0e17;
                width: 80%;
                height: calc(100vh - 80px);
                flex-direction: column;
                padding: 40px 20px;
                transition: right 0.4s ease;
                border-left: 2px solid #ff8906;
                z-index: 999;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-button {
                padding: 15px;
            }
            article {
                padding: 25px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .lead { font-size: 1.2rem; }
            .star-rating { font-size: 2rem; }
        }
