        * {
            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, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6ee7b7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #34d399;
            text-shadow: 0 0 8px rgba(110, 231, 183, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 12, 29, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2d3748;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(90deg, #6ee7b7, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 900;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #cbd5e0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover {
            color: #6ee7b7;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #6ee7b7;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #cbd5e0;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(26, 26, 46, 0.7);
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .breadcrumb a {
            color: #a0aec0;
        }
        .breadcrumb a:hover {
            color: #6ee7b7;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(22, 33, 62, 0.7);
            border-radius: 16px;
            padding: 2.5rem;
            border: 1px solid #2d3748;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1, h2, h3, h4 {
            color: #f7fafc;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, #6ee7b7, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            border-bottom: 3px solid #2d3748;
            padding-bottom: 1rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2.2rem;
            color: #6ee7b7;
            padding-left: 0.5rem;
            border-left: 5px solid #3b82f6;
        }
        h3 {
            font-size: 1.8rem;
            color: #90cdf4;
        }
        h4 {
            font-size: 1.4rem;
            color: #cbd5e0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #cbd5e0;
            font-weight: 300;
            margin-bottom: 2rem;
        }
        .highlight {
            background: rgba(110, 231, 183, 0.1);
            border-left: 4px solid #6ee7b7;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        b, strong {
            color: #f7fafc;
            font-weight: 700;
        }
        aside {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #2d3748;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: #6ee7b7;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2d3748;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid #4a5568;
            border-radius: 8px;
            color: #f7fafc;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6ee7b7;
            box-shadow: 0 0 0 3px rgba(110, 231, 183, 0.2);
        }
        button, .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #3b82f6, #6ee7b7);
            color: #0c0c1d;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(59, 130, 246, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #4a5568;
            margin-bottom: 1rem;
        }
        .stars label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input {
            display: none;
        }
        .stars input:checked ~ label {
            color: #fbbf24;
        }
        .stars label:hover,
        .stars label:hover ~ label {
            color: #fbbf24;
        }
        .featured-img {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #3b82f6;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #a0aec0;
            padding: 0.8rem;
            background: rgba(26, 26, 46, 0.8);
        }
        .link-list {
            list-style: none;
            padding-left: 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 6px;
            border-left: 4px solid #3b82f6;
        }
        .link-list li:hover {
            background: rgba(15, 23, 42, 0.9);
            border-left-color: #6ee7b7;
        }
        footer {
            background: #0c0c1d;
            border-top: 1px solid #2d3748;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #6ee7b7;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            color: #90cdf4;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: 6px;
            border: 1px solid #3b82f6;
            font-size: 0.9rem;
        }
        friend-link:hover {
            background: rgba(59, 130, 246, 0.3);
            color: #f7fafc;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(12, 12, 29, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #2d3748;
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        .last-updated {
            font-size: 0.9rem;
            color: #a0aec0;
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #4a5568;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
