        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0d1b2a;
            --primary-medium: #1b263b;
            --accent: #e63946;
            --accent-light: #f28482;
            --text-light: #f1faee;
            --text-gray: #a8dadc;
            --highlight: #ffd166;
            --section-bg: #415a77;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--highlight);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(225, 57, 70, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(225, 57, 70, 0.5);
            text-decoration: none;
            color: white;
        }
        header {
            background-color: var(--primary-medium);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--highlight);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            letter-spacing: 2px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: var(--accent-light);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 5px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-medium);
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            padding: 10px;
            border-bottom: 1px solid var(--section-bg);
            display: block;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(27, 38, 59, 0.8);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--highlight);
        }
        main {
            padding: 30px 0;
            min-height: 80vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px solid var(--section-bg);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--highlight);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 20px;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(27, 38, 59, 0.6);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        h2 {
            color: var(--accent-light);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            color: var(--text-gray);
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: var(--highlight);
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 209, 102, 0.15);
            border-left: 5px solid var(--highlight);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--text-gray);
            text-align: center;
            padding: 25px;
            border-top: 1px solid var(--section-bg);
            border-bottom: 1px solid var(--section-bg);
            margin: 30px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container figcaption {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 10px;
            font-style: italic;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        .related-links {
            background-color: var(--section-bg);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .related-links h3 {
            color: var(--highlight);
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .related-links li {
            margin-bottom: 0;
        }
        .related-links a {
            background-color: var(--primary-medium);
            padding: 10px 20px;
            border-radius: 30px;
            display: inline-block;
        }
        .related-links a:hover {
            background-color: var(--accent);
            color: white;
        }
        aside {
            background-color: rgba(27, 38, 59, 0.6);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: var(--accent-light);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--section-bg);
        }
        .search-box {
            display: flex;
            margin-bottom: 20px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            background-color: var(--primary-dark);
            color: var(--text-light);
        }
        .search-box button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--accent-light);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: var(--text-gray);
            cursor: pointer;
        }
        .rating-widget .stars .star:hover,
        .rating-widget .stars .star.active {
            color: var(--highlight);
        }
        .rating-widget input, .rating-widget textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--section-bg);
            background-color: var(--primary-dark);
            color: var(--text-light);
        }
        .rating-widget textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comments-section .comment {
            background-color: rgba(65, 90, 119, 0.3);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .comment .author {
            font-weight: bold;
            color: var(--highlight);
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .comment .date {
            font-size: 0.8rem;
            color: var(--text-gray);
        }
        footer {
            background-color: var(--primary-medium);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--highlight);
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--accent-light);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--section-bg);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .content-area {
                gap: 20px;
            }
            article, aside {
                padding: 20px;
            }
            .related-links ul {
                flex-direction: column;
            }
        }
