        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #8a2be2;
            --primary-dark: #6a1cb0;
            --secondary-color: #ff9f00;
            --accent-color: #00c2ff;
            --light-bg: #f9f5ff;
            --dark-bg: #1a0b2e;
            --text-dark: #333;
            --text-light: #f5f5f5;
            --gray-border: #e0e0e0;
            --success-color: #4CAF50;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 10px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        ul, ol {
            padding-left: 1.5em;
            margin-bottom: 1.5em;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 100%);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ff9f00, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            display: inline-block;
            padding: 5px 0;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--secondary-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #888;
        }
        .hero {
            background: linear-gradient(rgba(138, 43, 226, 0.05), rgba(255, 159, 0, 0.05));
            padding: 3rem 1rem;
            text-align: center;
            border-radius: var(--radius);
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 1.5rem;
            color: #555;
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.2rem;
            border: 2px solid var(--gray-border);
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-btn {
            background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: var(--radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(138, 43, 226, 0.3);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: var(--radius);
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.3;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }
        h1 {
            font-size: 3rem;
            border-bottom: 4px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.4rem;
            color: #555;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 500;
            color: #444;
            background-color: #f0f8ff;
            padding: 1.5rem;
            border-left: 5px solid var(--accent-color);
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2em 0.4em;
            border-radius: 4px;
            font-weight: 600;
        }
        .note {
            background-color: #e8f4fd;
            border-left: 4px solid var(--accent-color);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .warning {
            background-color: #fff4e5;
            border-left: 4px solid var(--secondary-color);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .value-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
        }
        .value-table th {
            background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 1.2rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .value-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .value-table tr:nth-child(even) {
            background-color: var(--light-bg);
        }
        .value-table tr:hover {
            background-color: #e6e0ff;
            transform: scale(1.002);
            transition: var(--transition);
        }
        .pet-tier {
            display: inline-block;
            padding: 0.3em 0.8em;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            color: white;
            text-shadow: 0 1px 1px rgba(0,0,0,0.2);
        }
        .tier-1 { background-color: #ff4757; }
        .tier-2 { background-color: #ff9f00; }
        .tier-3 { background-color: #2ed573; }
        .tier-4 { background-color: #1e90ff; }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        .card-img {
            height: 180px;
            width: 100%;
            object-fit: cover;
        }
        .card-body {
            padding: 1.5rem;
        }
        .interaction-section {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 3rem 0;
        }
        .rating-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #ffc107;
            transform: scale(1.2);
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 2px solid var(--gray-border);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .comment-form textarea:focus, .comment-form input:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: var(--radius);
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: linear-gradient(to right, var(--primary-dark), #5a0a9c);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(138, 43, 226, 0.3);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h3 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid rgba(255, 159, 0, 0.3);
            padding-bottom: 0.5rem;
        }
        .footer-col ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.8rem;
        }
        .footer-col a {
            color: #ccc;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-col a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
        }
        friend-link a {
            color: var(--accent-color);
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            h4 { font-size: 1.3rem; }
            .content-wrapper {
                gap: 2rem;
            }
            .footer-links {
                flex-direction: column;
            }
        }
