        * {
            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.6;
            color: #333;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        ul, ol {
            list-style-position: inside;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff4655;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            color: #2a2a72;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.8rem;
            color: #444;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #666;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9db;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        strong {
            color: #2a2a72;
        }
        em {
            color: #ff4655;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        section {
            margin-bottom: 3rem;
            background-color: #fff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        header {
            background: linear-gradient(135deg, #2a2a72 0%, #009ffd 100%);
            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;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffcc00;
            text-shadow: 2px 2px 0 #ff4655;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo span {
            color: #fff;
        }
        nav ul {
            display: flex;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: #ffcc00;
            color: #2a2a72;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #888;
        }
        .breadcrumb a:hover {
            color: #ff4655;
            text-decoration: underline;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.5rem;
            background-color: #f1f3f5;
            color: #666;
        }
        .internal-link {
            color: #009ffd;
            font-weight: 600;
            border-bottom: 1px dashed #009ffd;
        }
        .internal-link:hover {
            color: #ff4655;
            border-bottom-style: solid;
        }
        .search-section, .comment-section, .rating-section {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2a2a72;
            margin-bottom: 1.5rem;
        }
        .section-title i {
            color: #ffcc00;
        }
        form {
            display: grid;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 2px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #009ffd;
        }
        button, .btn {
            background: linear-gradient(to right, #ff4655, #ff6b6b);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #e63946, #ff5252);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.3);
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars:hover .star {
            color: #ffcc00;
        }
        .star:hover,
        .star:hover ~ .star {
            color: #ffcc00;
        }
        .star.active {
            color: #ffcc00;
        }
        footer {
            background-color: #2a2a72;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        friend-link a {
            color: #ffcc00;
            padding: 0.3rem 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            nav ul { flex-direction: column; gap: 0.5rem; margin-top: 1rem; width: 100%; display: none; }
            nav ul.active { display: flex; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            body { font-size: 16px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            section { padding: 1.5rem; }
            .container { padding: 0 15px; }
        }
        @media (max-width: 480px) {
            .footer-container { grid-template-columns: 1fr; }
        }
