        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .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;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2332 0%, #0a0e17 100%);
            border-bottom: 1px solid #2a3446;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd43b, #f08c00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #b0b7c3;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #ffd43b;
            text-decoration: none;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffd43b;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd43b;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a2332;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a3446;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #b0b7c3;
            padding: 0.8rem 0;
            border-bottom: 1px solid #2a3446;
        }
        .nav-mobile a:hover {
            color: #ffd43b;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a94a6;
        }
        .breadcrumb a {
            color: #8a94a6;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .main-content {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 35, 50, 0.7);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #f08c00;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #74c0fc;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3446;
        }
        h3 {
            font-size: 1.5rem;
            color: #b197fc;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #63e6be;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #b0b7c3;
            background: rgba(42, 52, 70, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #4dabf7;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: rgba(255, 212, 59, 0.1);
            border: 1px solid rgba(255, 212, 59, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(42, 52, 70, 0.7);
            border-radius: 8px;
            overflow: hidden;
        }
        .specs-table th, .specs-table td {
            padding: 1rem;
            border: 1px solid #3a4559;
            text-align: left;
        }
        .specs-table th {
            background: #1a2332;
            color: #ffd43b;
            font-weight: 600;
        }
        .specs-table tr:nth-child(even) {
            background: rgba(58, 69, 89, 0.3);
        }
        .rating {
            color: #ffd43b;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .sidebar {
            background: rgba(26, 35, 50, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: #74c0fc;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a3446;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            background: #2a3446;
            border: 1px solid #3a4559;
            border-radius: 5px 0 0 5px;
            color: #e0e0e0;
        }
        .search-form button {
            background: #4dabf7;
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #339af0;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            display: block;
            padding: 0.6rem;
            background: rgba(42, 52, 70, 0.5);
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .quick-links a:hover {
            background: #2a3446;
            transform: translateX(5px);
            text-decoration: none;
        }
        .interaction-forms {
            background: rgba(26, 35, 50, 0.9);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border-top: 3px solid #f08c00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #b0b7c3;
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: #2a3446;
            border: 1px solid #3a4559;
            border-radius: 5px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #40c057, #2f9e44);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #495057;
            cursor: pointer;
        }
        .star-rating .star {
            transition: color 0.2s ease;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd43b;
        }
        .site-footer {
            background: #1a2332;
            border-top: 1px solid #2a3446;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: #ffd43b;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #8a94a6;
        }
        .footer-links a:hover {
            color: #ffd43b;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background: rgba(42, 52, 70, 0.5);
            border-radius: 5px;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: #2a3446;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3446;
            color: #8a94a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
                top: 0;
            }
        }
