        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 2rem; }
        .py-2 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-3 { padding-top: 2rem; padding-bottom: 2rem; }
        :root {
            --clr-primary: #0055a4; 
            --clr-secondary: #ffcc00; 
            --clr-accent: #dc143c; 
            --clr-dark: #1a1a2e;
            --clr-light: #f8f9fa;
            --clr-gray: #6c757d;
        }
        .site-header {
            background: linear-gradient(135deg, var(--clr-dark), var(--clr-primary));
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 1rem 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--clr-secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
        }
        .my-logo:hover {
            color: white;
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.75rem 20px;
            font-size: 0.9rem;
            color: var(--clr-gray);
        }
        .breadcrumb a {
            color: var(--clr-primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: var(--clr-secondary);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--clr-secondary);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }
            .main-nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 0.8rem 0;
            }
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1555864321-3a0c6bc3e0bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 4rem 1rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            color: var(--clr-gray);
            font-size: 0.95rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .article-content h2 {
            color: var(--clr-primary);
            border-left: 5px solid var(--clr-secondary);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: var(--clr-dark);
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        .article-content h4 {
            color: var(--clr-gray);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.2rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-content strong {
            color: var(--clr-accent);
            font-weight: 700;
        }
        .article-content a {
            color: var(--clr-primary);
            text-decoration: none;
            border-bottom: 1px dotted var(--clr-primary);
            transition: all 0.2s;
        }
        .article-content a:hover {
            color: var(--clr-accent);
            border-bottom-style: solid;
        }
        .highlight-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 4px solid var(--clr-secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: var(--clr-gray);
            padding: 0.5rem;
            background-color: #f8f9fa;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: var(--clr-primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--clr-secondary);
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: var(--clr-primary);
        }
        .search-form button {
            background: var(--clr-primary);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: var(--clr-dark);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .rating-widget .stars input {
            display: none;
        }
        .rating-widget .stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars label:hover,
        .rating-widget .stars label:hover ~ label,
        .rating-widget .stars input:checked ~ label {
            color: var(--clr-secondary);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            min-height: 120px;
            margin-bottom: 1rem;
            resize: vertical;
            font-family: inherit;
        }
        .comment-form button {
            background: var(--clr-accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            width: 100%;
        }
        .comment-form button:hover {
            background: #b01030;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            color: var(--clr-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s, transform 0.2s;
        }
        .related-links a:hover {
            color: var(--clr-primary);
            transform: translateX(5px);
        }
        .related-links i {
            color: var(--clr-secondary);
        }
        .site-footer {
            background: var(--clr-dark);
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--clr-secondary);
            margin-bottom: 1rem;
            display: inline-block;
        }
        .footer-nav h4,
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-nav ul,
        .footer-links ul {
            list-style: none;
        }
        .footer-nav li,
        .footer-links li {
            margin-bottom: 0.6rem;
        }
        .footer-nav a,
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-nav a:hover,
        .footer-links a:hover {
            color: var(--clr-secondary);
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }
        friend-link a {
            color: var(--clr-secondary) !important;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
