        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffd166;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 40px 0;
        }
        .text-center {
            text-align: center;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .highlight {
            background: linear-gradient(90deg, #ffd16622, #ffd16644);
            border-left: 4px solid #ffd166;
            padding: 15px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .badge {
            display: inline-block;
            background: #06d6a0;
            color: #000;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #06d6a0, #118ab2);
            color: #000;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(6, 214, 160, 0.3);
            text-decoration: none;
            color: #000;
        }
        .btn-secondary {
            background: linear-gradient(90deg, #ffd166, #ef476f);
        }
        header {
            background: rgba(10, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd166, #ef476f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 500;
            color: #ccc;
        }
        .desktop-nav a:hover {
            color: #ffd166;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd166;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 15, 35, 0.98);
            padding: 20px;
            border-radius: 0 0 10px 10px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #333;
            color: #ccc;
        }
        .mobile-nav a:hover {
            color: #ffd166;
            background: rgba(255,209,102,0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd166;
        }
        .breadcrumb span {
            color: #ffd166;
            font-weight: bold;
        }
        .hero {
            padding: 60px 0;
            background: radial-gradient(circle at top right, #118ab255, transparent 30%);
        }
        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 50px;
            border: 2px solid #118ab2;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #118ab2, #073b4c);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #06d6a0, #118ab2);
            transform: scale(1.05);
        }
        main {
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article h2 {
            font-size: 2.5rem;
            color: #06d6a0;
            margin-bottom: 25px;
            border-bottom: 3px solid #118ab2;
            padding-bottom: 10px;
        }
        article h3 {
            font-size: 1.8rem;
            color: #ffd166;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #ddd;
            text-align: justify;
            line-height: 1.9;
        }
        article ul, article ol {
            margin-left: 30px;
            margin-bottom: 25px;
            color: #ddd;
        }
        article li {
            margin-bottom: 10px;
        }
        .feature-img {
            width: 100%;
            margin: 30px 0;
            border: 3px solid #118ab2;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        }
        .quote {
            font-style: italic;
            border-left: 5px solid #ef476f;
            padding-left: 20px;
            margin: 30px 0;
            color: #bbb;
            font-size: 1.2rem;
        }
        .author {
            text-align: right;
            color: #ffd166;
            font-weight: bold;
        }
        aside {
            background: rgba(255,255,255,0.03);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h4 {
            color: #ffd166;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #06d6a0;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd166;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255,255,255,0.05);
            color: #fff;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #ef476f, #ff9a5a);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #ff9a5a, #ef476f);
        }
        .side-links a {
            display: block;
            padding: 10px;
            background: rgba(255,255,255,0.05);
            margin-bottom: 10px;
            border-radius: 5px;
            color: #ccc;
        }
        .side-links a:hover {
            background: rgba(6, 214, 160, 0.2);
            color: #ffd166;
        }
        .web-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 40px 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
            margin-top: 60px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 12px 25px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(6, 214, 160, 0.3);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffd166;
            font-weight: 500;
        }
        footer {
            background: rgba(5, 10, 30, 0.98);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        .footer-col h5 {
            color: #06d6a0;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .footer-col ul li {
            list-style: none;
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: #ccc;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 8px;
            }
            article h2 {
                font-size: 2rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
