        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
            color: #f5f5f5;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: rgba(13, 71, 161, 0.95);
            padding: 1rem 0;
            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;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(90deg, #ffeb3b, #4fc3f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-links a:hover {
            background: rgba(79, 195, 247, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffeb3b;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(26, 35, 126, 0.8);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #4fc3f7;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ffeb3b;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #4fc3f7;
            border-left: 5px solid #ffeb3b;
            padding-left: 1rem;
        }
        .article h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.8rem;
            color: #bbdefb;
        }
        .article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 235, 59, 0.15);
            border-left: 4px solid #ffeb3b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .sidebar {
            background: rgba(13, 71, 161, 0.7);
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: #ffeb3b;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .search-form, .comment-form, .score-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .score-form select {
            padding: 0.9rem;
            border: 2px solid #4fc3f7;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            width: 100%;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .score-form .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            font-size: 1.8rem;
            color: #ffeb3b;
            cursor: pointer;
        }
        .stars i:hover, .stars i.active {
            color: #ffc107;
            transform: scale(1.2);
        }
        button {
            background: linear-gradient(90deg, #ff9800, #ffeb3b);
            color: #1a237e;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 235, 59, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(26, 35, 126, 0.9);
            border-radius: 10px;
        }
        .web-link {
            background: rgba(79, 195, 247, 0.2);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 235, 59, 0.3);
        }
        .footer {
            background: #0d1b2a;
            padding: 3rem 0 1.5rem;
            text-align: center;
            margin-top: 4rem;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #4fc3f7;
            color: #bbdefb;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(13, 71, 161, 0.98);
                padding: 1rem;
                border-radius: 0 0 15px 15px;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article h1 {
                font-size: 2.2rem;
            }
            .article h2 {
                font-size: 1.7rem;
            }
            .article {
                padding: 1.5rem;
            }
        }
