        * {
            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.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; color: #4fc3f7; }
        .section-spacing { padding: 60px 0; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background-color: rgba(10, 15, 30, 0.95);
            border-bottom: 2px solid #00bcd4;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: #00bcd4;
            text-decoration: none;
            text-shadow: 0 0 10px #00bcd4;
            letter-spacing: 1px;
        }
        .logo a span {
            color: #ff4081;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 25px;
        }
        .main-nav a {
            color: #b0bec5;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffffff;
            background-color: rgba(0, 188, 212, 0.2);
            box-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
        }
        .hamburger span {
            height: 3px;
            width: 25px;
            background: #00bcd4;
            margin: 4px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            background-color: rgba(30, 35, 50, 0.8);
            padding: 12px 20px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #80deea;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            position: relative;
            padding: 100px 20px;
            text-align: center;
            background: linear-gradient(rgba(0, 20, 40, 0.85), rgba(0, 20, 40, 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;
            border-bottom: 3px solid #ff4081;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e1f5fe;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        .article-content {
            background-color: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(100, 150, 255, 0.1);
        }
        .article-content h2 {
            color: #4fc3f7;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4fc3f7;
        }
        .article-content h3 {
            color: #80deea;
            font-size: 1.7rem;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(30, 60, 114, 0.6), rgba(42, 82, 152, 0.3));
            border-left: 5px solid #ff9800;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 2px solid #3949ab;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #b0bec5;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: rgba(25, 30, 50, 0.8);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid rgba(100, 150, 255, 0.2);
        }
        .sidebar-widget h3 {
            color: #ff9800;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #3949ab;
            background-color: rgba(10, 15, 30, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 12px;
            padding: 12px;
            background: linear-gradient(to right, #3949ab, #283593);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #303f9f, #1a237e);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 15px;
        }
        .rating-widget .stars i {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffd700;
        }
        .comments-section {
            margin-top: 50px;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background-color: rgba(30, 35, 50, 0.9);
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            padding: 12px 30px;
            background: linear-gradient(to right, #00c853, #64dd17);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: linear-gradient(to right, #00e676, #76ff03);
        }
        .comment {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
        }
        .comment-author {
            color: #4fc3f7;
            font-weight: bold;
        }
        .comment-date {
            color: #888;
            font-size: 0.9rem;
        }
        .web-links {
            background-color: rgba(15, 20, 35, 0.9);
            padding: 40px 20px;
            border-top: 2px solid #00bcd4;
            border-bottom: 2px solid #00bcd4;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(40, 45, 70, 0.6);
            padding: 15px;
            border-radius: 6px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(60, 65, 100, 0.8);
        }
        .web-link a {
            color: #80deea;
            text-decoration: none;
            font-size: 1rem;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: #b3e5fc;
        }
        .site-footer {
            background-color: #0a0a1a;
            padding: 40px 20px 20px;
            text-align: center;
        }
        .copyright {
            color: #78909c;
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: rgba(10, 15, 30, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
                padding: 20px 0;
            }
            .main-nav.active ul {
                left: 0;
            }
            .main-nav li {
                margin: 15px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
        }
