        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #00B2FF;
            --secondary: #FF4655;
            --accent: #FFD166;
            --dark: #0F1419;
            --light: #F7F9FC;
            --gray: #5B7083;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #1a2b3c 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            background-color: var(--primary);
            color: var(--dark);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #444;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            background: linear-gradient(90deg, #e3f2fd, #f3e5f5);
            padding: 1.5rem;
            border-left: 5px solid var(--primary);
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #ffd700;
            margin: 1.5rem 0;
        }
        .article-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .search-box {
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #0090d6;
        }
        .interaction {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .rating-form, .comment-form {
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        .btn:hover {
            background: #e03a4c;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 70, 85, 0.3);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 2rem 0;
            border-top: 2px solid #eee;
            border-bottom: 2px solid #eee;
            margin: 3rem 0 2rem;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--dark);
            font-weight: 600;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 2.5rem 0;
            text-align: center;
        }
        .copyright {
            margin-top: 1.5rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: var(--dark);
                padding: 2rem;
                transition: left 0.5s ease;
                z-index: 999;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            nav ul.show {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content, .sidebar {
                padding: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
