        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f0a500;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a1f27;
            padding: 20px 0;
            border-bottom: 3px solid #f0a500;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #f0a500;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #ffcc00;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #aaa;
            width: 100%;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb span {
            color: #f0a500;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-links li a:hover {
            background-color: #2a2f3a;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f0a500;
        }
        .hero {
            background: linear-gradient(rgba(15,20,25,0.8), rgba(15,20,25,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        }
        .hero h1 {
            font-size: 3.5rem;
            color: #f0a500;
            margin-bottom: 20px;
            text-shadow: 3px 3px 10px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #444;
            border-radius: 50px;
            background-color: #2a2f3a;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 30px;
            background-color: #f0a500;
            color: #000;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #ffcc00;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .content {
            background-color: #1a1f27;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .sidebar {
            background-color: #1a1f27;
            padding: 20px;
            border-radius: 10px;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        h1, h2, h3, h4 {
            color: #f0a500;
            margin-top: 30px;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #f0a500;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #f0a500;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc00;
        }
        h4 {
            font-size: 1.5rem;
            color: #e0b050;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #ffcc00;
            font-weight: bold;
        }
        em {
            color: #aaa;
            font-style: italic;
        }
        .highlight {
            background-color: #2a2f3a;
            padding: 20px;
            border-left: 5px solid #f0a500;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #444;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .caption {
            font-size: 0.9rem;
            color: #888;
            margin-top: 10px;
        }
        .interactive {
            background-color: #2a2f3a;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .interactive h2 {
            border: none;
            padding-left: 0;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .comment-form input, .comment-form textarea, .rating-form select {
            padding: 15px;
            border: 1px solid #555;
            border-radius: 8px;
            background-color: #1a1f27;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form div {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .rating-stars {
            color: #ffcc00;
            font-size: 1.5rem;
        }
        button[type="submit"] {
            padding: 15px;
            background-color: #f0a500;
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            background-color: #ffcc00;
        }
        footer {
            background-color: #1a1f27;
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 3px solid #f0a500;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f0a500;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 10px;
            background-color: #2a2f3a;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: translateX(10px);
            background-color: #3a3f4a;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 40px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .nav-links {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                font-size: 2rem;
                margin-bottom: 15px;
            }
            nav {
                width: 100%;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2a2f3a;
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content, .sidebar, .interactive {
            animation: fadeIn 0.8s ease-out;
        }
