        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
            color: white;
            padding: 1rem 2rem;
            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;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            gap: 2rem;
        }
        .nav-list li a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-list li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.75rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #c5cae9;
        }
        .breadcrumb a {
            color: #5c6bc0;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #1a237e;
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #777;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .main-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #ff9800;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a148c;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ff9800;
        }
        h3 {
            font-size: 1.6rem;
            color: #5c6bc0;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #7986cb;
            margin: 1.5rem 0 0.75rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 1rem;
            border-left: 4px solid #ff9800;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        b {
            color: #1a237e;
        }
        .search-box, .comment-form, .rating-form {
            background: #f3e5f5;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.75rem;
            border: 2px solid #d1c4e9;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #7b1fa2;
        }
        button {
            background: linear-gradient(90deg, #7b1fa2, #4a148c);
            color: white;
            border: none;
            padding: 0.85rem 1.5rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(123, 31, 162, 0.3);
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            border: 5px solid #ff9800;
        }
        .inline-link {
            color: #7b1fa2;
            font-weight: 600;
            border-bottom: 2px dotted #7b1fa2;
            transition: color 0.3s;
        }
        .inline-link:hover {
            color: #4a148c;
            border-bottom-style: solid;
        }
        .footer {
            background: #1a237e;
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: #ff9800;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            color: #bbdefb;
            transition: color 0.3s;
        }
        friend-link:hover {
            color: #ff9800;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #c5cae9;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #4a148c;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 2px solid #ff9800;
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list li {
                margin: 0.5rem 0;
            }
            .breadcrumb {
                padding: 0.75rem 1rem;
            }
            .container {
                padding: 0 1rem;
            }
            .main-content, .sidebar {
                padding: 1.5rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .last-updated {
            font-style: italic;
            color: #777;
            text-align: right;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
