*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Inter', sans-serif;
      background:#fff7fb;
      color:#1f1f1f;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    .container{
      width:100%;
      max-width:1200px;
      margin:0 auto;
      padding:0 20px;
    }

    /* HEADER */

    header{
      padding:24px 0;
      background:white;
      position:sticky;
      top:0;
      z-index:100;
      border-bottom:1px solid #f1dce7;
    }

    .navbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    .logo{
      font-size:28px;
      font-weight:800;
      color:#ff4f9a;
    }

    .nav-links{
      display:flex;
      gap:24px;
      font-size:15px;
      font-weight:500;
    }

    /* HERO */

    .hero{
      padding:80px 0 60px;
    }

    .hero-content{
      display:grid;
      grid-template-columns:1fr 1fr;
      align-items:center;
      gap:60px;
    }

    .hero-text h1{
      font-size:56px;
      line-height:1.1;
      margin-bottom:20px;
    }

    .hero-text p{
      font-size:18px;
      line-height:1.7;
      color:#666;
      margin-bottom:32px;
    }

    .hero-buttons{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
    }

    .btn-primary{
      background:#ff4f9a;
      color:white;
      padding:16px 28px;
      border-radius:16px;
      font-weight:700;
      transition:.2s;
    }

    .btn-primary:hover{
      transform:translateY(-2px);
      opacity:.9;
    }

    .btn-secondary{
      background:white;
      border:1px solid #ffd1e4;
      padding:16px 28px;
      border-radius:16px;
      font-weight:600;
    }

    .hero-image{
      background:linear-gradient(135deg,#ffd8eb,#ffeef6);
      border-radius:32px;
      height:480px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:120px;
    }

    /* CATEGORIES */

    .section{
      padding:70px 0;
    }

    .section-title{
      font-size:36px;
      margin-bottom:40px;
    }

    .categories{
      display:grid;
      grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
      gap:20px;
    }

    .category-card{
      background:white;
      padding:28px;
      border-radius:24px;
      text-align:center;
      border:1px solid #ffe0ee;
      transition:.2s;
    }

    .category-card:hover{
      transform:translateY(-4px);
    }

    .category-card span{
      font-size:42px;
      display:block;
      margin-bottom:12px;
    }

    .category-card h3{
      font-size:18px;
    }

    /* POSTS */

    .posts{
      display:grid;
      grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
      gap:28px;
    }

    .post-card{
      background:white;
      border-radius:28px;
      overflow:hidden;
      border:1px solid #ffe2ef;
      transition:.2s;
    }

    .post-card:hover{
      transform:translateY(-5px);
    }

    .post-image{
      height:240px;
      background:linear-gradient(135deg,#ffd8eb,#fff1f7);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:64px;
    }

    .post-content{
      padding:24px;
    }

    .post-content h3{
      font-size:22px;
      margin-bottom:12px;
      line-height:1.3;
    }

    .post-content p{
      color:#666;
      line-height:1.6;
      margin-bottom:24px;
    }

    .post-button{
      display:inline-block;
      background:#ff4f9a;
      color:white;
      padding:14px 20px;
      border-radius:14px;
      font-weight:700;
    }

    /* VIP */

    .vip{
      background:linear-gradient(135deg,#ff4f9a,#ff79b4);
      color:white;
      border-radius:36px;
      padding:60px;
      text-align:center;
    }

    .vip h2{
      font-size:42px;
      margin-bottom:16px;
    }

    .vip p{
      max-width:700px;
      margin:0 auto 32px;
      line-height:1.7;
      font-size:18px;
    }

    .vip .btn-primary{
      background:white;
      color:#ff4f9a;
    }

    /* FOOTER */

    footer{
      padding:50px 0;
      text-align:center;
      color:#777;
      font-size:14px;
    }

    footer .links{
      display:flex;
      justify-content:center;
      gap:20px;
      margin-top:12px;
    }

    /* RESPONSIVE */

    @media(max-width:900px){

      .hero { padding: 40px 0 30px; }
      .hero-content { grid-template-columns: 1fr; gap: 30px; }
      .hero-text h1{ font-size: 32px; }
      .hero-text p { font-size: 16px; margin-bottom: 24px; }
      
      .hero-image{ display:none; }

      .section { padding: 40px 0; }
      .section-title { font-size: 28px; margin-bottom: 24px; }

      .categories { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
      .category-card { padding: 20px; border-radius: 16px; }
      .category-card span { font-size: 32px; margin-bottom: 8px; }
      .category-card h3 { font-size: 16px; }

      .posts { grid-template-columns: 1fr; gap: 20px; }

      .vip{ padding: 40px 20px; border-radius: 20px; }
      .vip h2{ font-size: 26px; margin-bottom: 12px; }
      .vip p { font-size: 16px; margin-bottom: 24px; }

    }