        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff6b35;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9e6d;
            text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0a0e15 100%);
            padding: 15px 0;
            border-bottom: 3px solid #ff6b35;
            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;
            background: linear-gradient(90deg, #ff6b35, #ff9e6d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .nav-container {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .main-nav {
            display: flex;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #ff6b35;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 80%;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            padding: 10px 15px;
            border: 2px solid #333;
            border-radius: 25px 0 0 25px;
            background: #1e252b;
            color: #fff;
            width: 200px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: #ff6b35;
        }
        .search-btn {
            background: #ff6b35;
            border: none;
            border-radius: 0 25px 25px 0;
            padding: 10px 20px;
            color: white;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #ff8a5c;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b35;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: #151a21;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #ff9e6d;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        article {
            background: rgba(26, 31, 46, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff9e6d;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0e0e0;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #b0b0b0;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 107, 53, 0.1);
            border-left: 5px solid #ff6b35;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #888;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-form, .rating-form {
            background: #1a1f2e;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #333;
        }
        .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #ff9e6d;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #333;
            border-radius: 8px;
            background: #0f1419;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff6b35;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b35, #ff8a5c);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #333;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.3s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffd700;
        }
        .site-footer {
            background: #0a0e15;
            padding: 50px 0 30px;
            border-top: 3px solid #ff6b35;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        friend-link {
            display: block;
            background: #151a21;
            padding: 20px;
            border-radius: 10px;
            width: 100%;
            max-width: 800px;
            text-align: center;
            border: 1px solid #333;
        }
        friend-link a {
            font-size: 1.2rem;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .main-nav { gap: 15px; }
            .search-input { width: 150px; }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1f2e;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #333;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active {
                display: flex;
            }
            .nav-container {
                order: 3;
                width: 100%;
                justify-content: space-between;
                margin-top: 15px;
            }
            .search-form {
                width: 100%;
                justify-content: center;
            }
            .search-input {
                width: 70%;
            }
            article {
                padding: 25px;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .my-logo { font-size: 1.8rem; }
            .container { padding: 0 15px; }
        }
