        * {
            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.6;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1c7ed6;
            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: linear-gradient(135deg, #1a1f25 0%, #0f1419 100%);
            padding: 15px 0;
            border-bottom: 2px solid #2b3a4a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #ff8787;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: #adb5bd;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: #2b3a4a;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: #adb5bd;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a1f25;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 15px;
            border-top: 1px solid #2b3a4a;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 10px 0;
            border-bottom: 1px solid #2b3a4a;
            color: #adb5bd;
        }
        .nav-mobile a:hover {
            color: #fff;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1a1f25;
            margin-bottom: 20px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #6c757d;
        }
        main {
            padding: 20px 0;
            background-color: #151b22;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff6b6b;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #2b3a4a;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 5px solid #ff6b6b;
        }
        h3 {
            font-size: 1.6rem;
            color: #adb5bd;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #6c757d;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            padding: 0 10px;
            line-height: 1.8;
        }
        .highlight {
            background-color: #2b3a4a;
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid #ff6b6b;
            margin: 20px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #ffc078;
        }
        .featured-image {
            width: 80%;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .form-section {
            background-color: #1a1f25;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .form-section h2 {
            border-left: none;
            padding-left: 0;
            color: #ff6b6b;
        }
        form {
            display: grid;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #2b3a4a;
            border-radius: 4px;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
        }
        button {
            background: linear-gradient(to right, #ff6b6b, #ff8787);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #ff8787, #ff6b6b);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating i {
            color: #ffd43b;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .rating i:hover {
            color: #ffc078;
        }
        .comments {
            margin-top: 40px;
        }
        .comment {
            background-color: #1a1f25;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #4dabf7;
        }
        .comment-author {
            font-weight: bold;
            color: #ffc078;
        }
        .comment-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        footer {
            background-color: #0f1419;
            padding: 40px 0 20px;
            border-top: 2px solid #2b3a4a;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ff6b6b;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #adb5bd;
        }
        friend-link:hover {
            color: #4dabf7;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2b3a4a;
            color: #6c757d;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .featured-image {
                width: 95%;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .form-section, .comments {
            animation: fadeIn 0.5s ease-out;
        }
