:root {
            --primary: #fa4454;
            --primary-dark: #d63745;
            --secondary: #0f1923;
            --accent: #ff4655;
            --light-bg: #ece8e1;
            --dark-bg: #0f1923;
            --text-light: #f0f0f0;
            --text-dark: #333333;
            --gray-border: #383e4a;
            --transition: all 0.3s ease;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            --radius: 8px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1923;
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary);
            border-bottom: 2px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), #ff8e4d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--light-bg);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            border-bottom: 2px solid var(--primary);
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            padding: 20px;
            border-top: 1px solid var(--gray-border);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 10px;
            border-left: 3px solid var(--primary);
            background-color: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(15, 25, 35, 0.9);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb span {
            color: var(--primary);
        }
        .search-section {
            background: linear-gradient(135deg, #1a2a3a, #0f1923);
            padding: 40px 0;
            text-align: center;
            border-bottom: 1px solid var(--gray-border);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 18px 20px;
            border: none;
            font-size: 1.1rem;
            background-color: #fff;
            color: var(--text-dark);
        }
        .search-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--primary-dark);
        }
        main {
            padding: 40px 0;
            background-color: #0f1923;
        }
        .article-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--gray-border);
        }
        .article-header h1 {
            font-size: 3rem;
            color: var(--light-bg);
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            color: #aaa;
            font-size: 0.95rem;
        }
        .last-updated {
            color: var(--primary);
            font-weight: bold;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid var(--gray-border);
        }
        .article-content h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--gray-border);
        }
        .article-content h3 {
            color: #ff8e4d;
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        .article-content h4 {
            color: #ece8e1;
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            line-height: 1.8;
            text-align: justify;
        }
        .article-content strong {
            color: var(--accent);
            font-weight: 700;
        }
        .article-content em {
            color: #aaa;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(250, 68, 84, 0.1), rgba(15, 25, 35, 0.7));
            border-left: 5px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 30px 0;
            border: 3px solid var(--primary);
            box-shadow: var(--shadow);
        }
        .link-list {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: var(--radius);
            margin: 30px 0;
        }
        .link-list ul {
            list-style: none;
            columns: 2;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '🔗';
            position: absolute;
            left: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--gray-border);
            border-radius: var(--radius);
            padding: 25px;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--gray-border);
            font-size: 1.5rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: gold;
            transform: scale(1.2);
        }
        .rating-widget input,
        .rating-widget textarea,
        .comment-form input,
        .comment-form textarea {
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--gray-border);
            border-radius: var(--radius);
            color: white;
            font-size: 1rem;
        }
        .rating-widget button,
        .comment-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 15px;
            border-radius: var(--radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 25px;
        }
        .comment {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: var(--radius);
            border-left: 3px solid var(--gray-border);
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 5px;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #aaa;
        }
        footer {
            background-color: #080f17;
            padding: 60px 0 30px;
            border-top: 3px solid var(--primary);
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            color: var(--light-bg);
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 12px;
        }
        .footer-col a {
            color: #aaa;
        }
        .footer-col a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(250, 68, 84, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--gray-border);
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .article-content p {
                font-size: 1.05rem;
            }
            .link-list ul {
                columns: 1;
            }
        }
