        * {
            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, #f9f4ff 0%, #fff0f9 100%);
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: #ff6b8b;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff3e6d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #ff9a9e, #fad0c4);
            padding: 20px 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;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Comic Sans MS', cursive, sans-serif;
            background: linear-gradient(45deg, #ff6b8b, #ffd166);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 5px 10px;
            border-radius: 10px;
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 8px;
            background: rgba(255,255,255,0.2);
            transition: background 0.3s ease;
        }
        .nav-links li a:hover {
            background: rgba(255,255,255,0.4);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #fff9fb;
            margin-bottom: 20px;
            border-bottom: 1px solid #ffd6e0;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #ff6b8b;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #999;
        }
        main {
            padding: 30px 0;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 3rem;
            color: #ff6b8b;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            color: #ff9a9e;
            margin: 40px 0 20px;
            border-left: 6px solid #ffd166;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffb347;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #7bc043;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: #fffacd;
            padding: 15px;
            border-left: 5px solid #ffd700;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .bold {
            font-weight: 900;
            color: #ff3e6d;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        form {
            background: #f9f4ff;
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #555;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ffd6e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #ff6b8b;
            outline: none;
        }
        button {
            background: linear-gradient(90deg, #ff6b8b, #ff9a9e);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            font-weight: bold;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255,107,139,0.4);
        }
        .form-row {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .form-row .form-group {
            flex: 1;
            min-width: 200px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .links-section {
            background: #e6fff9;
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        .links-section li a {
            display: block;
            padding: 15px;
            background: #fff;
            border-radius: 10px;
            color: #0077cc;
            font-weight: 600;
            border: 2px solid #b3e0ff;
            transition: all 0.3s ease;
        }
        .links-section li a:hover {
            background: #b3e0ff;
            color: #005599;
            transform: scale(1.02);
        }
        footer {
            background: linear-gradient(90deg, #333, #555);
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        friend-link a {
            color: #ff9a9e;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #666;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(255,154,158,0.95);
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .form-row {
                flex-direction: column;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #888;
            text-align: right;
            padding: 10px 20px;
            font-style: italic;
        }
