        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            color: #f1f2f6;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4bcffa;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #00d8d6;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff9f1a, #ff3838);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        nav a:hover {
            background: rgba(76, 207, 250, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4bcffa;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:last-child {
            color: #4bcffa;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: rgba(25, 42, 86, 0.7);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(76, 207, 250, 0.1);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ff9f1a;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: #4bcffa;
            border-left: 5px solid #ff3838;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #00d8d6;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 159, 26, 0.2), rgba(255, 56, 56, 0.2));
            border-left: 4px solid #ff9f1a;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .feature-img {
            width: 100%;
            margin: 2.5rem 0;
            border: 3px solid #00d8d6;
            box-shadow: 0 10px 25px rgba(0, 216, 214, 0.3);
        }
        .module {
            background: rgba(15, 30, 60, 0.8);
            border-radius: 15px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid rgba(76, 207, 250, 0.3);
        }
        .module h3 {
            margin-top: 0;
        }
        .module form {
            display: grid;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .module input, .module textarea, .module select {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #1e3799;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .module input:focus, .module textarea:focus, .module select:focus {
            outline: none;
            border-color: #4bcffa;
        }
        .module button {
            background: linear-gradient(90deg, #ff3838, #ff9f1a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .module button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 56, 56, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffd32a;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 10px;
            border: 1px solid rgba(76, 207, 250, 0.2);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(76, 207, 250, 0.1);
            transform: translateY(-5px);
        }
        footer {
            background: rgba(10, 25, 47, 0.98);
            text-align: center;
            padding: 2.5rem 0;
            margin-top: 3rem;
            border-top: 3px solid #ff3838;
        }
        .copyright {
            margin-top: 1.5rem;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 25, 47, 0.98);
                padding: 1rem;
                border-top: 2px solid #4bcffa;
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .long-tail-links {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .module {
                padding: 1.5rem;
            }
            .stars {
                font-size: 1.7rem;
            }
        }
