        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-purple: #9c27b0;
            --secondary-pink: #e91e63;
            --accent-teal: #009688;
            --light-bg: #f5f5f5;
            --dark-bg: #333;
            --text-dark: #222;
            --text-light: #eee;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--light-bg);
            max-width: 1200px;
            margin: 0 auto;
        }
        h1, h2, h3, h4 {
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            color: var(--primary-purple);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            padding: 1rem;
            border-bottom: 4px dashed var(--accent-teal);
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-pink);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-teal);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        a {
            color: var(--primary-purple);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-pink);
            text-decoration: underline;
        }
        strong {
            color: var(--secondary-pink);
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #555;
        }
        blockquote {
            border-left: 5px solid var(--accent-teal);
            padding-left: 1.5rem;
            margin: 2rem;
            font-style: italic;
            background-color: rgba(0,150,136,0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #ffeb3b;
        }
        .breadcrumb {
            padding: 1rem;
            background-color: white;
            border-radius: 8px;
            margin: 1rem 0;
            box-shadow: var(--shadow);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-purple);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: block;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .hero {
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(rgba(156,39,176,0.9), rgba(233,30,99,0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .hero h1 {
            color: white;
            border-bottom: none;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            text-align: center;
        }
        .content-section {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .content-section:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .interactive-box {
            background-color: rgba(156,39,176,0.05);
            border-left: 5px solid var(--primary-purple);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-purple);
            outline: none;
        }
        .btn {
            background: linear-gradient(to right, var(--primary-purple), var(--secondary-pink));
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(156,39,176,0.3);
            text-decoration: none;
            color: white;
        }
        #search-form, #comment-form, #rating-form {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            direction: rtl; 
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star:hover ~ .star {
            color: #ff9800;
        }
        .star.selected {
            color: #ff9800;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 2rem;
            margin-top: 3rem;
            border-radius: 12px 12px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            border-bottom: 2px solid var(--accent-teal);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        friend-link a {
            color: #bb86fc;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav ul.show {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 20px;
            }
            .hero {
                padding: 2rem 1rem;
            }
        }
