* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2a9df4;
            --secondary: #ff4655;
            --dark: #0f1419;
            --light: #f8f9fa;
            --gray: #657786;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.6;
        }
        .container {
            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: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--primary);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: white;
            padding: 1rem 0;
            margin-bottom: 2rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--gray);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: #e8f4fc;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .keyword {
            color: var(--secondary);
            font-weight: 700;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        aside {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(42, 157, 244, 0.2);
        }
        button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        button:hover {
            background-color: #1a8cd8;
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            display: block;
            text-align: center;
            padding: 0.5rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--primary);
            background-color: rgba(42, 157, 244, 0.1);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                padding: 1rem;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            nav.active ul {
                transform: translateY(0);
                opacity: 1;
            }
            nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
