  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #fff5f7 0%, #ffffff 50%, #ffe0e6 100%);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
         /* Hero Section */
        .heroo {
            margin-top: 80px;
            padding: 100px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .heroo::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -250px;
            right: -250px;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
       

        .heroo h1 {
            font-size: 4em;
            background: linear-gradient(135deg, #ff6b9d, #ff4d7d, #ff8fab);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 1;
        }

        .heroo p {
            color: #666;
            font-size: 1.3em;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.2s both;
            position: relative;
            z-index: 1;
        }

        /* Featured Post */
        .featured-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            animation: fadeIn 1s ease 0.5s both;
        }

        .featured-label {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            margin-bottom: 20px;
            animation: slideInLeft 0.8s ease;
        }

        .featured-post {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            transition: transform 0.3s ease;
            animation: fadeInScale 1s ease 0.6s both;
        }

        .featured-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(255, 107, 157, 0.2);
        }

        .featured-image {
            position: relative;
            overflow: hidden;
            height: 400px;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .featured-post:hover .featured-image img {
            transform: scale(1.05);
        }

        .featured-content {
            padding: 40px;
        }

        .post-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            color: #999;
            font-size: 0.9em;
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .featured-content h2 {
            font-size: 2.2em;
            margin-bottom: 15px;
            color: #333;
            line-height: 1.2;
        }

        .featured-content p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .read-more {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .read-more::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
        }

        .read-more:hover::before {
            width: 300px;
            height: 300px;
        }

        .read-more:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
        }

        /* Blog Grid */
        .blog-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 50px;
            color: #333;
            position: relative;
            animation: fadeInUp 1s ease;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            border-radius: 2px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
            cursor: pointer;
        }

        .blog-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .blog-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .blog-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .blog-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .blog-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .blog-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .blog-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
        }

        .blog-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1) rotate(2deg);
        }

        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8em;
            font-weight: 500;
            animation: slideInLeft 0.5s ease;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            color: #999;
            font-size: 0.9em;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-title {
            font-size: 1.3em;
            color: #333;
            margin-bottom: 12px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-title {
            color: #ff6b9d;
        }

        .blog-excerpt {
            color: #666;
            font-size: 0.95em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }

        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
        }

        .author-name {
            color: #666;
            font-size: 0.9em;
        }

        .blog-link {
            color: #ff6b9d;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .blog-link::after {
            content: '→';
            position: absolute;
            right: -20px;
            transition: right 0.3s ease;
        }

        .blog-link:hover::after {
            right: -25px;
        }

        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            padding: 80px 20px;
            margin: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -150px;
            right: -150px;
            animation: float 10s infinite ease-in-out;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .newsletter h3 {
            color: white;
            font-size: 2.5em;
            margin-bottom: 15px;
            animation: fadeInUp 1s ease;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1em;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 450px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            font-size: 1em;
            outline: none;
            transition: box-shadow 0.3s ease;
        }

        .newsletter-form input:focus {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .newsletter-form button {
            padding: 15px 35px;
            background: white;
            color: #ff6b9d;
            border: none;
            border-radius: 30px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Floating elements */
        .float-element {
            position: fixed;
            pointer-events: none;
            opacity: 0.05;
            z-index: -1;
        }

        .float-element:nth-child(1) {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            border-radius: 50%;
            top: 20%;
            left: 10%;
            animation: float 15s infinite ease-in-out;
        }

        .float-element:nth-child(2) {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
            border-radius: 50%;
            bottom: 20%;
            right: 10%;
            animation: float 20s infinite ease-in-out reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-20px) rotate(90deg);
            }

            50% {
                transform: translateY(0) rotate(180deg);
            }

            75% {
                transform: translateY(20px) rotate(270deg);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .featured-post {
                grid-template-columns: 1fr;
            }

            .featured-image {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5em;
            }

            .nav-links {
                display: none;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .section-title {
                font-size: 2em;
            }
        }

        /* Loading animation */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }