        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
            color: #e0e0e0;
            line-height: 1.8;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #ffaa33;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc66;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .site-header {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #333;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffaa33, #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(255, 102, 0, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background: rgba(255, 170, 51, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffaa33;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(30, 35, 50, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffaa33;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        main {
            background: rgba(25, 30, 45, 0.7);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid #444;
        }
        aside {
            background: rgba(20, 25, 40, 0.7);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 3.5rem;
            color: #ffaa33;
            margin-bottom: 2rem;
            text-align: center;
            border-bottom: 3px solid #ff6600;
            padding-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(255, 102, 0, 0.5);
        }
        h2 {
            font-size: 2.5rem;
            color: #ffcc66;
            margin: 3rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 5px solid #ff6600;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffdd99;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #ffeecc;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ccc;
            background: rgba(255, 170, 51, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #ffaa33;
        }
        .highlight {
            background: rgba(255, 170, 51, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
            color: #ffcc66;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        .search-module, .comment-module, .rating-module {
            background: rgba(40, 45, 60, 0.8);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #555;
        }
        .module-title {
            color: #ffaa33;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: rgba(10, 14, 23, 0.8);
            border: 1px solid #666;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffaa33;
            box-shadow: 0 0 10px rgba(255, 170, 51, 0.5);
        }
        button {
            background: linear-gradient(90deg, #ff6600, #ffaa33);
            color: #0a0e17;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover {
            background: linear-gradient(90deg, #ffaa33, #ffcc66);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 102, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffaa33;
        }
        .feature-img {
            margin: 3rem auto;
            max-width: 900px;
            text-align: center;
        }
        .feature-img figcaption {
            margin-top: 1rem;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
        }
        .site-footer {
            background: rgba(10, 14, 23, 0.98);
            padding: 3rem 2rem;
            margin-top: 5rem;
            border-top: 3px solid #333;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin: 2rem 0;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 170, 51, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            border: 1px solid #ffaa33;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 170, 51, 0.3);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #444;
            padding-top: 2rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            main, aside {
                padding: 1.5rem;
            }
            .container {
                padding: 1rem;
            }
        }
