:root {
            --primary-red: #c53030;
            --primary-dark: #2d3748;
            --primary-gold: #d69e2e;
            --primary-light: #f7fafc;
            --accent-blue: #3182ce;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-light);
            color: var(--primary-dark);
            line-height: 1.7;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a202c 100%);
            color: white;
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-red);
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--primary-gold);
            transform: scale(1.03);
        }
        .my-logo span {
            color: white;
        }
        .desktop-nav {
            display: flex;
            gap: 2.5rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .desktop-nav a:hover {
            color: var(--primary-gold);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            max-width: 1280px;
            margin: 1rem auto 0;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: #718096;
        }
        .breadcrumb a {
            color: var(--accent-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .article-header {
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 1.5rem;
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            color: #718096;
            font-size: 0.95rem;
        }
        .last-updated {
            background: #e2e8f0;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0 3rem;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            position: absolute;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            width: 100%;
            padding: 1rem;
            font-size: 0.9rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-red);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #4a5568;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
            border-left: 5px solid var(--primary-red);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-dark);
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .strategy-card {
            background: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--accent-blue);
            transition: var(--transition);
        }
        .strategy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .strategy-card h4 {
            color: var(--accent-blue);
            margin-top: 0;
        }
        .quote-block {
            font-style: italic;
            border-left: 4px solid var(--primary-gold);
            padding-left: 2rem;
            margin: 2.5rem 0;
            color: #4a5568;
            font-size: 1.25rem;
            background: #fefcbf;
            padding: 2rem;
            border-radius: 0 8px 8px 0;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--primary-dark);
            margin-top: 1rem;
        }
        .interactive-section {
            background: #f7fafc;
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 2px dashed #cbd5e0;
        }
        .form-group {
            margin-bottom: 1.8rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-dark);
        }
        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
        }
        .btn {
            background: linear-gradient(135deg, var(--primary-red) 0%, #9b2c2c 100%);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }
        .btn:hover {
            background: linear-gradient(135deg, #9b2c2c 0%, var(--primary-red) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(197, 48, 48, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #cbd5e0;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active,
        .star:hover {
            color: var(--primary-gold);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .related-links a {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: block;
        }
        .related-links a:hover {
            color: var(--primary-red);
            padding-left: 0.5rem;
        }
        .related-links a::before {
            content: '🃏';
            margin-right: 0.75rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: #f7fafc;
            border-radius: 10px;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #718096;
            margin-top: 0.5rem;
        }
        .site-footer {
            background: var(--primary-dark);
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-red);
        }
        friend-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        friend-link a:hover {
            color: var(--primary-gold);
        }
        .copyright {
            max-width: 1280px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        .text-bold {
            font-weight: 800;
            color: var(--primary-red);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .inline-link {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--accent-blue);
            transition: var(--transition);
        }
        .inline-link:hover {
            color: var(--primary-red);
            border-bottom-style: solid;
        }
        @media (max-width: 480px) {
            .main-container,
            .site-header,
            .breadcrumb {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .content-area {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
