:root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #c53030;
            --text-dark: #2d3748;
            --text-light: #f7fafc;
            --bg-light: #edf2f7;
            --bg-dark: #2d3748;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            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.8;
            color: var(--text-dark);
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-color), #2a4365);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #fbd38d, var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: var(--secondary-color);
            border-bottom-color: var(--secondary-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #718096;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(42, 67, 101, 0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .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: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        article h2, article h3, article h4 {
            color: var(--primary-color);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--bg-light);
        }
        article h2 { font-size: 2rem; }
        article h3 { font-size: 1.6rem; }
        article h4 { font-size: 1.3rem; }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffaf0;
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }
        .feature-img {
            width: 100%;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .feature-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.02);
        }
        .internal-links {
            background-color: #e6fffa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .internal-links li a {
            color: #234e52;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .internal-links li a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .widget h3 i { color: var(--secondary-color); }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-family: inherit;
            width: 100%;
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-color), #2d3748);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, var(--accent-color), #c53030);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #e2e8f0;
            margin: 1rem 0;
        }
        .stars .active { color: #f6ad55; }
        .site-footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        friend-link {
            display: block;
            background-color: #4a5568;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        friend-link h3 {
            color: #fbd38d;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .friend-links a {
            background-color: #718096;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .friend-links a:hover {
            background-color: var(--secondary-color);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
        .strong { font-weight: 700; color: var(--accent-color); }
        .last-updated {
            font-size: 0.9rem;
            color: #718096;
            text-align: right;
            margin-top: 3rem;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: var(--primary-color);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: 0.5s;
                box-shadow: var(--shadow);
                z-index: 999;
            }
            .main-nav.active ul {
                right: 0;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            article { padding: 1.5rem; }
            .hero { padding: 2rem 1rem; }
        }
