        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8a2be2;
            --secondary: #ff6b6b;
            --accent: #4ecdc4;
            --dark: #2d3436;
            --light: #f9f9f9;
            --gray: #636e72;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3 {
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin-top: 2rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        header {
            background-color: 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 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo span {
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 8px;
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            background-color: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .breadcrumb {
            background-color: #f1f2f6;
            padding: 15px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--gray);
        }
        .hero {
            background: linear-gradient(rgba(45, 52, 54, 0.8), rgba(45, 52, 54, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin: -50px auto 50px;
            max-width: 800px;
            position: relative;
            z-index: 2;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0 35px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            opacity: 0.9;
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article p {
            text-align: justify;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .interactive {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .rating-box {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .stars i {
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea, .score-form select {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            margin-bottom: 15px;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button, .score-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover, .score-form button:hover {
            background-color: var(--primary);
        }
        .footer-links {
            background: var(--dark);
            color: white;
            padding: 40px 20px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            text-align: center;
        }
        footer {
            background: #1a1a1a;
            color: #ccc;
            text-align: center;
            padding: 30px 20px;
            font-size: 0.9rem;
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 20px;
        }
        .footer-nav a:hover {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .web-link-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .hero h1 { font-size: 2.5rem; }
            .header-container nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
                text-align: center;
            }
            .header-container nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input, .search-box button {
                border-radius: 50px;
                width: 100%;
                margin-bottom: 10px;
            }
            .web-link-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-link-container {
                grid-template-columns: 1fr;
            }
            .footer-nav {
                flex-direction: column;
                gap: 15px;
            }
        }
