* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #60a5fa;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-highlight {
            color: #fbbf24;
            font-weight: bold;
        }
        .emoji { margin-right: 5px; }
        header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 8px;
            color: #cbd5e1;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background: rgba(96, 165, 250, 0.15);
            color: #60a5fa;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: rgba(30, 41, 59, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #334155;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
            animation: slideDown 0.3s ease;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            font-size: 1.2rem;
            border-radius: 8px;
            color: #cbd5e1;
        }
        .mobile-nav a:hover {
            background: rgba(96, 165, 250, 0.15);
            color: #60a5fa;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .breadcrumb {
            padding: 20px 0 10px;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero {
            padding: 80px 0;
            background: radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
            border-bottom: 1px solid #334155;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: #cbd5e1;
            max-width: 800px;
            margin-bottom: 30px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
        }
        article h2 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            color: #f1f5f9;
            border-left: 5px solid #60a5fa;
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #e2e8f0;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #cbd5e1;
            text-align: justify;
        }
        article strong {
            color: #fbbf24;
            font-weight: 700;
        }
        article em {
            color: #86efac;
            font-style: italic;
        }
        .image-block {
            margin: 30px 0;
            text-align: center;
        }
        .image-block img {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .image-block img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(96, 165, 250, 0.3);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        aside {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid #475569;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #f1f5f9;
            padding-bottom: 10px;
            border-bottom: 2px solid #60a5fa;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            background: #1e293b;
            color: #e2e8f0;
            border: 1px solid #475569;
        }
        .search-box button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2563eb;
        }
        .rating-widget .stars {
            font-size: 1.8rem;
            color: #fbbf24;
            margin-bottom: 15px;
        }
        .rating-widget .stars i {
            cursor: pointer;
            margin: 0 2px;
            transition: transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border-radius: 8px;
            background: #1e293b;
            border: 1px solid #475569;
            color: #e2e8f0;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            background: #10b981;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            width: 100%;
        }
        .comment-form button:hover {
            background: #0da271;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li:before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #60a5fa;
            font-size: 0.8rem;
        }
        .footer-links {
            background: rgba(15, 23, 42, 0.9);
            padding: 50px 0 30px;
            border-top: 1px solid #334155;
            border-bottom: 1px solid #334155;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(30, 41, 59, 0.7);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #60a5fa;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(30, 41, 59, 1);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            color: #e2e8f0;
            display: block;
        }
        .web-link p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-top: 8px;
        }
        footer {
            padding: 40px 0;
            text-align: center;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .social-links {
            margin-bottom: 20px;
        }
        .social-links a {
            display: inline-block;
            margin: 0 15px;
            font-size: 1.5rem;
            color: #cbd5e1;
            transition: color 0.3s, transform 0.3s;
        }
        .social-links a:hover {
            color: #60a5fa;
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid #334155;
            padding-top: 20px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content { padding: 0 15px; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            article h2 { font-size: 2rem; }
            article h3 { font-size: 1.6rem; }
            .section-padding { padding: 40px 0; }
            .web-links-grid { grid-template-columns: 1fr; }
        }
