

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: url('https://i.imgur.com/YUlPpOB.png') no-repeat center center fixed;
      background-size: cover;
      color: #1a1e24;
      line-height: 1.5;
      position: relative;
      min-height: 100vh;
    }
    .page-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 70px;
      position: relative;
      z-index: 1;
    }
    @media (max-width: 768px) {
      .page-wrapper {
        padding: 0 25px;
      }
    }
    :root {
      --WHITE: #ffffff;
      --pink-soft: #ffffff;
      --pink-light: #fff1f5;
      --border-light: #e6e6e6;
      --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
      --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    .container, .booking-header, .nav-bar, .hero-simple, .info-card-full,
    .property-card, .booking-form-card, .modal-content, .amenities-section,
    .price-info, .extra-fee-warning, .chip, .book-btn, .scroll-btn, .logo-icon,
    .hero-logo, .card-img-top, .gallery-grid img, .close-modal, .close-preview,
    .preview-image, .duration-chips .chip, .form-field input, .form-field select,
    .rule-item, .cancel-fee, .section-title, .modal, .facebook-btn {
      border-radius: 0px !important;
    }
    img, button, input, select, textarea, a {
      border-radius: 0px !important;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1rem;
      position: relative;
      z-index: 1;
    }
    @media (min-width: 640px) {
      .container {
        padding: 1rem 1.5rem 2rem;
      }
    }
    .booking-header {
      background: rgba(20, 20, 20, 0.85);
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow-card);
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255,105,180,0.3);
      overflow: hidden;
      z-index: 1;
    }
    .nav-bar {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 0.8rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      position: sticky;
      top: 0;
      background: rgba(20, 20, 20, 0.95);
      z-index: 1000;
    }
    @media (min-width: 640px) {
      .nav-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
      }
    }
    .logo-area {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }
    .logo-icon {
      background: #ff27b7;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }
    .logo-text {
      font-weight: 700;
      font-size: 1.1rem;
      color: #ffffff;
      letter-spacing: -0.3px;
    }
    @media (min-width: 640px) {
      .logo-text {
        font-size: 1.3rem;
      }
    }
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: #e0e0e0;
      text-align: center;
    }
    @media (min-width: 640px) {
      .nav-links {
        flex-direction: row;
        gap: 1.5rem;
        font-size: 0.85rem;
      }
    }
    .nav-links a {
      color: white;
      text-decoration: none;
    }
    .nav-links a:hover {
      color: #ff69b4;
    }
    .hero-simple {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      padding: 1.5rem 1rem;
      text-align: center;
      border-top: 3px solid #ff69b4;
    }
    @media (min-width: 640px) {
      .hero-simple {
        padding: 2rem;
      }
    }
    .hero-simple h1 {
      font-size: clamp(1.5rem, 8vw, 10rem);
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      flex-wrap: wrap;
      text-shadow: none;
    }
    .hero-simple h1 span {
      font-family: 'Great Vibes', cursive;
      font-weight: 400;
      text-transform: none;
      font-size: clamp(1rem, 4vw, 5rem);
    }
    @media (max-width: 640px) {
      .hero-simple h1 {
        font-size: 1.8rem;
        gap: 0.5rem;
      }
      .hero-simple h1 span {
        font-size: 1.2rem;
      }
    }
    .hero-simple p {
      color: #333333;
      font-size: 0.85rem;
    }
    @media (min-width: 640px) {
      .hero-simple p {
        font-size: 1rem;
      }


    }
    .hero-logo {
      width: clamp(30px, 8vw, 85px);
      height: clamp(30px, 8vw, 85px);
      object-fit: cover;
      border: 3px solid #ff69b4;
      box-shadow: 0 6px 14px rgba(255,105,180,0.25);
      transition: transform 0.2s ease;
      border-radius: 50% !important;
      loading: lazy;
    }
   
    .hero-logo:hover {
      transform: scale(1.05);
    }
    @media (max-width: 640px) {
      .hero-logo:first-child {
        display: none;
      }
      .hero-logo:last-child {
        display: inline-block;
        width: clamp(25px, 6vw, 35px);
        height: clamp(25px, 6vw, 35px);
      }
    }
    .info-card-full {
      background: #1a1a1a;
      backdrop-filter: none;
      width: 100%;
      padding: 1.2rem;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(255,105,180,0.3);
      color: #e0e0e0;
    }
    @media (min-width: 640px) {
      .info-card-full {
        padding: 1.4rem 1.6rem;
      }
    }
    .info-card-full h3 {
      font-family: 'Eagle Lake', cursive;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
      color: #ffffff;
    }
    .duration-chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin: 12px 0;
    }
    .chip {
      background: rgba(255,105,180,0.2);
      padding: 5px 12px;
      font-size: 0.75rem;
      font-weight: 500;
      color: #ffffff;
    }
    @media (min-width: 640px) {
      .chip {
        padding: 5px 14px;
        font-size: 0.8rem;
      }
    }
    .section-title-wrapper {
      position: relative;
      margin: 1.5rem 0 1rem;
      display: inline-block;
      width: auto;
    }
    .section-title {
      font-size: 1.3rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      padding: 12px 24px;
      border-radius: 0px !important;
      color: white;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
      width: auto;
    }
    .section-title span:first-of-type {
      font-family: 'Eagle Lake', cursive;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 1.1em;
    }
    @media (min-width: 640px) {
      .section-title {
        font-size: 1.5rem;
        padding: 14px 28px;
      }
    }
    .section-title i {
      color: #ffffff;
      font-size: 1.2rem;
    }
    @media (min-width: 640px) {
      .section-title i {
        font-size: 1.4rem;
      }
    }
    .property-scroll-container {
      position: relative;
      margin-bottom: 1.5rem;
    }
    .property-grid {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 0.5rem;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .property-grid::-webkit-scrollbar {
      display: none;
    }
    .property-card {
      background: rgba(20, 20, 20, 0.85);
      backdrop-filter: blur(8px);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: 0.2s ease;
      cursor: pointer;
      border: 1px solid rgba(255,105,180,0.3);
      min-width: 280px;
      max-width: 280px;
      flex-shrink: 0;
    }
    @media (min-width: 640px) {
      .property-card {
        min-width: 340px;
        max-width: 340px;
        gap: 1.5rem;
      }
    }
    @media (min-width: 768px) {
      .property-card {
        min-width: 380px;
        max-width: 380px;
        gap: 1.8rem;
      }
    }
    .property-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #ff30b0;
      color: white;
      border: none;
      width: 36px;
      height: 36px;
      cursor: pointer;
      z-index: 10;
      display: none;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      font-size: 1rem;
    }
    @media (min-width: 768px) {
      .scroll-btn {
        display: flex;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
      }
    }
    .scroll-btn:hover {
      background: #ff1493;
      transform: translateY(-50%) scale(1.05);
    }
    .scroll-left {
      left: -10px;
    }
    @media (min-width: 768px) {
      .scroll-left {
        left: -22px;
      }
    }
    .scroll-right {
      right: -10px;
    }
    @media (min-width: 768px) {
      .scroll-right {
        right: -22px;
      }
    }
    .card-img-top {
      height: 220px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    @media (min-width: 640px) {
      .card-img-top {
        height: 250px;
      }
    }
    @media (min-width: 768px) {
      .card-img-top {
        height: 280px;
      }
    }
    .card-content {
      padding: 1rem;
      color: #e0e0e0;
    }
    @media (min-width: 640px) {
      .card-content {
        padding: 1.2rem 1.4rem 1.4rem;
      }
    }
    .property-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #f8f8f8;
      margin-bottom: 0.2rem;
      font-family: 'Eagle Lake', cursive;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    @media (min-width: 640px) {
      .property-name {
        font-size: 1.3rem;
      }
    }
    .property-tagline {
      font-size: 0.75rem;
      color: #ffffff;
      margin: 4px 0 8px;
    }
    @media (min-width: 640px) {
      .property-tagline {
        font-size: 0.85rem;
      }
    }
    .feature-icons {
      display: flex;
      gap: 10px;
      margin-top: 10px;
      font-size: 0.7rem;
      color: #e0e0e0;
      flex-wrap: wrap;
    }
    @media (min-width: 640px) {
      .feature-icons {
        gap: 15px;
        margin-top: 12px;
        font-size: 0.8rem;
      }
    }
    .explore-link {
      margin-top: 10px;
      font-size: 0.7rem;
      color: #ffffff;
      font-weight: 500;
    }
    @media (min-width: 640px) {
      .explore-link {
        margin-top: 14px;
        font-size: 0.8rem;
      }
    }
    .booking-form-card {
      background: #1a1a1a;
      backdrop-filter: none;
      padding: 1.2rem;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(255,105,180,0.3);
      width: 100%;
      color: #e0e0e0;
    }
    @media (min-width: 640px) {
      .booking-form-card {
        padding: 1.8rem 2rem;
      }
    }
    .booking-form-card h3 {
      font-family: 'Eagle Lake', cursive;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 1.3rem;
      color: #ffffff;
    }
    .form-grid {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin: 1rem 0;
    }
    @media (min-width: 640px) {
      .form-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
      }
    }
    .form-field {
      flex: 1;
      min-width: 100%;
    }
    @media (min-width: 640px) {
      .form-field {
        min-width: 160px;
      }
    }
    .form-field label {
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #ffffff;
    }
    .form-field input, .form-field select {
      width: 100%;
      padding: 0.7rem;
      border: 1px solid rgba(255,105,180,0.3);
      font-family: inherit;
      margin-top: 4px;
      font-size: 0.9rem;
      background: #2a2a2a;
      color: white;
    }
    .form-field select option {
      background: #2a2a2a;
      color: white;
    }
    .form-field input::placeholder {
      color: #999;
    }
    .extra-fee-warning {
      background: rgba(255,243,205,0.2);
      border: 1px solid #ff69b4;
      padding: 10px;
      margin-top: 10px;
      font-size: 0.8rem;
      color: #fafafa;
      display: none;
    }
    .extra-fee-warning.show {
      display: block;
    }
    .button-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 15px;
    }
    @media (min-width: 640px) {
      .button-group {
        flex-direction: row;
        align-items: center;
        gap: 16px;
      }
    }
    .book-btn {
      background: #ff2a9f;
      color: white;
      border: none;
      padding: 0.7rem 1.5rem;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      flex: 1;
    }
    .facebook-btn {
      background: #1877f2;
      color: white;
      border: none;
      padding: 0.7rem 1.5rem;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      text-decoration: none;
      flex: 1;
    }
    .facebook-btn:hover {
      background: #0d63ce;
      transform: scale(0.98);
    }
    .book-btn:hover {
      background: #ff1493;
      transform: scale(0.98);
    }
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.85);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    .modal.active { display: flex; }
    .modal-content {
      background: #1a1a1a;
      max-width: 900px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      padding: 1.2rem;
      position: relative;
      color: #e0e0e0;
      border: 1px solid rgba(255,105,180,0.3);
    }
    @media (min-width: 640px) {
      .modal-content {
        padding: 1.8rem;
      }
    }
    .close-modal {
      position: absolute; top: 12px; right: 16px;
      background: #ff69b4;
      border: none;
      color: white;
      width: 34px;
      height: 34px;
      cursor: pointer;
      font-weight: bold;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 10px;
      margin-top: 1rem;
      margin-bottom: 1.5rem;
    }
    @media (min-width: 640px) {
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
      }
    }


    .gallery-grid img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      cursor: pointer;
      transition: transform 0.2s ease;
      border: 1px solid rgba(255,105,180,0.3);
      loading: lazy;
    }


    .gallery-grid img:hover {
      transform: scale(1.02);
    }
    .amenities-section {
      background: rgba(0,0,0,0.5);
      padding: 1rem;
      margin-top: 0.5rem;
    }
    .amenities-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 8px;
    }
    .amenity-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: #cccccc;
      padding: 4px 0;
    }
    .amenity-item i {
      color: #fcfcfc;
      width: 20px;
      font-size: 0.9rem;
    }
    .price-info {
      background: rgba(0,0,0,0.5);
      padding: 10px;
      margin-bottom: 1rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: space-around;
    }
    .price-item {
      text-align: center;
      flex: 1;
    }
    .price-amount {
      font-weight: 800;
      font-size: 1.1rem;
      color: #ff69b4;
    }
    .price-label {
      font-size: 0.7rem;
      color: #aaa;
    }
    .image-preview-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.95);
      z-index: 3000;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }
    .image-preview-modal.active {
      display: flex;
    }
    .preview-image {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      box-shadow: 0 0 30px rgba(0,0,0,0.5);
    }
    .close-preview {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      background: none;
      border: none;
      z-index: 3001;
    }
    .rule-item {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 0.8rem;
      color: #cccccc;
      align-items: flex-start;
    }
    .rule-item i {
      color: #ffffff;
      margin-top: 2px;
      min-width: 18px;
    }
    .cancel-fee {
      background: rgba(255,232,232,0.1);
      padding: 10px;
      margin-top: 12px;
      border-left: 3px solid #ffffff;
      font-weight: 600;
      color: #ffffff;
    }
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
      background-color: transparent;
      color: white;
      opacity: 1;
    }
    input[type="number"] {
      color-scheme: dark;
    }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #ff69b4;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50% !important;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
      border: none;
      font-size: 1.2rem;
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }
    .back-to-top:hover {
      background: #ff1493;
      transform: scale(1.1);
    }
    .search-section {
      margin-bottom: 1.5rem;
    }
    .room-search {
      width: 100%;
      padding: 0.8rem;
      background: #2a2a2a;
      border: 1px solid rgba(255,105,180,0.3);
      color: white;
      font-size: 0.9rem;
    }
    .room-search::placeholder {
      color: #999;
    }
    .no-rooms {
      text-align: center;
      padding: 2rem;
      color: #cccccc;
      display: none;
    }
    .property-card.hide-card {
      display: none;
    }


    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    body {
      font-family: 'Inter', sans-serif;
      background: url('https://i.imgur.com/YUlPpOB.png') no-repeat center center fixed;
      background-size: cover;
      color: #1a1e24;
      line-height: 1.5;
      position: relative;
      min-height: 100vh;
    }
    .page-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 70px;
      position: relative;
      z-index: 1;
    }
    @media (max-width: 768px) {
      .page-wrapper {
        padding: 0 25px;
      }
    }
    :root {
      --WHITE: #ffffff;
      --pink-soft: #ffffff;
      --pink-light: #fff1f5;
      --border-light: #e6e6e6;
      --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
      --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    .container, .booking-header, .nav-bar, .hero-simple, .host-section, footer,
    .about-section, .faqs-section, .safety-section {
      border-radius: 0px !important;
    }
    img, button, input, select, textarea, a {
      border-radius: 0px !important;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1rem;
      position: relative;
      z-index: 1;
    }
    @media (min-width: 640px) {
      .container {
        padding: 1rem 1.5rem 2rem;
      }
    }
    .booking-header {
      background: rgba(20, 20, 20, 0.85);
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow-card);
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255,105,180,0.3);
      overflow: hidden;
      z-index: 1;
    }
    .nav-bar {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      gap: 0.8rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      position: sticky;
      top: 0;
      background: rgba(20, 20, 20, 0.95);
      z-index: 1000;
    }
    @media (min-width: 640px) {
      .nav-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
      }
    }
    .logo-area {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }
    .logo-icon {
      background: #ffffff;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }
    .logo-text {
      font-weight: 700;
      font-size: 1.1rem;
      color: #ffffff;
      letter-spacing: -0.3px;
    }
    @media (min-width: 640px) {
      .logo-text {
        font-size: 1.3rem;
      }
    }
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: #e0e0e0;
      text-align: center;
    }
    @media (min-width: 640px) {
      .nav-links {
        flex-direction: row;
        gap: 1.5rem;
        font-size: 0.85rem;
      }
    }
    .nav-links a {
      color: white;
      text-decoration: none;
    }
    .nav-links a:hover {
      color: #ffffff;
    }
    .hero-simple {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      padding: 1.5rem 1rem;
      text-align: center;
      border-top: 3px solid #ff69b4;
    }
    @media (min-width: 640px) {
      .hero-simple {
        padding: 2rem;
      }
    }
    .hero-simple h1 {
      font-size: clamp(1.5rem, 8vw, 10rem);
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      flex-wrap: wrap;
      text-shadow: none;
    }
    .hero-simple h1 span {
      font-family: 'Great Vibes', cursive;
      font-weight: 400;
      text-transform: none;
      font-size: clamp(1rem, 4vw, 5rem);
    }
    @media (max-width: 640px) {
      .hero-simple h1 {
        font-size: 1.8rem;
        gap: 0.5rem;
      }
      .hero-simple h1 span {
        font-size: 1.2rem;
      }
    }
    .hero-logo {
      width: clamp(30px, 8vw, 85px);
      height: clamp(30px, 8vw, 85px);
      object-fit: cover;
      border: 3px solid #ffffff;
      border-radius: 50% !important;
      loading: lazy;
    }
    @media (max-width: 640px) {
      .hero-logo:first-child {
        display: none;
      }
      .hero-logo:last-child {
        display: inline-block;
        width: clamp(25px, 6vw, 35px);
        height: clamp(25px, 6vw, 35px);
      }
    }
    .section-title-wrapper {
      position: relative;
      margin: 1.5rem 0 1rem;
      display: inline-block;
      width: auto;
    }
    .section-title {
      font-size: 1.3rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      background: #000000;
      padding: 12px 24px;
      color: white;
      width: auto;
    }
    .section-title span:first-of-type {
      font-family: 'Eagle Lake', cursive;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .section-title i {
      color: #ffffff;
    }
    @media (min-width: 640px) {
      .section-title {
        font-size: 1.5rem;
        padding: 14px 28px;
      }
    }
    .about-section, .faqs-section, .safety-section {
      background: #1a1a1a;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255,105,180,0.3);
      color: #e0e0e0;
    }
    .about-content, .faqs-content, .safety-content {
      margin-top: 1rem;
    }
    .about-text p {
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .faq-item {
      margin-bottom: 1.2rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255,105,180,0.2);
    }
    .faq-question {
      font-family: 'Eagle Lake', cursive;
      font-size: 1rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .faq-answer {
      font-size: 0.9rem;
      color: #cccccc;
      padding-left: 1.8rem;
    }
    .safety-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1rem;
    }
    .safety-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 0.8rem;
      background: #2a2a2a;
    }
    .safety-item i {
      color: #ffffff;
      font-size: 1.1rem;
    }
    .safety-item strong {
      color: #ffffff;
      display: block;
      margin-bottom: 4px;
    }
    .safety-item span {
      font-size: 0.8rem;
      color: #cccccc;
    }
    .host-section {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      padding: 1.2rem;
      margin-bottom: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
      border: 1px solid rgba(255,105,180,0.3);
      width: 100%;
      color: #1a1a1a;
    }
    @media (min-width: 640px) {
      .host-section {
        flex-direction: row;
        padding: 1.8rem;
        gap: 2rem;
        text-align: left;
      }
    }
    .host-section h3 {
      font-family: 'Eagle Lake', cursive;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 1.2rem;
      color: #1a1a1a;
    }
    .host-avatar img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border: 3px solid #ff69b4;
      border-radius: 50% !important;
      loading: lazy;
    }
    @media (min-width: 640px) {
      .host-avatar img {
        width: 100px;
        height: 100px;
      }
    }
    .footer-wrapper {
      margin-top: 0.5rem;
    }
    footer {
      text-align: center;
      padding: 1rem;
      font-size: 0.7rem;
      background: rgba(20, 20, 20, 0.85);
      backdrop-filter: blur(8px);
      color: #e0e0e0;
      border: 1px solid rgba(255,105,180,0.3);
    }
    @media (min-width: 640px) {
      footer {
        padding: 1.5rem;
        font-size: 0.75rem;
      }
    }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #ff69b4;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50% !important;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
      border: none;
      font-size: 1.2rem;
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }
    .back-to-top:hover {
      background: #ff1493;
      transform: scale(1.1);
    }
    .search-bar {
      margin-bottom: 1.5rem;
    }
    .search-input {
      width: 100%;
      padding: 0.8rem;
      background: #2a2a2a;
      border: 1px solid rgba(255,105,180,0.3);
      color: white;
      font-size: 0.9rem;
    }
    .search-input::placeholder {
      color: #999;
    }
    .no-results {
      text-align: center;
      padding: 2rem;
      color: #cccccc;
      display: none;
    }
    .faq-item.hide-faq {
      display: none;
    }

