body {
      margin: 0;
      padding: 0;
      background: url('../images/Background.png') no-repeat center center fixed;
      background-size: cover;
      font-family: 'Inter', Arial, sans-serif;
      min-height: 100vh;
      color: #222;
    }

    header {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: rgba(255,255,255,0.42);
      -webkit-backdrop-filter: blur(13px);
      backdrop-filter: blur(13px);
      border-bottom: none;
    }

    .navbar {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 2.5vw 1.05rem 2.5vw;
    }

    .logo {
      display: flex;
      align-items: center;
      cursor: pointer;
      font-family: 'Montserrat', Arial, sans-serif;
      font-weight: 900;
      font-size: 1.9rem;
      color: #f64060;
      letter-spacing: 0.5px;
      user-select: none;
    }

    .logo img {
      height: 75px;
      width: 150px;
      margin-right: 0.5rem;
      vertical-align: middle;
    }

    .search-bar-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      margin: 0 2vw 0 2.2vw;
      max-width: 570px;
    }

    .search-bar {
      flex: 1;
      display: flex;
      align-items: center;
      border-radius: 3rem;
      background: #fff;
      box-shadow: 0 1px 8px 0 rgba(70,70,88,0.06);
      padding: 0.2rem 1.3rem 0.2rem 1.4rem;
      gap: 0.8rem;
    }

    .search-bar input {
      border: none;
      outline: none;
      background: transparent;
      font-size: 1.05rem;
      padding: 0.95rem 0.3rem 0.95rem 0;
      width: 100%;
      font-family: inherit;
    }

    .search-bar .loc { color: #6e7287; font-size: 1.07rem; font-weight: 600; margin-left: 1.2rem; white-space: nowrap; cursor: pointer; }
    .search-bar .icon { color: #aaa; font-size: 1.3rem; margin-left: 0.7rem; }

    .navbar-actions { display: flex; align-items: center; gap: 1.4rem; }

    .lang-btn, .login-link, .signup-btn {
      font-family: inherit;
      cursor: pointer;
      font-weight: 500;
    }

    .lang-btn {
      background: none;
      border: none;
      color: #23272a;
      font-size: 1rem;
      opacity: 0.75;
      margin-right: 0.2rem;
      display: flex;
      align-items: center;
      gap: 0.4em;
      padding: 0.42em 0.9em;
      transition: opacity 0.3s;
    }

    .lang-btn:hover { opacity: 1; }

    .login-link {
      background: none;
      border: none;
      color: #23272a;
      font-size: 1rem;
      opacity: 0.8;
    }

    .login-link:hover { opacity: 1; text-decoration: underline; }

    .signup-btn {
      margin-left: 0.65rem;
      background: #111;
      color: #fff;
      border: none;
      border-radius: 2rem;
      font-size: 1rem;
      padding: 0.58em 1.25em;
      letter-spacing: 0.02em;
      box-shadow: 0 1px 7px rgba(90, 90, 110, 0.08);
      transition: background 0.16s, filter 0.18s;
    }

    .signup-btn:hover { background: #282828; }

    main { 
      max-width: 1200px; 
      margin: 0 auto; 
      padding-top: 1px; 
    }

    .hero-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 2.6rem;
      padding: 1.5rem 1.1rem 2rem 1.1rem;
      gap: 2rem;
    }

    .hero {
      flex: 1;
      color: #1f1f1f;
      text-align: left;
      max-width: 600px;
    }

    .hero-title {
      font-family: 'Montserrat', Arial, sans-serif;
      font-weight: 900;
      font-size: 2.6rem;
      line-height: 1.18;
      color: #23272a;
      margin: 0 0 0.9rem 0;
      min-height: 3rem;
    }

    .highlight-pink { color: #fa3c65; }
    .highlight-black { color: #23272a; }

    .hero-desc {
      font-size: 1.14rem;
      max-width: 470px;
      margin: 0 0 2.2rem 0;
      font-weight: 500;
      line-height: 1.5;
      color: #3b3b3b;
    }

    .join-btn {
      margin-top: 0.7rem;
      padding: 0.9em 2.1em;
      font-size: 1.16rem;
      background: #1a1a1a;
      color: #fff;
      border: none;
      border-radius: 2.5rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      box-shadow: 0 2px 13px rgba(70, 70, 95, 0.12);
      transition: filter 0.18s, background 0.16s;
      cursor: pointer;
    }

    .join-btn:hover { background: #23272a; filter: brightness(1.07); }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
    }

    /* TYPEWRITER EFFECT */
    #typewriter-text::after {
      content: '|';
      display: inline;
      animation: blink-caret 0.75s step-end infinite;
      margin-left: 0.1em;
      color: var(--caret-color, #23272a);
    }

    @keyframes blink-caret { from, to { opacity: 1; } 50% { opacity: 0; } }

    /* Responsive design */
    @media (max-width: 900px) {
      .hero-container {
        flex-direction: column;
        text-align: center;
      }
      
      .hero {
        max-width: 100%;
        text-align: center;
      }
      
      .hero-desc {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 750px) { 
      .hero-title { font-size: 2rem; } 
      .hero-desc { font-size: 1em; } 
    }
    
    @media (max-width: 550px) { 
      .hero-title { font-size: 1.7rem; } 
    }
    
    @media (max-width: 430px) { 
      .hero-title { font-size: 1.5rem; } 
    }