        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
            padding-top: 80px;
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid #ff4d00;
            box-shadow: 0 5px 20px rgba(255, 77, 0, 0.2);
            padding: 15px 5%;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff4d00, #ffaa00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 77, 0, 0.5);
        }
        .main-nav {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            color: #cccccc;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s;
            position: relative;
        }
        .nav-link:hover {
            color: #ffaa00;
            background: rgba(255, 77, 0, 0.1);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #ff4d00;
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffaa00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 35, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            background: rgba(30, 30, 45, 0.8);
            padding: 12px 5%;
            margin-bottom: 30px;
            border-radius: 0 0 10px 10px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ffaa00;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #ff4d00;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            margin: 40px 0;
        }
        article {
            background: rgba(25, 25, 40, 0.9);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1 {
            color: #ffaa00;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid #ff4d00;
            padding-bottom: 15px;
        }
        h2 {
            color: #ffcc66;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ff4d00;
        }
        h3 {
            color: #ffdd99;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #eeeeee;
            font-size: 1.3rem;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 77, 0, 0.15);
            border-left: 4px solid #ff4d00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        strong {
            color: #ffaa00;
            font-weight: 700;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid #ff4d00;
            box-shadow: 0 5px 15px rgba(255, 77, 0, 0.3);
            transition: transform 0.5s;
        }
        .featured-img:hover {
            transform: scale(1.02);
        }
        a {
            color: #ffaa00;
            text-decoration: none;
            transition: all 0.3s;
        }
        a:hover {
            color: #ff4d00;
            text-decoration: underline;
        }
        .internal-links {
            background: rgba(40, 40, 60, 0.7);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        aside {
            background: rgba(25, 25, 40, 0.9);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            border: 1px solid #333;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            color: #ffaa00;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ff4d00;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(40, 40, 60, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            margin: 10px 0;
            background: rgba(20, 20, 30, 0.9);
            border: 1px solid #444;
            border-radius: 8px;
            color: #eeeeee;
            font-size: 1rem;
            transition: all 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffaa00;
            box-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
        }
        button {
            background: linear-gradient(90deg, #ff4d00, #ff7700);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            display: inline-block;
        }
        button:hover {
            background: linear-gradient(90deg, #ff7700, #ffaa00);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 77, 0, 0.4);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
            margin-right: 5px;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffaa00;
        }
        footer {
            background: rgba(10, 10, 20, 0.98);
            padding: 40px 5%;
            margin-top: 60px;
            border-top: 3px solid #ff4d00;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .friend-link {
            background: rgba(255, 77, 0, 0.1);
            padding: 10px 20px;
            border-radius: 5px;
            border: 1px solid #333;
            transition: all 0.3s;
        }
        .friend-link:hover {
            background: rgba(255, 77, 0, 0.3);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #999;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-container, .container {
                padding: 0 3%;
            }
            article {
                padding: 25px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            body {
                padding-top: 70px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.7rem;
            }
        }
