        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 15px 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #60a5fa;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #38bdf8;
        }
        .logo a:hover {
            color: #60a5fa;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #334155;
            color: #38bdf8;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #60a5fa;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #1e293b;
            margin-top: 5px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #94a3b8;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.5rem;
            color: #38bdf8;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 1.5rem;
            color: #94a3b8;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #334155;
            padding: 20px;
            border-left: 5px solid #60a5fa;
            margin: 20px 0;
            border-radius: 5px;
        }
        .highlight strong {
            color: #38bdf8;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-img {
            margin: 25px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        aside {
            background-color: #1e293b;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            align-self: start;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #38bdf8;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #475569;
            background-color: #334155;
            color: #e2e8f0;
            font-size: 1rem;
        }
        button {
            padding: 12px 20px;
            background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            font-size: 1.5rem;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .web-links {
            background-color: #1e293b;
            padding: 30px 0;
            margin-top: 40px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }
        @media (max-width: 768px) {
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #334155;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #475569;
        }
        footer {
            background-color: #0f172a;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #334155;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1e293b;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
