:root {
            --primary-color: #FF6B9D;
            --secondary-color: #8A2BE2;
            --accent-color: #00CED1;
            --dark-color: #2C003E;
            --light-color: #F8F9FA;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover,
        .nav-links a.active {
            border-bottom-color: var(--primary-color);
            color: var(--dark-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-color);
        }
        .breadcrumb {
            background: #f0f0f0;
            padding: 12px 20px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .hero {
            background: linear-gradient(rgba(44, 0, 62, 0.85), rgba(138, 43, 226, 0.8)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 20px;
            text-align: center;
            border-radius: var(--border-radius);
            margin: 30px 0;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 18px 25px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--secondary-color);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .content {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        article h2, article h3, article h4 {
            margin-top: 35px;
            margin-bottom: 15px;
            color: var(--dark-color);
            line-height: 1.3;
        }
        article h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
        }
        article h4 {
            font-size: 1.4rem;
            color: var(--primary-color);
        }
        article p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffef78 0%, #ffef78 100%);
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 700;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 25px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: translateY(-5px);
        }
        .inset-box {
            background: #f9f7ff;
            border-left: 4px solid var(--secondary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        sidebar {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            color: var(--dark-color);
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: gold;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: var(--secondary-color);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            resize: vertical;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .comment-form button {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: #00b3b5;
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: white;
                width: 250px;
                height: calc(100vh - 80px);
                padding: 30px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: 0.4s;
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 50px 20px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content, sidebar {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
