        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #2c3e50;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2980b9;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f1c40f;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #e74c3c;
        }
        .logo:hover {
            transform: scale(1.02);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: #34495e;
            color: #f1c40f;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ecf0f1;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #2c3e50;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile ul {
            list-style: none;
            width: 100%;
        }
        .nav-mobile li {
            margin: 0.8rem 0;
        }
        .nav-mobile a {
            color: #ecf0f1;
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #3a506b;
        }
        .nav-mobile a:hover {
            background: #3a506b;
            color: #f1c40f;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #ecf0f1;
            font-size: 0.9rem;
            border-bottom: 1px solid #bdc3c7;
        }
        .breadcrumb a {
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: #2980b9;
        }
        .breadcrumb span {
            color: #95a5a6;
            margin: 0 8px;
        }
        .search-section {
            background: #fff;
            padding: 2rem;
            margin: 2rem auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            max-width: 800px;
        }
        .search-section h2 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #3498db;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #2980b9;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #f1c40f;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #2980b9;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #e74c3c;
        }
        h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #4a5568;
            text-align: justify;
        }
        .highlight {
            background: #fff9e6;
            border-left: 5px solid #f1c40f;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            color: #7f8c8d;
            border-left: 4px solid #3498db;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .stats-box {
            background: #e8f4fc;
            border: 2px dashed #3498db;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        b, strong {
            color: #2c3e50;
            font-weight: 700;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
        }
        .article-img img {
            width: 100%;
            height: auto;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            padding: 0.8rem;
            background: #f8f9fa;
            border-top: 1px solid #dee2e6;
        }
        .interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #dee2e6;
        }
        .interaction h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        textarea, input, select {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-size: 1rem;
        }
        .submit-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: #219653;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #f1c40f;
            cursor: pointer;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #2c3e50;
            border-radius: 10px;
        }
        .web-link {
            background: #34495e;
            padding: 1.2rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #3a506b;
            transform: translateY(-3px);
        }
        .web-link a {
            color: #ecf0f1;
            display: block;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #f1c40f;
        }
        footer {
            background: #1a252f;
            color: #bdc3c7;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #f1c40f;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: #3498db;
        }
        .copyright {
            border-top: 1px solid #2c3e50;
            padding-top: 1.5rem;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 8px; width: 100%; margin-bottom: 10px; }
            .interaction { grid-template-columns: 1fr; }
            .web-links { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            .web-links { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; }
        }
