* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #ff6600;
            --secondary-color: #333333;
            --accent-color: #00a8ff;
            --light-bg: #f8f9fa;
            --dark-text: #222222;
            --light-text: #666666;
            --border-color: #e0e0e0;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #ffffff;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, var(--secondary-color), #000000);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--primary-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--light-text);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }
        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }
        .mobile-nav li {
            margin: 1.5rem 0;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--primary-color);
        }
        .close-nav {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2.5rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            padding: 2.5rem;
        }
        h1 {
            color: var(--secondary-color);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 4px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--dark-text);
        }
        .highlight {
            background-color: #fff8e1;
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.15rem;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 5px;
        }
        b, strong {
            color: var(--secondary-color);
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .search-container {
            background: linear-gradient(to right, var(--accent-color), #0097e6);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin: 2.5rem 0;
            color: white;
        }
        .search-container h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 2rem;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #e55a00;
        }
        .user-interaction {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .rating-section, .comment-section {
            margin-bottom: 2.5rem;
        }
        .rating-title, .comment-title {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .rating-title i, .comment-title i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #ffcc00;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
        }
        .rating-form button, .comment-form button {
            align-self: flex-start;
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #e55a00;
            transform: translateY(-3px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            min-height: 150px;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 2rem;
            height: fit-content;
        }
        .sidebar h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .sidebar a {
            color: var(--dark-text);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        .sidebar a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        .sidebar i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        .long-tail-links {
            max-width: 1200px;
            margin: 3rem auto 2rem;
            padding: 0 1.5rem;
        }
        .long-tail-links h3 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--secondary-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 4px solid var(--accent-color);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-left-color: var(--primary-color);
        }
        .web-link a {
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .featured-image {
                height: 250px;
            }
            .content-area {
                padding: 1.5rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-box button {
                border-radius: 50px;
                padding: 1rem;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
