        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a5d8ff;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2d4059;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #00b4d8, #90e0ef);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .logo span {
            color: #ff6b6b;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #c9c9c9;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #00b4d8;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after,
        .desktop-nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #90e0ef;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #16213e;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            border-top: 1px solid #2d4059;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: #e0e0e0;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            background-color: rgba(255,255,255,0.05);
        }
        .mobile-nav a:hover {
            background-color: rgba(0, 180, 216, 0.2);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: #111122;
        }
        .breadcrumb a {
            color: #4dabf7;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(10, 10, 18, 0.85), rgba(10, 10, 18, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 1px solid #2d4059;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #cccccc;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content article {
            background-color: #151525;
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid #2a2a3e;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        .main-content h2 {
            color: #00b4d8;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2d4059;
        }
        .main-content h3 {
            color: #90e0ef;
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        .main-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .main-content b {
            color: #ffd166;
            font-weight: 700;
        }
        .main-content .highlight {
            background-color: rgba(0, 180, 216, 0.1);
            border-left: 4px solid #00b4d8;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            border: 3px solid #2d4059;
        }
        .featured-image img {
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: #151525;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #2a2a3e;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #ff6b6b;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.9rem;
            border: 1px solid #2d4059;
            background-color: #0a0a12;
            color: #e0e0e0;
            border-radius: 6px 0 0 6px;
            outline: none;
        }
        .search-box button {
            background-color: #00b4d8;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #0096c7;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-widget .stars i {
            color: #555;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffd166;
        }
        .rating-form input, .rating-form select, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: #0a0a12;
            border: 1px solid #2d4059;
            border-radius: 6px;
            color: #e0e0e0;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background-color: #4361ee;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #3a56d4;
        }
        .footer-links {
            background-color: #111122;
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 1px solid #2d4059;
            border-bottom: 1px solid #2d4059;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #1a1a2e;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #00b4d8;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #20203a;
        }
        .web-link a {
            color: #90e0ef;
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #0a0a12;
            padding: 2rem 0;
            text-align: center;
            color: #888;
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        .social-links a {
            color: #aaa;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #00b4d8;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #2d4059, transparent);
            margin: 2.5rem 0;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-content article {
                padding: 1.5rem;
            }
            .main-content h2 {
                font-size: 1.8rem;
            }
            .main-content h3 {
                font-size: 1.5rem;
            }
        }
