#fw-section-rich-text-173584620420184 {
header {
  background-color: transparent !important;
  box-shadow: none !important; /* Removes any shadow if present */
}

header * {
  color: white !important; /* Makes text readable on the transparent background */
}
}
#fw-section-custom-html-523a37b3-7abe-4b6f-8ad5-64ca8c1a8214 {
.navbar {
    background-color: transparent !important;
    box-shadow: none !important;
}
}
#fw-section-announcement-bar-e38399b2-181c-42c9-9826-bc754b273235 {
.navbar {
    background-color: transparent !important;
    box-shadow: none !important;
}
}
#fw-section-header {
.navbar {
    background-color: transparent !important;
    box-shadow: none !important;
}

.header {
  border: none;
}
}
#fw-section-app:memberships-f3b901 {
/* Overall container for the tiers */
.tier-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  padding: 20px;
}

/* Individual tier card */
.tier {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative; /* To position pseudo-element inside */
}

/* Pseudo-element to create three V's above each tier */
.tier::before {
  content: 'V V V'; /* Adds three Vs */
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

/* Tier name */
.tier .tier-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Perks list (no descriptions, just perk names) */
.tier .perks {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Individual perk item styling */
.tier .perks li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Adding the 3 perks directly */
.tier .perks li:nth-child(1)::before {
  content: "Access to all NSFW ~Spicy~ Audios."; /* First perk */
  display: block;
}

.tier .perks li:nth-child(2)::before {
  content: "Access To Merch!"; /* Second perk */
  display: block;
}

.tier .perks li:nth-child(3)::before {
  content: "5% off merch!"; /* Third perk */
  display: block;
}

/* Hover effect for interaction */
.tier:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

}