        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s;
        }
        a:hover {
            color: #e74c3c;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a1a2e;
            color: #fff;
            padding: 15px 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 {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00adb5;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffcc00;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #eee;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background: #00adb5;
            color: #fff;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #eee;
            border-radius: 2px;
            transition: 0.3s;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #2d3436;
            padding: 10px 0;
            margin-bottom: 20px;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            color: #b2bec3;
        }
        .breadcrumb a {
            color: #00adb5;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            padding-right: 20px;
        }
        h1 {
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 20px;
            border-bottom: 3px solid #00adb5;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin: 25px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #ffcc00;
        }
        h3 {
            font-size: 1.4rem;
            color: #34495e;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: #fffacd;
            padding: 15px;
            border-left: 4px solid #f39c12;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #1a1a2e;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
        }
        button {
            padding: 12px 20px;
            background: #00adb5;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        button:hover {
            background: #007b8a;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .featured-img {
            margin: 25px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .featured-img img {
            width: 100%;
            height: auto;
        }
        .footer-links {
            background: #2d3436;
            padding: 30px 0;
            margin-top: 40px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: #3b3f4a;
            padding: 12px;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: #00adb5;
            font-weight: 500;
        }
        .web-link:hover {
            background: #4a4f5c;
            transform: translateY(-3px);
            transition: all 0.3s;
        }
        footer {
            background: #1a1a2e;
            color: #b2bec3;
            text-align: center;
            padding: 20px 0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: #1a1a2e;
                width: 200px;
                padding: 20px;
                border-radius: 0 0 0 10px;
                transition: right 0.3s;
                box-shadow: -5px 5px 15px rgba(0,0,0,0.2);
            }
            #nav-toggle:checked ~ .nav-links {
                right: 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        a, button, .web-link {
            transition: all 0.3s ease;
        }
        .nav-links a:hover, button:hover {
            transform: scale(1.05);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
