* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #38a169;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #718096;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: #f5f7fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul { list-style: none; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: 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;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffd700;
        }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background: var(--secondary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: var(--dark);
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 8px;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #4a5568;
        }
        .breadcrumb {
            background: #edf2f7;
            padding: 0.8rem 0;
            margin-top: 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .cta-button {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 6px 12px rgba(229, 62, 62, 0.3);
        }
        .cta-button:hover {
            background: #c53030;
            transform: translateY(-3px);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
        }
        .content-area {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
            font-size: 1.8rem;
        }
        article h3 {
            color: var(--secondary);
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        article emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .highlight {
            background: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #ffd700;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-image:hover {
            transform: scale(1.02);
        }
        .info-box {
            background: #e6fffa;
            border: 2px solid var(--accent);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .download-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .step {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid var(--primary);
        }
        .step i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-box h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
        }
        .rating-widget, .comment-widget {
            background: #f7fafc;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .stars i {
            color: #e2e8f0;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: #f6ad55;
        }
        .rating-widget form,
        .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input,
        .comment-widget input,
        .comment-widget textarea {
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-submit:hover {
            background: #2f855a;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background: var(--primary);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #cbd5e0;
        }
        @media (max-width: 768px) {
            .header-top { flex-wrap: wrap; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1rem; }
            .content-area { padding: 1.5rem; }
            article h2 { font-size: 1.6rem; }
            .footer-content { flex-direction: column; text-align: center; }
        }
