        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0f15 0%, #1a1e2b 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr 300px;
            }
        }
        .site-header {
            background: rgba(22, 27, 36, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .nav-toggle {
            display: none;
        }
        .nav-toggle-label {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #4ecdc4;
            padding: 10px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(78, 205, 196, 0.15);
            color: #4ecdc4;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(40, 44, 52, 0.6);
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #4ecdc4;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #666;
        }
        .content-area {
            background: rgba(30, 33, 40, 0.85);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #444;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-top: 1.8em;
            margin-bottom: 0.7em;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #ff6b6b;
            padding-bottom: 15px;
            margin-top: 0;
            text-align: center;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.1rem;
            color: #4ecdc4;
            padding-left: 10px;
            border-left: 5px solid #ff6b6b;
        }
        h3 {
            font-size: 1.7rem;
            color: #ffd166;
        }
        h4 {
            font-size: 1.4rem;
            color: #9dccff;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #b0bec5;
            font-weight: 300;
            margin-bottom: 2em;
            text-align: center;
            padding: 15px;
            background: rgba(40, 44, 52, 0.7);
            border-radius: 8px;
            border-left: 4px solid #4ecdc4;
        }
        strong, b {
            color: #ffd166;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
            border-left: 5px solid #4ecdc4;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            background: rgba(30, 33, 40, 0.85);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 100px;
            border: 1px solid #444;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #ff6b6b;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #444;
        }
        .search-form, .comment-form, .rating-form {
            background: rgba(40, 44, 52, 0.9);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border: 1px solid #555;
        }
        .form-group {
            margin-bottom: 18px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #ccc;
            font-weight: 500;
        }
        input[type="text"],
        input[type="email"],
        textarea,
        select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid #555;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #4ecdc4;
            box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            margin: 10px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: #ffd166;
        }
        button,
        .btn {
            background: linear-gradient(90deg, #ff6b6b, #ff8e53);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }
        button:hover,
        .btn:hover {
            background: linear-gradient(90deg, #ff8e53, #ff6b6b);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 107, 0.3);
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
            border: 3px solid #444;
            border-radius: 10px;
            overflow: hidden;
            max-width: 800px;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #aaa;
            padding: 10px;
            background: rgba(0, 0, 0, 0.5);
        }
        .internal-links {
            background: rgba(40, 44, 52, 0.7);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            list-style: none;
        }
        .internal-links li {
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: background 0.3s;
        }
        .internal-links li:hover {
            background: rgba(78, 205, 196, 0.15);
        }
        .site-footer {
            background: rgba(22, 27, 36, 0.98);
            margin-top: 60px;
            padding: 40px 0 20px;
            border-top: 1px solid #333;
        }
        .footer-widgets {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        friend-link {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        friend-link:hover {
            background: rgba(78, 205, 196, 0.15);
            border-left-color: #4ecdc4;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: center;
            color: #ff8e53;
            font-size: 0.95rem;
            margin-top: 20px;
            font-style: italic;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-toggle-label { display: block; order: 2; position: absolute; right: 20px; top: 20px; }
            .main-nav { width: 100%; order: 3; display: none; }
            .main-nav ul { flex-direction: column; gap: 10px; padding-top: 15px; }
            .nav-toggle:checked ~ .main-nav { display: block; }
            .content-area, .sidebar { padding: 20px; }
        }
