:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent-light: #ff7b9c;
            --text: #f1f1f1;
            --text-muted: #b0b0b0;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border: rgba(255, 255, 255, 0.1);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--primary);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--secondary);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent), #00dbde);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(0,0,0,0.2);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-muted);
        }
        .hero {
            padding: 3rem 0;
            text-align: center;
            background: radial-gradient(circle at center, var(--secondary), var(--primary));
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: rgba(255,255,255,0.1);
            color: var(--text);
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: var(--text-muted);
        }
        .search-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--accent-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(to right, #fff, var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: var(--accent-light);
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
            color: #00dbde;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(233, 69, 96, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .article-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .link-inline {
            font-weight: 600;
            border-bottom: 1px dashed var(--accent);
        }
        .content-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .content-card {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .content-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: gold;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        textarea, select, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255,255,255,0.08);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-family: inherit;
        }
        .submit-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: var(--accent-light);
        }
        .site-footer {
            background: var(--secondary);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid var(--border);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        friend-link {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(233, 69, 96, 0.2);
            border-color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--secondary);
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
        }
        .emoji { font-size: 1.2em; }
        .text-bold { font-weight: 700; }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
