        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a237e; 
            --secondary: #d32f2f; 
            --accent: #ffab00; 
            --light: #f5f5f5;
            --dark: #212121;
            --text: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --max-width: 1200px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary), #283593);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ffab00, #ffd54f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            line-height: 1;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .breadcrumb li {
            display: inline;
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            padding: 2rem 0 4rem;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        h1, h2, h3, h4 {
            color: var(--primary);
            font-family: Georgia, 'Times New Roman', Times, serif;
            line-height: 1.3;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--accent);
            padding-bottom: 0.8rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--dark);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-light);
            line-height: 1.7;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: var(--secondary);
            font-weight: 700;
        }
        blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-light);
            background-color: #fffde7;
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .article-img img {
            transition: transform 0.5s ease;
        }
        .article-img:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-light);
            margin-top: 10px;
            font-style: italic;
        }
        .content-links {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .content-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }
        .content-links li {
            padding: 5px 0;
        }
        .content-links a {
            color: var(--primary);
            font-weight: 500;
        }
        .content-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .interaction-module {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem 0;
        }
        .module-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        .module-title i {
            margin-right: 10px;
            color: var(--secondary);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
        }
        button, .btn {
            background: linear-gradient(to right, var(--secondary), #f44336);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #c62828, var(--secondary));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(211, 47, 47, 0.3);
            text-decoration: none;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .star-rating {
            display: flex;
            direction: row;
            font-size: 1.8rem;
            color: #ddd;
        }
        .star-rating span {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating span:hover,
        .star-rating span:hover ~ span {
            color: #ffc107;
        }
        .star-rating .active {
            color: #ffc107;
        }
        footer {
            background-color: var(--dark);
            color: #bdbdbd;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bdbdbd;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: #37474f;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1rem 0;
            color: white;
            font-weight: 600;
        }
        friend-link a {
            color: #ffab00;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid #424242;
            font-size: 0.9rem;
            color: #9e9e9e;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-light);
            font-style: italic;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px dashed #ddd;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
            }
            .main-nav li {
                margin: 0;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 15px;
            }
            .content-links ul {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .rating {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
        }
