        * { 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.7;
            color: #333;
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #ff66cc; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ffcc00; text-shadow: 0 0 8px rgba(255, 204, 0, 0.7); }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #ff66cc;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #ff66cc, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo a { background: none; -webkit-text-fill-color: inherit; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
        }
        .nav-desktop a:hover {
            background: rgba(255, 102, 204, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff66cc;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 50, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #333;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(30, 30, 60, 0.8);
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb span { color: #ffcc00; }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .container { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(25, 25, 45, 0.9);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #444;
        }
        h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #ff66cc;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.7rem;
            color: #66ccff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #99ff99;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 102, 204, 0.1);
            border-left: 5px solid #ff66cc;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            border: 3px solid #444;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .image-wrapper img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.03);
        }
        .image-caption {
            font-style: italic;
            padding: 0.8rem;
            background: rgba(0,0,0,0.5);
            color: #ccc;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 30, 60, 0.9);
            border-radius: 15px;
            padding: 1.8rem;
            border: 1px solid #444;
        }
        .widget h3 {
            color: #ffcc00;
            margin-top: 0;
            font-size: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border-radius: 10px;
            border: 1px solid #555;
            background: rgba(10, 10, 30, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #ff66cc, #ff3366);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #ff3366, #ff66cc);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 102, 204, 0.4);
        }
        .stars {
            display: flex;
            justify-content: space-around;
            font-size: 2rem;
            color: #555;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        footer {
            margin-top: auto;
            background: rgba(10, 10, 25, 0.98);
            padding: 3rem 2rem 1.5rem;
            border-top: 3px solid #ff66cc;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 0.8rem;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 102, 204, 0.15);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .container { padding: 0 1rem; }
            article { padding: 1.5rem; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            .site-header, .breadcrumb { padding: 1rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar { animation: fadeIn 0.8s ease-out; }
