:root {
            --primary-dark: #0f1a2c;
            --primary-blue: #1a3a5f;
            --accent-gold: #d4af37;
            --accent-teal: #2a9d8f;
            --light-bg: #f8f9fa;
            --text-light: #e9ecef;
            --text-dark: #212529;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --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.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            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 a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, var(--accent-gold), #ffea80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo a:hover {
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
            background-color: rgba(255, 255, 255, 0.05);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb a {
            color: var(--accent-teal);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #adb5bd;
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
            background-color: #fff;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid var(--accent-gold);
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-teal);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: #495057;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.1rem;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-teal);
            margin-bottom: 2rem;
        }
        .highlight-box {
            background-color: #e7f5ff;
            border: 1px solid #a5d8ff;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .tip {
            background-color: #fff3bf;
            border-left: 4px solid #ffd43b;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .strategy-card {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 3px solid var(--accent-teal);
        }
        .strategy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .strategy-card h4 {
            color: var(--primary-blue);
            margin-top: 0;
        }
        img.featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 3px solid var(--primary-blue);
        }
        .interactive-section {
            background: linear-gradient(135deg, #1a3a5f 0%, #0f1a2c 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .interactive-section h3 {
            color: var(--accent-gold);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--accent-teal), #1a936f);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            text-decoration: none;
        }
        .btn:hover {
            background: linear-gradient(to right, #238a7a, #17775f);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffc107;
        }
        .update-time {
            font-size: 0.9rem;
            color: #6c757d;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #dee2e6;
        }
        .search-container {
            margin: 2rem 0;
            display: flex;
            gap: 0.5rem;
        }
        .search-container input {
            flex-grow: 1;
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            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: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-teal);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        friend-link a {
            color: var(--accent-teal);
            font-weight: 600;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--primary-blue);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: var(--shadow);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0.5rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .strategy-grid {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
