        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ffd166, #06d6a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #06d6a0;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffd166;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #b0b0b0;
            font-weight: 300;
        }
        .highlight {
            background-color: rgba(6, 214, 160, 0.15);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: #06d6a0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #06d6a0;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #06d6a0;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: #06d6a0;
            color: #000;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(10px);
            padding: 80px 30px 30px;
            transition: right 0.4s ease;
            z-index: 999;
            border-left: 2px solid #06d6a0;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1.5rem;
        }
        .mobile-nav a {
            color: #e0e0e0;
            font-size: 1.3rem;
            display: block;
            padding: 10px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background-color: #06d6a0;
            color: #000;
        }
        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.8rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.03);
            margin-bottom: 2rem;
            border-radius: 0 0 10px 10px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #06d6a0;
        }
        .breadcrumb a {
            color: #b0b0b0;
        }
        .breadcrumb a:hover {
            color: #06d6a0;
        }
        .search-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .search-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #06d6a0;
            border-radius: 8px 0 0 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(90deg, #06d6a0, #04b588);
            color: #000;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #04b588, #06d6a0);
        }
        main {
            flex: 1;
            padding: 20px 0 40px;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 25px;
            border-top: 5px solid #ffd166;
        }
        .sidebar-widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border: 3px solid #06d6a0;
        }
        .featured-image figcaption {
            padding: 15px;
            background: rgba(0, 0, 0, 0.6);
            font-style: italic;
            color: #b0b0b0;
            text-align: center;
        }
        .rating-section, .comments-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 25px;
            margin: 3rem 0;
            border-left: 5px solid #ffd166;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin-bottom: 10px;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd166;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        label {
            font-weight: 600;
            color: #ccc;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #444;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #06d6a0;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ffd166, #f9c74f);
            color: #000;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            align-self: flex-start;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #f9c74f, #ffd166);
            transform: translateY(-3px);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .web-links-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(6, 214, 160, 0.1);
            border: 1px solid rgba(6, 214, 160, 0.3);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(6, 214, 160, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #fff;
            font-weight: 600;
            display: block;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 3px solid #06d6a0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .footer-column h4 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: #ffd166;
            border-bottom: 2px solid #06d6a0;
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #b0b0b0;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #06d6a0;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.95rem;
            background: rgba(0, 0, 0, 0.5);
        }
        .text-center {
            text-align: center;
        }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .p-3 { padding: 1.5rem; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            p { font-size: 1rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            .content-area, .sidebar-widget, .search-box, .rating-section, .comments-section {
                padding: 20px;
            }
        }
