        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e6e6e6;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00b5f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff4655;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2230 0%, #0a0e14 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #00b5f7, #ff4655);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff4655;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b5f7;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a2230;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            position: absolute;
            top: 100%;
            left: 20px;
            right: 20px;
            z-index: 999;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            display: block;
            padding: 0.7rem;
            border-radius: 5px;
            background: #252f3f;
        }
        .mobile-nav a:hover {
            background: #2f3b4f;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00b5f7;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(15, 20, 30, 0.9), rgba(15, 20, 30, 0.9)), url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: inset 0 0 50px rgba(0, 181, 247, 0.1);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #00b5f7, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            background: #1e2635;
            color: #fff;
        }
        .search-box button {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #00b5f7, #008bb5);
            border: none;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(45deg, #008bb5, #00b5f7);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #161d28;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a3441;
        }
        article h2 {
            color: #ffcc00;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff4655;
        }
        article h3 {
            color: #00b5f7;
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a2a3a, #252f3f);
            border-left: 5px solid #ff4655;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dashed #00b5f7;
        }
        .sidebar {
            background: #161d28;
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #2a3441;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar h3 {
            color: #ffcc00;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .rating-widget input, .rating-widget textarea,
        .comment-widget input, .comment-widget textarea {
            padding: 0.8rem;
            background: #1e2635;
            border: 1px solid #2a3441;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .rating-widget button, .comment-widget button {
            padding: 0.9rem;
            background: linear-gradient(45deg, #ff4655, #c5303e);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .rating-widget button:hover, .comment-widget button:hover {
            transform: scale(1.03);
        }
        .footer-links-section {
            background: #1a2230;
            padding: 3rem 0;
            border-top: 2px solid #2a3441;
            border-bottom: 2px solid #2a3441;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem;
            font-size: 1.1rem;
        }
        .web-link a {
            color: #ccc;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background: #252f3f;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .web-link a:hover {
            background: #00b5f7;
            color: #0f1419;
            box-shadow: 0 0 15px rgba(0, 181, 247, 0.5);
        }
        .site-footer {
            text-align: center;
            padding: 2.5rem 0;
            color: #aaa;
            font-size: 0.95rem;
        }
        .site-footer p {
            margin: 0.5rem 0;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content-wrapper {
                gap: 2rem;
            }
            article, .sidebar {
                padding: 1.8rem;
            }
            article h2 {
                font-size: 1.9rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            .sidebar {
                position: static;
            }
            .web-link {
                display: block;
                margin: 0.8rem 0;
                text-align: center;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar, .hero {
            animation: fadeIn 0.8s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
