        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #00b4d8;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #90e0ef;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #00b4d8;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #00b4d8;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 180, 216, 0.7);
        }
        .logo span {
            color: #ff9100;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 25px;
            border: 2px solid transparent;
        }
        .desktop-nav a:hover {
            border-color: #00b4d8;
            background: rgba(0, 180, 216, 0.1);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #00b4d8;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 20, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-left: 4px solid #00b4d8;
            background: rgba(255,255,255,0.05);
            border-radius: 0 8px 8px 0;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255,255,255,0.03);
            margin-bottom: 30px;
            border-bottom: 1px solid #333;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #00b4d8;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: rgba(25, 25, 40, 0.8);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: #00b4d8;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid #ff9100;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #ff9100;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #00b4d8;
        }
        h3 {
            font-size: 1.5rem;
            color: #90e0ef;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 180, 216, 0.15);
            border-left: 5px solid #00b4d8;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-card {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #00b4d8;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 180, 216, 0.3);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: #ff9100;
            margin-bottom: 15px;
        }
        aside {
            background: rgba(25, 25, 40, 0.8);
            border-radius: 20px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 140px;
            border: 1px solid #333;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ff9100;
        }
        .search-box {
            display: flex;
            margin-bottom: 20px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #00b4d8;
            border-radius: 8px 0 0 8px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            background: #00b4d8;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #0096c7;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars span:hover {
            transform: scale(1.3);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            border: 2px solid #444;
            color: white;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #00b4d8, #0096c7);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .comment-form button:hover {
            opacity: 0.9;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
            padding: 30px;
            background: rgba(0, 180, 216, 0.05);
            border-radius: 15px;
            border: 1px dashed #00b4d8;
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 180, 216, 0.1);
        }
        footer {
            background: rgba(5, 5, 15, 0.95);
            padding: 40px 0 20px;
            border-top: 2px solid #00b4d8;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 25px 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .feature-box {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animated {
            animation: fadeInUp 0.8s ease-out;
        }
