        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFD166;
            --dark: #2D3047;
            --light: #F7FFF7;
            --gray: #6C757D;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark), #1a1c2f);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--dark);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(45, 48, 71, 0.95);
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .main-nav {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            position: relative;
        }
        .main-nav a {
            color: white;
            padding: 18px 20px;
            display: block;
            font-weight: 600;
            text-decoration: none;
        }
        .main-nav a:hover {
            background-color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
            .search-box {
                width: 200px;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--dark);
                width: 100%;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-container {
                justify-content: flex-end;
            }
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 30px;
            background: linear-gradient(to right, #4ECDC4, #2D3047);
            color: white;
            border-radius: 15px;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta {
            color: rgba(255,255,255,0.85);
            font-style: italic;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        h2 {
            color: var(--dark);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: var(--secondary);
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: #FFF9C4;
            padding: 20px;
            border-left: 5px solid var(--accent);
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        strong {
            color: var(--dark);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .link-list a {
            background: var(--secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
        }
        .link-list a:hover {
            background: var(--dark);
            text-decoration: none;
            transform: translateY(-3px);
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl;
            justify-content: center;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #FFD700;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
        }
        button[type="submit"] {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background: var(--dark);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--accent);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: rgba(255,255,255,0.05);
            margin-bottom: 10px;
            border-radius: 5px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
