        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1a237e 0%, #283593 100%);
            color: white;
            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 a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            color: #ffecb3;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        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;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #e8eaf6;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #1a237e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin: 2rem 0;
        }
        h1 {
            color: #1a237e;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid #ffd600;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #283593;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #ffd600;
        }
        h3 {
            color: #3949ab;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #ff9800;
            margin: 2rem 0;
            font-weight: 600;
            color: #5d4037;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        .featured-image {
            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;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .search-box {
            background: #f5f5f5;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box input {
            width: 70%;
            padding: 1rem;
            border: 2px solid #3949ab;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #3949ab, #1a237e);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #1a237e, #3949ab);
            transform: translateY(-2px);
        }
        .comment-section, .rating-section {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid #e0e0e0;
        }
        .comment-section h2, .rating-section h2 {
            color: #d84315;
        }
        textarea, select, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin: 1rem 0;
            border: 2px solid #bdbdbd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        textarea:focus, select:focus, input:focus {
            border-color: #3949ab;
            outline: none;
            box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.2);
        }
        .submit-btn {
            background: linear-gradient(90deg, #43a047, #2e7d32);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #2e7d32, #43a047);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.15);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ffd600;
            cursor: pointer;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            background: #e3f2fd;
        }
        .web-link a {
            color: #1a237e;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            display: block;
        }
        .web-link a:hover {
            color: #ff5722;
            text-decoration: underline;
        }
        footer {
            background: linear-gradient(90deg, #1a237e 0%, #0d1b6b 100%);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #bbdefb;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            nav ul { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #283593;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            nav.active ul { display: flex; }
            .search-box input { width: 60%; }
            .footer-content { flex-direction: column; }
        }
        @media (max-width: 576px) {
            main { padding: 1.5rem; }
            h1 { font-size: 2rem; }
            .search-box input { width: 100%; border-radius: 50px; margin-bottom: 1rem; }
            .search-box button { width: 100%; border-radius: 50px; }
            .long-tail-links { grid-template-columns: 1fr; }
        }
        @media print {
            header, footer, .search-box, .comment-section, .rating-section, .long-tail-links { display: none; }
            body { background: white; }
            main { box-shadow: none; }
        }
