        * { 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: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4a6ee0; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #ff6b8b; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2rem; margin: 1rem 0; }
        li { margin-bottom: 0.5rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .site-header {
            background: linear-gradient(90deg, #1a2a6c, #4a6ee0, #8e2de2);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6347);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            padding: 5px;
            transition: all 0.4s ease;
        }
        .my-logo:hover {
            transform: scale(1.05) rotate(-2deg);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a { color: #495057; }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(74, 110, 224, 0.85), rgba(142, 45, 226, 0.85)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            color: white;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .main-content {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        h1 { font-size: 2.8rem; color: #1a2a6c; margin-bottom: 1.5rem; border-bottom: 4px solid #4a6ee0; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; color: #2d3b8d; margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px dashed #8e2de2; }
        h3 { font-size: 1.8rem; color: #4a6ee0; margin: 2rem 0 1rem; }
        h4 { font-size: 1.4rem; color: #6c8ae8; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        .highlight { background: linear-gradient(120deg, #ffef78 0%, #ffef78 100%); padding: 2px 5px; border-radius: 3px; }
        .bold { font-weight: 800; color: #1a2a6c; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2rem 0;
            border: 5px solid #4a6ee0;
            box-shadow: 0 8px 25px rgba(74, 110, 224, 0.3);
            transition: transform 0.5s ease;
        }
        .featured-image:hover { transform: scale(1.01); }
        .quote {
            border-left: 5px solid #ff6b8b;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #fff5f7;
            padding: 1.5rem;
            border-radius: 0 15px 15px 0;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { font-size: 1.5rem; color: #333; margin-bottom: 1rem; border-bottom: 2px solid #e4edf5; padding-bottom: 0.5rem; }
        .search-form { display: flex; }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #4a6ee0;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: #4a6ee0;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .search-button:hover { background: #3a5ecf; }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active { color: #FFD700; }
        .quick-links ul { list-style: none; padding-left: 0; }
        .quick-links li { margin-bottom: 0.8rem; }
        .quick-links a {
            display: block;
            padding: 0.8rem 1rem;
            background: #f1f5fd;
            border-radius: 10px;
            border-left: 4px solid #4a6ee0;
            transition: all 0.3s ease;
        }
        .quick-links a:hover {
            background: #4a6ee0;
            color: white;
            transform: translateX(5px);
        }
        .comment-section { margin-top: 4rem; }
        .comment-form, .comment {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            border: 1px solid #eaeaea;
        }
        .form-group { margin-bottom: 1.2rem; }
        .form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #4a6ee0;
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 110, 224, 0.2);
        }
        .form-textarea { min-height: 150px; resize: vertical; }
        .submit-button {
            background: linear-gradient(90deg, #4a6ee0, #8e2de2);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        .submit-button:hover {
            background: linear-gradient(90deg, #3a5ecf, #7d1dd2);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(74, 110, 224, 0.3);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: #666;
        }
        .site-footer {
            background: linear-gradient(90deg, #1a2a6c, #2d3b8d);
            color: #e9ecef;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #FFD700;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #4a6ee0;
            padding-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #a8c6ff;
            transition: color 0.3s ease;
        }
        friend-link a:hover { color: #FFD700; text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6ee0;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(26, 42, 108, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active ul { display: flex; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article, .sidebar { padding: 1.5rem; }
            .main-content { gap: 2rem; }
        }
