        * {
            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: #0a0a12;
            background-image: radial-gradient(circle at 15% 20%, rgba(30, 60, 114, 0.1) 0%, transparent 20%),
                              radial-gradient(circle at 85% 80%, rgba(114, 30, 60, 0.1) 0%, transparent 20%);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(77, 171, 247, 0.3);
            background-color: rgba(10, 10, 18, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Agency FB', 'Arial Narrow', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #4dabf7 0%, #da77f2 50%, #ff6b6b 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            animation: logo-glow 1s ease-in-out infinite alternate;
        }
        @keyframes logo-glow {
            from { filter: drop-shadow(0 0 5px #4dabf7); }
            to { filter: drop-shadow(0 0 15px #da77f2); }
        }
        .main-nav ul {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            color: #c1c1c1;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #4dabf7, #da77f2);
            transition: width 0.4s ease;
        }
        .main-nav a:hover:after,
        .main-nav a:focus:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #4dabf7;
            cursor: pointer;
            padding: 0.5rem;
        }
        .hamburger:focus {
            outline: 2px dashed #4dabf7;
        }
        .breadcrumb {
            padding: 1.5rem 0 1rem;
            font-size: 0.95rem;
            color: #8a8a8a;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin-left: 0.5rem;
            color: #666;
        }
        .search-module {
            background: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            margin: 2.5rem 0;
            border: 1px solid rgba(77, 171, 247, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .search-module h2 {
            margin-bottom: 1.5rem;
            color: #74c0fc;
        }
        .search-form {
            display: flex;
            max-width: 600px;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #4dabf7;
            border-right: none;
            border-radius: 8px 0 0 8px;
            background: rgba(10, 15, 25, 0.8);
            color: #fff;
            font-size: 1.1rem;
        }
        .search-input:focus {
            outline: none;
            background: rgba(15, 20, 35, 0.9);
            box-shadow: inset 0 0 10px rgba(77, 171, 247, 0.3);
        }
        .search-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #339af0, #228be6);
            box-shadow: 0 0 15px rgba(51, 154, 240, 0.7);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0 4rem;
        }
        article {
            background: rgba(15, 18, 28, 0.8);
            border-radius: 16px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        article h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #ffffff;
            background: linear-gradient(to right, #74c0fc, #da77f2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        article h2 {
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            color: #4dabf7;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid rgba(77, 171, 247, 0.3);
        }
        article h3 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            color: #da77f2;
        }
        article h4 {
            font-size: 1.4rem;
            margin: 2rem 0 0.8rem;
            color: #ffa94d;
        }
        article p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.4em;
            vertical-align: middle;
            margin: 0 0.2rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(77, 171, 247, 0.15), transparent);
            border-left: 5px solid #4dabf7;
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
            font-size: 1.2rem;
            color: #e6f2ff;
        }
        .article-img {
            margin: 3rem auto;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid rgba(77, 171, 247, 0.4);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            max-width: 900px;
        }
        .article-img img {
            width: 100%;
            transition: transform 0.6s ease;
        }
        .article-img:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
        }
        aside {
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            background: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(77, 171, 247, 0.2);
        }
        .sidebar-widget h3 {
            color: #74c0fc;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .widget-links ul {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 1.2rem;
        }
        .widget-links a {
            display: block;
            padding: 0.8rem 1.2rem;
            background: rgba(30, 35, 50, 0.6);
            border-radius: 8px;
            border-left: 4px solid transparent;
            transition: all 0.3s;
        }
        .widget-links a:hover {
            background: rgba(40, 45, 70, 0.8);
            border-left-color: #da77f2;
            transform: translateX(5px);
        }
        .rating-module,
        .comment-module {
            background: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid rgba(77, 171, 247, 0.2);
        }
        .rating-module h2,
        .comment-module h2 {
            color: #74c0fc;
            margin-bottom: 1.8rem;
        }
        .stars {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd43b;
            transform: scale(1.2);
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            font-weight: 600;
            color: #c1c1c1;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            background: rgba(10, 15, 25, 0.8);
            border: 2px solid #4dabf7;
            border-radius: 8px;
            color: #fff;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            background: rgba(15, 20, 35, 0.9);
            box-shadow: 0 0 15px rgba(77, 171, 247, 0.5);
        }
        .form-textarea {
            min-height: 180px;
            resize: vertical;
        }
        .submit-btn {
            align-self: flex-start;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, #da77f2, #cc5de8);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, #cc5de8, #be4bdb);
            box-shadow: 0 0 20px rgba(204, 93, 232, 0.6);
            transform: translateY(-3px);
        }
        .site-footer {
            background: rgba(10, 12, 20, 0.95);
            border-top: 1px solid rgba(77, 171, 247, 0.3);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-widget h4 {
            color: #74c0fc;
            font-size: 1.4rem;
            margin-bottom: 1.8rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(30, 35, 50, 0.6);
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            margin: 0.5rem;
            border: 1px solid rgba(77, 171, 247, 0.3);
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(40, 45, 70, 0.8);
            border-color: #da77f2;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            article h1 {
                font-size: 2.8rem;
            }
            article h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 100px;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 100px);
                background: rgba(15, 18, 28, 0.98);
                border-left: 2px solid #4dabf7;
                padding: 2rem;
                transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
                overflow-y: auto;
                z-index: 999;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .main-nav a {
                font-size: 1.3rem;
                display: block;
                padding: 0.8rem 1rem;
                border-radius: 8px;
                background: rgba(30, 35, 50, 0.5);
            }
            .header-container {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 2.2rem;
            }
            article {
                padding: 2rem;
            }
            .search-module,
            .rating-module,
            .comment-module {
                padding: 2rem;
            }
        }
        @media (max-width: 480px) {
            .breadcrumb {
                font-size: 0.85rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px;
                border-right: 2px solid #4dabf7;
                margin-bottom: 1rem;
            }
            .search-btn {
                border-radius: 8px;
            }
        }
