        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #fafafa;
            color: #111;
            overflow-x: hidden;
        }

        .container {
            width: 92%;
            max-width: 1400px;
            margin: auto;
        }

        /* HEADER */

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #eee;
        }

        .navbar {
            height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #111;
            font-weight: 500;
        }

        /* HERO */

        .hero {
            padding: 40px 0 70px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1.8fr 1fr;
            gap: 25px;
        }

        .small-post,
        .featured-post {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
        }

        .small-post img,
        .featured-post img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s;
        }

        .small-post:hover img,
        .featured-post:hover img {
            transform: scale(1.05);
        }

        .small-post {
            height: 650px;
        }

        .featured-post {
            height: 650px;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, .8),
                    rgba(0, 0, 0, .1));
        }

        .content {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            color: white;
            z-index: 2;
        }

        .tag {
            display: inline-block;
            background: #ff4d4d;
            color: white;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: .8rem;
            margin-bottom: 15px;
        }

        .featured-post h1 {
            font-size: 3rem;
            font-family: 'Playfair Display', serif;
            line-height: 1.1;
            margin-bottom: 15px;
        }

        .small-post h3 {
            font-size: 1.5rem;
            line-height: 1.3;
        }

        /* MAGAZINE SECTION */

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 3rem;
            font-family: 'Playfair Display', serif;
        }

        .magazine-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
            transition: .35s;
        }

        .card:hover {
            transform: translateY(-8px);
        }

        .card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .card-content {
            padding: 25px;
        }

        .card-content h3 {
            margin: 15px 0;
            font-size: 1.3rem;
        }

        .card-content p {
            color: #666;
            line-height: 1.6;
        }

        /* TRENDING */

        .trending {
            background: white;
            padding: 80px 0;
        }

        .trending-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .trend-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .trend-item {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .trend-item img {
            width: 120px;
            height: 90px;
            object-fit: cover;
            border-radius: 12px;
        }

        .sidebar {
            background: #111;
            color: white;
            padding: 35px;
            border-radius: 20px;
        }

        .sidebar h3 {
            margin-bottom: 25px;
            font-size: 1.8rem;
        }

        .sidebar li {
            margin-bottom: 15px;
            list-style: none;
        }

        /* FOOTER */

        footer {
            background: #111;
            color: white;
            text-align: center;
            padding: 30px;
        }

        /* RESPONSIVE */

        @media(max-width:1100px) {

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .small-post,
            .featured-post {
                height: 450px;
            }

            .featured-post h1 {
                font-size: 2.2rem;
            }

            .magazine-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .trending-grid {
                grid-template-columns: 1fr;
            }

        }

        @media(max-width:768px) {

            .navbar {
                flex-direction: column;
                height: auto;
                padding: 20px 0;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .magazine-grid {
                grid-template-columns: 1fr;
            }

            .featured-post h1 {
                font-size: 1.8rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .small-post,
            .featured-post {
                height: 350px;
            }

        }


        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: 1s ease;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 0, 0, .3),
                    rgba(0, 0, 0, .7));
        }

        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            width: 90%;
            max-width: 900px;
            z-index: 2;
        }

        .hero-tag {
            display: inline-block;
            background: #ff4d4d;
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .hero-text h1 {
            font-size: 4.5rem;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-btn {
            display: inline-block;
            padding: 15px 35px;
            background: white;
            color: #111;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
        }

        @media(max-width:768px) {

            .hero-slider {
                height: 80vh;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

        }


        .newsletter {
            padding: 100px 0;
            background: #f5f7fb;
        }

        .newsletter-box {
            max-width: 900px;
            margin: auto;
            text-align: center;
            background: white;
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        }

        .newsletter-box h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .newsletter-box p {
            color: #666;
            max-width: 650px;
            margin: auto auto 35px;
            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .newsletter-form input {
            flex: 1;
            max-width: 500px;
            padding: 18px 25px;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-size: 16px;
            outline: none;
        }

        .newsletter-form button {
            padding: 18px 35px;
            border: none;
            background: #111;
            color: white;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
        }

        .newsletter-form button:hover {
            opacity: .9;
        }

        @media(max-width:768px) {

            .newsletter-box {
                padding: 35px 25px;
            }

            .newsletter-box h2 {
                font-size: 2rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
                max-width: none;
            }

        }
