        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0c0c0c;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b7a;
            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(to bottom, #1a1a1a, #0c0c0c);
            border-bottom: 3px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff4655;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            letter-spacing: 1px;
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .logo span {
            color: #fff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #ccc;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #ff4655;
            border-bottom-color: #ff4655;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #1a1a1a;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        main {
            padding: 30px 0 60px;
            min-height: 80vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 1px solid #333;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(255,70,85,0.3);
        }
        .article-meta {
            color: #999;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            color: #ff4655;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        .article-content h3 {
            color: #ff6b7a;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .article-content strong {
            color: #fff;
            font-weight: 700;
        }
        .article-content em {
            color: #ffcc00;
        }
        .highlight-box {
            background: linear-gradient(to right, #1a1a1a, #2a1a1a);
            border-left: 5px solid #ff4655;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            border: 2px solid #333;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 10px;
            font-style: italic;
        }
        .sidebar {
            background-color: #151515;
            border-radius: 8px;
            padding: 25px;
            align-self: start;
            border: 1px solid #333;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: #ff4655;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #333;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
        }
        .search-form input, .comment-form textarea, .comment-form input, .rating-form select {
            padding: 12px 15px;
            margin-bottom: 12px;
            background-color: #222;
            border: 1px solid #444;
            border-radius: 4px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(to bottom, #ff4655, #d93a48);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(to bottom, #ff5c6a, #e64553);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,70,85,0.4);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating input:checked ~ label {
            color: #ffcc00;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            color: #ccc;
            display: block;
            padding: 8px 10px;
            background-color: #222;
            border-radius: 4px;
            border-left: 3px solid transparent;
        }
        .quick-links a:hover {
            background-color: #2a2a2a;
            border-left-color: #ff4655;
            color: #fff;
        }
        .footer-links-section {
            background-color: #111;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #1a1a1a;
            padding: 15px;
            border-radius: 4px;
            text-align: center;
            border: 1px solid #333;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #ff4655;
        }
        footer {
            background-color: #0a0a0a;
            color: #777;
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid #333;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 15px;
            line-height: 1.5;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a1a1a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #333;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-wrapper {
                gap: 30px;
            }
        }
