
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f4ff 0%, #fff0f8 100%);
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(180, 130, 200, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #9b6b9e;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #9b6b9e;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: #f8f4ff;
            border-radius: 25px;
            padding: 0.5rem 1rem;
            gap: 0.5rem;
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            padding: 0.25rem;
            width: 150px;
        }

        .btn-subscribe {
            background: linear-gradient(135deg, #c8a2c8 0%, #e8b4d4 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s;
        }

        .btn-subscribe:hover {
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            padding: 4rem 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }

        .hero-main {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(180, 130, 200, 0.2);
        }

        .hero-main img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 3rem 2rem 2rem;
            color: white;
        }

        .hero-overlay h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero-overlay p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .trending-sidebar {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 5px 30px rgba(180, 130, 200, 0.1);
        }

        .trending-sidebar h3 {
            color: #9b6b9e;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .trending-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #f0e6f0;
        }

        .trending-item:last-child {
            border-bottom: none;
        }

        .trending-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
        }

        .trending-item h4 {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .trending-item .meta {
            font-size: 0.85rem;
            color: #999;
        }

        /* Section Titles */
        .section-title {
            font-size: 2rem;
            color: #9b6b9e;
            margin: 3rem 0 2rem;
            position: relative;
            padding-left: 1rem;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 70%;
            background: linear-gradient(135deg, #c8a2c8 0%, #e8b4d4 100%);
            border-radius: 2px;
        }

        /* Editor's Pick */
        .editors-pick-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .article-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(180, 130, 200, 0.1);
            transition: transform 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .article-card-content {
            padding: 1.5rem;
        }

        .article-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: #333;
        }

        .article-card p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            font-size: 0.85rem;
        }

        /* Banner Ad */
        .banner-ad {
            background: linear-gradient(135deg, #e8d4e8 0%, #f8e4f0 100%);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            margin: 3rem 0;
            box-shadow: 0 5px 30px rgba(180, 130, 200, 0.15);
        }

        .banner-ad h2 {
            color: #9b6b9e;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .banner-ad p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* Interview & Podcast Sections */
        .two-col-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .article-card-horizontal {
            display: flex;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(180, 130, 200, 0.1);
            transition: transform 0.3s;
        }

        .article-card-horizontal:hover {
            transform: translateY(-5px);
        }

        .article-card-horizontal img {
            width: 200px;
            object-fit: cover;
        }

        .article-card-horizontal-content {
            padding: 1.5rem;
            flex: 1;
        }

        .article-card-horizontal h3 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            color: #333;
        }

        .article-card-horizontal p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        /* About Us Sidebar */
        .about-sidebar {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 5px 30px rgba(180, 130, 200, 0.1);
            margin-bottom: 3rem;
        }

        .about-sidebar h3 {
            color: #9b6b9e;
            margin-bottom: 1rem;
        }

        .about-sidebar p {
            color: #666;
            line-height: 1.8;
        }

        /* Topics Section */
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .topic-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(180, 130, 200, 0.1);
            transition: transform 0.3s;
        }

        .topic-card:hover {
            transform: translateY(-5px);
        }

        .topic-card h4 {
            color: #9b6b9e;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .topic-card .count {
            color: #999;
            font-size: 0.9rem;
        }

        /* Must Read */
        .must-read-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .must-read-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(180, 130, 200, 0.2);
        }

        .must-read-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .must-read-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 3rem 2rem 2rem;
            color: white;
        }

        .must-read-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        /* Latest Posts */
        .latest-posts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .latest-post-card {
            display: flex;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(180, 130, 200, 0.1);
            transition: transform 0.3s;
        }

        .latest-post-card:hover {
            transform: translateY(-5px);
        }

        .latest-post-card img {
            width: 150px;
            object-fit: cover;
        }

        .latest-post-card-content {
            padding: 1.5rem;
            flex: 1;
        }

        .latest-post-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            color: #333;
        }

        .latest-post-card p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            background: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            box-shadow: 0 -5px 30px rgba(180, 130, 200, 0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-col h4 {
            color: #9b6b9e;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: #9b6b9e;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #f0e6f0;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }

            .editors-pick-grid {
                grid-template-columns: 1fr;
            }

            .two-col-grid {
                grid-template-columns: 1fr;
            }

            .topics-grid {
                grid-template-columns: 1fr;
            }

            .must-read-grid {
                grid-template-columns: 1fr;
            }

            .latest-posts-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-overlay h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .article-card-horizontal {
                flex-direction: column;
            }

            .article-card-horizontal img {
                width: 100%;
                height: 200px;
            }

            .latest-post-card {
                flex-direction: column;
            }

            .latest-post-card img {
                width: 100%;
                height: 200px;
            }
        }
    