:root {
            --primary: #4a1a8c;
            --secondary: #ff9900;
            --accent: #00c9b7;
            --light: #f8f5ff;
            --dark: #1a0a2e;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(106, 26, 140, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo span {
            color: white;
            font-weight: 300;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            font-size: 1.5rem;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover, nav a.active {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        .breadcrumb {
            padding: 1rem 0 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--accent);
        }
        main {
            padding: 3rem 0;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--secondary);
            padding-left: 20px;
        }
        h2 {
            color: var(--dark);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            color: var(--primary);
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--gray);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-meta {
            display: flex;
            gap: 2rem;
            color: var(--gray);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,153,0,0.15) 0%, rgba(0,201,183,0.15) 100%);
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .internal-links {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links ul {
            columns: 2;
            list-style-position: inside;
        }
        .internal-links li {
            margin-bottom: 8px;
        }
        .internal-links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
        .internal-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0,201,183,0.2);
        }
        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255,153,0,0.3);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            color: var(--accent);
            text-decoration: none;
        }
        friend-link a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            article { padding: 2rem; }
            .internal-links ul { columns: 1; }
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            nav ul {
                flex-direction: column;
                width: 100%;
                background: var(--primary);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                display: none;
                box-shadow: var(--shadow);
            }
            nav.active ul { display: flex; }
            .header-top { padding-bottom: 1rem; }
            .search-box { flex-direction: column; }
            .search-box input, .search-box button { border-radius: 50px; width: 100%; }
            .search-box button { margin-top: 10px; padding: 15px; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeInUp 0.8s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
