        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --highlight: #f9a826;
            --light: #f0f0f0;
            --dark: #0f3460;
            --text: #333;
            --text-light: #777;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .main-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--highlight);
        }
        .logo span {
            color: white;
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--highlight);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--highlight);
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--highlight);
        }
        .breadcrumb {
            background: var(--dark);
            color: #ccc;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--highlight);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(22,33,62,0.85), rgba(22,33,62,0.9)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .article-body h2 {
            color: var(--secondary);
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
        }
        .article-body h3 {
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong {
            color: var(--accent);
            font-weight: 700;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-img {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 10px;
            background: #f9f9f9;
        }
        .inline-link {
            color: var(--accent);
            font-weight: 600;
            border-bottom: 1px dotted var(--accent);
        }
        .inline-link:hover {
            color: var(--dark);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 30px;
            margin-bottom: 10px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: var(--highlight);
        }
        .rating-stars i {
            cursor: pointer;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            resize: vertical;
        }
        .footer-links {
            background: var(--secondary);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            margin: 10px;
            padding: 12px 25px;
            border-radius: 30px;
            color: #ccc;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .web-link:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }
        .links-container {
            text-align: center;
        }
        .main-footer {
            background: var(--primary);
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .main-footer a {
            color: var(--highlight);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--secondary);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: left 0.5s ease;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                left: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-body {
                padding: 2rem;
            }
        }
