        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f4c75;
            --highlight: #00adb5;
            --text: #eeeeee;
            --light-bg: #222831;
            --border: #393e46;
            --success: #4CAF50;
            --warning: #ff9800;
            --danger: #f44336;
        }
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--highlight);
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #00ffff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #00adb5, #0097a7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .my-logo a {
            background: none;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: var(--light-bg);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--highlight);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(0, 173, 181, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px;
            border-bottom: 1px solid var(--border);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            background-color: rgba(255,255,255,0.9);
        }
        .search-box button {
            background-color: var(--highlight);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #0097a7;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--light-bg);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h1, h2, h3, h4 {
            color: #fff;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            border-left: 6px solid var(--highlight);
            padding-left: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--highlight);
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--border);
        }
        h3 {
            font-size: 1.8rem;
            color: #00ffff;
        }
        h4 {
            font-size: 1.4rem;
            color: #aaa;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(0, 173, 181, 0.1);
            border-left: 4px solid var(--highlight);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box {
            background-color: rgba(15, 76, 117, 0.3);
            border: 1px solid var(--accent);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 2rem 0;
        }
        .link-list a {
            background-color: var(--secondary);
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-block;
            border: 1px solid var(--border);
        }
        .link-list a:hover {
            background-color: var(--accent);
            border-color: var(--highlight);
        }
        aside {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--highlight);
        }
        .comment-form, .rating-form {
            background-color: var(--secondary);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background-color: rgba(255,255,255,0.1);
            color: var(--text);
            font-size: 1rem;
        }
        button, .btn {
            background-color: var(--highlight);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover, .btn:hover {
            background-color: #0097a7;
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        footer {
            background-color: var(--secondary);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--highlight);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--highlight);
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #aaa;
        }
        friend-link a {
            color: #aaa;
        }
        friend-link a:hover {
            color: var(--highlight);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border);
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .hero {
            animation: fadeIn 0.8s ease-out;
        }
