/* Base Mobile Breakpoint */
@media (max-width: 767px) {
  /* ===== ALIGNMENT OPTIMIZATION ===== */
  /* Ensure all sections use consistent max-width for proper flow */
  .parent-container {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Normalize base spacing */
  body {
    margin: 0;
    padding: 0;
    font-family: Gellix, sans-serif;
  }

  /* Consistent wrapper max-width across all sections */
  .hero-wrapper,
  .profile-wrapper,
  .consult-wrapper,
  .books-wrapper,
  .ratings-wrapper,
  .community-wrapper,
  .footer-wrapper {
    max-width: 100% !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  /* Consistent section padding */
  .hero-section,
  .profile-section,
  .consults-section,
  .books-section,
  .ratings-section,
  .community-section {
    padding: 30px 15px !important;
  }

  /* Smooth typography transitions */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    padding: 0;
  }

  /* Normalize gaps for consistent vertical rhythm */
  .hero-top,
  .profile-top,
  .consult-top,
  .books-top,
  .ratings-top,
  .community-top {
    gap: 15px !important;
    margin-bottom: 25px !important;
  }

  /* Consistent card spacing */
  .profile-cards,
  .hero-cards-container,
  .books-cards,
  .ratings-up,
  .ratings-down,
  .consult-bottom-left-cards {
    gap: 12px !important;
  }

  /* Ensure no overflow on containers */
  * {
    box-sizing: border-box;
  }

  /* ===== MOBILE BREAKPOINT ===== */
  /* ===== HEADER ===== */
  .header {
    height: 64px;
    background-color: #111;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-wrapper {
    width: 100%;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }

  .brand-logo {
    width: auto;
    height: 32px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .brand-logo:active {
    transform: scale(0.95);
    opacity: 0.8;
  }

  .menu-bar-icon {
    width: auto;
    height: 28px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .menu-bar-icon:active {
    transform: scale(0.95);
    opacity: 0.8;
  }

  /* ===== HERO SECTION ===== */
  .hero-section {
    padding: 20px 15px 40px 15px;
    height: auto;
    min-height: auto;
    background-size: cover;
    background-position: center;
  }

  .hero-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
  }

  .hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
    gap: 20px;
  }

  .hero-top-left {
    width: 100%;
    margin-bottom: 0;
  }

  .hero-title {
    font-size: 64px;
    text-align: left;
    font-weight: 500;
    line-height: 0.7;
    letter-spacing: -6px;
    color: #fff;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.1;
    color: #fff;
    padding-left: 0;
    gap: 6px;
  }

  .hero-top-right {
    width: 100%;
    height: auto;
    margin-top: 0;
    max-width: 100%;
  }

  .hero-frame {
    width: 90%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
  }

  /* ===== HERO BOTTOM / CARDS ===== */
  .hero-bottom {
    margin-top: 30px;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .hero-bottom-up {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .hero-bottom-down {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .hero-books-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-books-cards a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .hero-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .hero-book-card {
    width: 100%;
    height: auto;
    padding: 12px;
    border-radius: 4px;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
  }

  .hero-book-image {
    width: 80px;
    height: 100%;
    border-radius: 1px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .hero-book-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
  }

  .hero-book-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
  }

  .hero-book-description {
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .hero-book-cta {
    font-size: 11px;
    font-weight: 500;
  }

  .hero-book-arrow {
    width: 28px;
    height: auto;
    flex-shrink: 0;
  }

  .hero-books-label {
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.5px;
    padding-left: 0;
    margin-bottom: 10px;
  }

  /* ===== PROFILE SECTION ===== */
  .profile-section {
    padding: 30px 15px;
    height: auto;
    min-height: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
  }

  .profile-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .profile-top {
    height: auto;
    padding: 20px 15px;
    gap: 15px;
    margin-bottom: 20px;
  }

  .profile-title {
    font-size: 64px;
    font-weight: 600;
    color: #111;
    text-align: center;
    letter-spacing: -6px;
    line-height: 0.7;
    /* margin-bottom: 8px; */
  }

  .profile-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
  }

  .profile-tagline {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .profile-bottom {
    height: auto;
    padding: 15px 0;
  }

  .profile-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
  }

  .profile-cards a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .profile-library-card {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* border-radius: 6px; */
  }

  .profile-library-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
  }

  .profile-library-title {
    font-size: 64px;
    font-weight: 600;
    color: #fff;
    line-height: 0.7;
    letter-spacing: -4px;
  }

  .profile-library-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #ddd;
    line-height: 1.4;
    max-width: 100%;
  }

  .profile-consult-card {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* border-radius: 6px; */
  }

  .profile-consult-top {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
  }

  .profile-consult-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .profile-consult-title {
    font-size: 44px;
    font-weight: 600;
    color: #f9f9f9;
    line-height: 0.7;
    letter-spacing: -4px;
  }

  .profile-consult-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #ddd;
    line-height: 0.8;
    letter-spacing: 0;
    max-width: 100%;
  }

  .profile-consult-bottom {
    display: flex;
    flex-direction: column;
    padding: 5px;
  }

  .profile-consult-bottom a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .profile-consult-btn {
    display: flex;
    height: 104px;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    font-weight: 500;
    background-color: #111;
    color: #ddd;
    cursor: pointer;
    text-align: center;
    letter-spacing: -6px;
    line-height: 0.7;
    border-radius: 4px;
  }

  .profile-message-card {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #00ff88 0%, #00dd77 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    cursor: pointer;
    /* border-radius: 6px; */
  }

  .profile-message-title {
    font-size: 72px;
    font-weight: 600;
    max-width: 340px;
    color: #222;
    text-align: left;
    line-height: 0.7;
    letter-spacing: -6px;
  }

  .profile-message-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #222;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
  }

  /* ===== CONSULT SECTION ===== */
  .consults-section {
    padding: 30px 15px;
    height: auto;
    min-height: 100vh;
    background: linear-gradient(rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.75)),
      url("https://i.postimg.cc/g0bmZKD4/image.png");
    background-size: cover;
    background-position: center;
  }

  .consult-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .consult-top {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .consult-title {
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    line-height: 0.7;
    max-width: 100%;
    letter-spacing: -5px;
  }

  .consult-subtitle {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    margin-top: 6px;
  }

  .consult-subtitle strong {
    font-weight: 600;
  }

  .consult-text-divider {
    width: 140px;
    height: 6px;
    background-color: #fff;
    margin: 12px 0;
  }

  .consult-description {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
    line-height: 1.4;
    max-width: 100%;
    margin-top: 6px;
  }

  .consult-bottom {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    padding: 15px 0;
  }

  .consult-bottom-left {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: transparent;
  }

  .consult-bottom-left-contents {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
  }

  .consult-bottom-left-text {
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 10;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 0.7;
    max-width: 100%;
    letter-spacing: -4px;
  }

  .consult-bottom-left-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    height: auto;
    width: 100%;
    padding: 0;
  }

  .consult-bottom-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    width: 100%;
    height: 180px;
    flex-shrink: 0;
  }

  .consult-bottom-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    line-height: 0.7;
    letter-spacing: -2px;
  }

  .consult-bottom-card-description {
    font-size: 11px;
    font-weight: 400;
    color: #ddd;
    line-height: 1.3;
  }

  .consult-bottom-right-contents {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px 0;
  }

  .consult-bottom-right-contents a {
    text-decoration: none;
    display: flex;
  }

  .consult-right-content-arrow {
    width: 80px;
    height: 144px;
  }

  .consult-right-content-text {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 0.8;
    letter-spacing: -2px;
  }

  .consult-bottom-right {
    width: 100%;
    height: 280px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
      url("https://i.postimg.cc/tCnKNxYC/image.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
  }

  .consult-bottom-right-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
  }

  .consult-bottom-right-wrapper a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .consult-bottom-right-entry {
    width: auto;
    height: 30px;
    align-self: flex-end;
  }

  .consult-bottom-right-text {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 0.7;
    letter-spacing: -4px;
  }

  .consult-bottom-right-btn {
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: -4px;
  }

  /* ===== BOOKS SECTION ===== */
  .books-section {
    padding: 30px 15px;
    height: auto;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    align-items: center;
  }

  .books-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .books-top {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    margin-bottom: 25px;
  }

  .books-title {
    font-size: 64px;
    font-weight: 600;
    color: #111;
    text-align: center;
    letter-spacing: -6px;
    line-height: 0.7;
  }

  .books-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-align: center;
    letter-spacing: -0.8px;
  }

  .books-tagline {
    font-size: 15px;
    font-weight: 300;
    color: #000;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }

  .books-bottom {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
  }

  .books-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    height: auto;
    cursor: pointer;
  }

  .books-cards a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .book-card {
    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
    /* border-radius: 6px; */
  }

  .book-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(4px);
    border-radius: 6px;
  }

  .book-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
  }

  .book-view {
    width: 100%;
    height: 144px;
    border-radius: 3px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .book-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .book-price {
    font-size: 11px;
    font-weight: 700;
    color: #ff2626;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }

  .book-title {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 0.7;
    letter-spacing: -4px;
  }

  .book-subtitle {
    font-size: 11px;
    font-weight: 400;
    color: #ddd;
    line-height: 1.3;
  }

  .book-arrow {
    width: 60px;
    height: 22px;
    flex-shrink: 0;
  }

  .book-card-cta {
    background: linear-gradient(135deg, #00ff88 0%, #00dd77 100%);
    filter: none;
    background-attachment: unset;
  }

  .book-card-cta::before {
    display: none;
  }

  .book-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 1;
    position: relative;
  }

  .book-cta-text {
    font-size: 72px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 0.7;
    letter-spacing: -4px;
  }

  .book-cta-arrow {
    width: auto;
    height: 24px;
  }

  /* ===== RATINGS SECTION ===== */
  .ratings-section {
    padding: 30px 15px;
    height: auto;
    min-height: 100vh;
    background-color: #111;
    display: flex;
    align-items: center;
  }

  .ratings-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .ratings-top {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    margin-bottom: 25px;
  }

  .ratings-title {
    font-size: 64px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: -6px;
    line-height: 0.7;
  }

  .ratings-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #aaa;
    text-align: center;
    letter-spacing: -2px;
  }

  .ratings-tagline {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 0.8;
    letter-spacing: -1px;
  }

  .ratings-center {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 12px;
  }

  .ratings-up {
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ratings-down {
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ratings-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 12px;
    gap: 10px;
    align-items: flex-start;
    border-radius: 4px;
    height: auto;
  }

  .ratings-down .ratings-card {
    background-color: #141414;
  }

  .ratings-down .ratings-profile-name {
    color: #fff;
  }

  .ratings-down .ratings-profile-reviews {
    color: #ccc;
  }

  .ratings-card-left {
    flex-shrink: 0;
    display: none;
  }

  .ratings-profile-image {
    width: 0;
    height: 0;
    object-fit: cover;
    display: none;
  }

  .ratings-card-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding: 0;
    flex: 1;
    width: 100%;
  }

  .ratings-profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.6px;
  }

  .ratings-profile-reviews {
    font-size: 11px;
    font-weight: 400;
    color: #333;
    line-height: 1.3;
  }

  .ratings-profile-stars {
    width: 60px;
    height: auto;
  }

  .ratings-bottom {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    margin-top: 15px;
  }

  .ratings-bottom a {
    text-decoration: none;
    display: flex;
  }

  .ratings-expand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .ratings-expand-text {
    font-size: 11px;
    font-weight: 400;
    color: #fff;
  }

  .ratings-expand-arrow {
    width: auto;
    height: 20px;
  }

  /* ===== COMMUNITY SECTION ===== */
  .community-section {
    padding: 30px 15px;
    height: auto;
    min-height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
      url("https://i.postimg.cc/nr9srgXk/image.png");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }

  .community-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 15px 0;
  }

  .community-top {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
  }

  .community-title {
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    line-height: 0.7;
    max-width: 100%;
    letter-spacing: -6px;
  }

  .community-subtitle {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    margin-top: 4px;
  }

  .community-subtitle strong {
    font-weight: 600;
  }

  .community-text-divider {
    width: 140px;
    height: 6px;
    background-color: #fff;
    margin: 10px 0;
  }

  .community-description {
    font-size: 12px;
    color: #aaa;
    font-weight: 300;
    line-height: 1.4;
    max-width: 100%;
    margin-top: 4px;
  }

  .community-bottom {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
  }

  .community-bottom a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .community-subscribe-card {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(209, 209, 209, 0.06),
      rgba(222, 222, 222, 0.03)
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: inherit;
    cursor: pointer;
  }

  .community-subscribe-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .community-subscribe-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -1px;
  }

  .community-subscribe-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
  }

  .community-subscribe-submit {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .community-submit-name,
  .community-submit-email {
    background: none;
    border: none;
    font-size: 12px;
    color: #fff;
    font-family: "Gellix", sans-serif;
    outline: none;
  }

  .community-submit-name::placeholder,
  .community-submit-email::placeholder {
    color: #ddd;
  }

  .community-submit-divider {
    height: 6px;
    background-color: #fff;
    width: 60%;
    border: none;
  }

  .community-subscribe-entry {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

  .community-entry-text {
    font-size: 9px;
    font-weight: 400;
    color: #fff;
  }

  .community-entry-arrow {
    width: auto;
    height: 16px;
  }

  .community-x-card {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .community-x-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    position: relative;
  }

  .community-x-text {
    font-size: 44px;
    font-weight: 600;
    color: #ddd;
    text-align: center;
    line-height: 0.7;
    letter-spacing: -2px;
  }

  .community-x-arrow {
    width: auto;
    height: 32px;
    opacity: 0.9;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 10px 7px;
    height: auto;
    background-color: #141414;
    display: flex;
    align-items: center;
  }

  .footer-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
  }

  .footer-brand-logo {
    height: 24px;
    width: 60px;
    opacity: 0.5;
    cursor: pointer;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-links {
    display: flex;
    gap: 10px;
  }

  .footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    font-weight: 300;
  }

  .footer-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    line-height: 1.2;
  }

  .arrow-icon {
    height: 14px;
  }

  /* ===== MENU SIDEBAR ===== */
  .menu-sidebar {
    position: fixed;
    right: 15px;
    top: 75px;
    width: 280px;
    height: auto;
    border-radius: 16px;
    z-index: 999;
    display: none;
    background-color: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 90vh;
    overflow-y: auto;
  }

  .menu-sidebar.active {
    display: block;
  }

  .menu-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
  }

  .menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .menu-cancel-btn {
    width: auto;
    height: 20px;
    cursor: pointer;
    opacity: 0.5;
  }

  .menu-main {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    padding: 4px 0;
    gap: 12px;
  }

  .menu-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 32px;
    color: #aaa;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: -3px;
    line-height: 0.7;
    position: relative;
    transition: all 0.3s ease-in-out;
  }

  .menu-arrow {
    width: auto;
    height: 16px;
  }

  .menu-footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .menu-brand-logo {
    width: 80px;
    height: auto;
    opacity: 0.4;
    cursor: pointer;
  }
}
