        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff3e80;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { color: var(--accent); }
        .section-padding { padding: 60px 0; }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
        }
        header {
            background: var(--dark);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            background: linear-gradient(to right, #ff3e80, #6a11cb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i { color: #ff3e80; }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav.desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: var(--transition);
        }
        nav.desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ff3e80;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 15px;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background-color: rgba(0,0,0,0.05);
            padding: 12px 20px;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ff3e80, #6a11cb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        .search-section {
            background: white;
            padding: 30px;
            border-radius: 15px;
            max-width: 800px;
            margin: -50px auto 30px;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 2;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            padding: 15px 30px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(to right, #5a0cb9, #1c68f0);
        }
        main {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
        }
        h1 { font-size: 2.8rem; margin-bottom: 1.5rem; color: var(--dark); }
        h2 { font-size: 2.2rem; margin: 2.5rem 0 1.2rem; color: var(--primary); border-bottom: 3px solid var(--secondary); padding-bottom: 10px; }
        h3 { font-size: 1.8rem; margin: 2rem 0 1rem; color: var(--secondary); }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: var(--accent); }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .content-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .content-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .content-img img:hover {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 1.2rem;
        }
        li { margin-bottom: 0.5rem; }
        a.content-link {
            color: var(--secondary);
            text-decoration: none;
            border-bottom: 1px dotted var(--secondary);
            transition: var(--transition);
        }
        a.content-link:hover {
            color: var(--accent);
            border-bottom: 1px solid var(--accent);
        }
        blockquote {
            background: linear-gradient(to right, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
            border-radius: 0 10px 10px 0;
        }
        .stats-box {
            background: var(--light);
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            border-left: 5px solid var(--accent);
        }
        .interactive-section {
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }
        .rating-section, .comments-section {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .rating-form, .comment-form {
            margin-top: 20px;
            display: grid;
            gap: 15px;
        }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
        }
        .footer-links h3, .footer-contact h3 {
            color: #ff3e80;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        friend-link a {
            color: #6a11cb;
            font-weight: bold;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
        }
        @media (max-width: 768px) {
            .header-container { padding: 0 15px; }
            nav.desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero { padding: 80px 20px; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1rem; }
            .search-section { padding: 20px; margin: -30px 20px 30px; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 50px; margin-bottom: 10px; }
            .search-form button { border-radius: 50px; }
            main { padding: 25px; }
            .footer-container { grid-template-columns: 1fr; text-align: center; }
        }
