        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #e74c3c;
            padding-bottom: 0.5rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #2980b9;
            margin-top: 2.5rem;
            padding-left: 0.5rem;
            border-left: 5px solid #3498db;
        }
        h3 {
            font-size: 1.8rem;
            color: #16a085;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #2c3e50;
            background-color: #e8f4fc;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #3498db;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .term {
            color: #e74c3c;
            font-weight: bold;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        main {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem auto;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo span {
            color: #ffcc00;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover,
        .desktop-nav a:focus {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a237e;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f1f8ff;
            border-radius: 8px;
            margin: 1rem auto;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            background-color: #e8f4fc;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #3498db;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #2980b9;
        }
        .user-interaction {
            margin: 3rem 0;
            padding: 2rem;
            background-color: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        .comment-form, .rating-form {
            margin-bottom: 2.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: #2ecc71;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-button:hover {
            background-color: #27ae60;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #f1c40f;
            margin-bottom: 1rem;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .content-block {
            margin: 2.5rem 0;
            padding: 1.5rem;
            border-radius: 8px;
            background-color: #f8f9fa;
            border-left: 5px solid #3498db;
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #7f8c8d;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
            text-align: center;
            border-top: 4px solid #3498db;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #2c3e50;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-top: 0.5rem;
        }
        .long-tail-links {
            background-color: #2c3e50;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: #34495e;
            padding: 1rem;
            border-radius: 6px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #3d566e;
        }
        .web-link a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: #3498db;
        }
        footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            border-top: 1px solid #34495e;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; gap: 1rem; }
            .logo a { font-size: 2rem; }
            main { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input, .search-button { border-radius: 50px; margin-bottom: 0.5rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .links-container { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .container { padding: 0 1rem; }
            .links-container { grid-template-columns: 1fr; }
        }
