* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #f97316;
            --secondary-color: #ea580c;
            --accent-color: #fbbf24;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
            --text-color: #334155;
            --border-radius: 12px;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff;
            color: var(--text-color);
            line-height: 1.7;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-color);
            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-size: 2rem;
            font-weight: 800;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
        }
        nav ul li a:hover {
            color: var(--accent-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f1f5f9;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "/";
            margin: 0 10px;
            color: #94a3b8;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            gap: 1rem;
            color: #64748b;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .hero-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark-color);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin: 1.8rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fffbeb;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .quote {
            font-style: italic;
            background-color: #f8fafc;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border-left: 5px solid var(--primary-color);
        }
        .insider-tip {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            position: relative;
            border: 2px dashed var(--primary-color);
        }
        .insider-tip::before {
            content: "🔥 INSIDER TIP";
            display: block;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        strong {
            color: var(--dark-color);
            font-weight: 700;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            display: block;
            padding: 1rem;
            background-color: #f1f5f9;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
        }
        .link-list a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        aside {
            background-color: #f8fafc;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            height: fit-content;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--dark-color);
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e1;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-box button:hover {
            background-color: var(--secondary-color);
        }
        .rating-widget, .comment-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid #e2e8f0;
        }
        .stars {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            margin-right: 5px;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            background-color: var(--dark-color);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: var(--primary-color);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            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-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links ul li {
            margin-bottom: 0.8rem;
        }
        .footer-links ul li a {
            color: #cbd5e1;
        }
        .footer-links ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: #374151;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        friend-link h4 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        friend-link a {
            display: inline-block;
            background-color: #4b5563;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        friend-link a:hover {
            background-color: var(--primary-color);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4b5563;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--dark-color);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        button, input[type="submit"], .link-list a {
            transition: var(--transition);
        }
        button:hover, input[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .content-section img {
            transition: transform 0.5s ease;
        }
        .content-section img:hover {
            transform: scale(1.02);
        }
