* {
  box-sizing: border-box;
  user-select: none;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Gellix", Arial, Helvetica, sans-serif;
  color: #0b0b0b;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-book-arrow {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) scaleX(1);
}

.hero-book-card:hover .hero-book-cta,
.hero-book-card:focus .hero-book-cta {
  color: #ff2626;
  font-weight: 800;
}

/* Profile Library Card Hover Effects */
.profile-library-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(1);
  position: relative;
}

.profile-library-card:hover,
.profile-library-card:focus {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.profile-library-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: height 0.4s ease-in-out;
  pointer-events: none;
}

.profile-library-card:hover::after,
.profile-library-card:focus::after {
  height: 20%;
}

/* Profile Consult Card Hover Effects */
.profile-consult-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0);
}

.profile-consult-card:hover,
.profile-consult-card:focus {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.profile-consult-btn {
  transition: all 0.4s ease-in-out;
}

.profile-consult-card:hover .profile-consult-btn,
.profile-consult-card:focus .profile-consult-btn {
  background-color: #222;
  color: #fff;
  transform: scale(1.02);
}

/* Profile Message Card Hover Effects */
.profile-message-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(1) rotate(0deg);
}

.profile-message-card:hover,
.profile-message-card:focus {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.3);
}

.profile-message-arrow {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0) scaleY(1);
}

.profile-message-card:hover .profile-message-arrow,
.profile-message-card:focus .profile-message-arrow {
  transform: translateY(8px) scaleY(1.3);
  filter: drop-shadow(0 4px 8px rgba(34, 34, 34, 0.4));
}

/* Book Card Hover */
.book-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(1);
  position: relative;
}

.book-card:hover,
.book-card:focus {
  transform: scale(1.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.book-card::before {
  transition: backdrop-filter 0.4s ease-in-out;
}

.book-card:hover::before,
.book-card:focus::before {
  backdrop-filter: blur(12px);
}

.book-arrow {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) scaleX(1);
  filter: brightness(1);
}

.book-card:hover .book-arrow,
.book-card:focus .book-arrow {
  transform: translateX(16px) scaleX(1.3);
  filter: brightness(1.2) drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
}

.book-card-cta:hover,
.book-card-cta:focus {
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.3);
}

.book-cta-arrow {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0) scaleY(1);
}

.book-card-cta:hover .book-cta-arrow,
.book-card-cta:focus .book-cta-arrow {
  transform: translateY(8px) scaleY(1.4);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

/* Text & Element Animations */
.hero-title,
.hero-subtitle,
.profile-title,
.profile-subtitle,
.profile-tagline,
.books-title,
.books-subtitle,
.books-tagline,
.ratings-title,
.ratings-subtitle,
.ratings-tagline,
.consult-title,
.consult-subtitle,
.community-title,
.community-subtitle {
  transition: all 0.8s ease-in-out;
}

/* Card text animations */
.hero-book-title,
.hero-book-description,
.book-title,
.book-price,
.book-subtitle,
.profile-library-title,
.profile-library-subtitle,
.profile-consult-title,
.profile-consult-subtitle,
.profile-message-title,
.ratings-profile-name,
.ratings-profile-reviews {
  transition: all 0.4s ease-in-out;
}

/* Text Hover Effects */
.book-card:hover .book-title,
.book-card:hover .book-subtitle,
.book-card:hover .book-price,
.hero-book-card:hover .hero-book-title,
.hero-book-card:hover .hero-book-description,
.hero-book-cta:hover .hero-book-cta,
.hero-book-cta:focus .hero-book-cta {
  color: #ff2626;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.profile-library-card,
.profile-consult-card,
.profile-message-card,
.book-card,
.hero-book-card {
  position: relative;
  overflow: hidden;
}
.hero-frame {
  transition: all 0.6s ease-in-out;
  filter: drop-shadow(0 0 0px rgba(255, 38, 38, 0));
}

.hero-top-right:hover .hero-frame,
.hero-top-right:focus-within .hero-frame {
  filter: drop-shadow(0 0 40px rgba(255, 38, 38, 0.8))
    drop-shadow(0 0 60px rgba(255, 38, 38, 0.5));
}

/* Profile Consult Button */
.profile-consult-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.profile-consult-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ff2626, transparent);
  transition: left 0s ease-in-out;
  pointer-events: none;
}

/* Consult Right Content */
.consult-right-content-text {
  transition: all 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
}

/* Consult text hover effects - handled in hover.css */

.consult-right-content-arrow {
  transition: all 0.4s ease-in-out;
  transform: translateY(0) scaleY(1);
}

/* Consult Bottom Right Button */
.consult-bottom-right-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.consult-bottom-right-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ff2626, transparent);
  transition: left 0s ease-in-out;
  pointer-events: none;
}

/* Community X Card */
.community-x-card {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.community-x-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.community-x-card:hover,
.community-x-card:focus {
  transform: translateY(-8px) perspective(1000px) rotateX(2deg);
  box-shadow: 0 30px 60px rgba(255, 255, 255, 0.2),
    0 0 40px rgba(255, 255, 255, 0.1);
}

.community-x-card:hover::after,
.community-x-card:focus::after {
  opacity: 1;
}

.community-x-card:hover .community-x-content,
.community-x-card:focus .community-x-content {
  transform: scale(1.05);
}

.community-x-text {
  transition: all 0.4s ease-in-out;
}

.community-x-card:hover .community-x-text,
.community-x-card:focus .community-x-text {
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.community-x-arrow {
  transition: all 0.4s ease-in-out;
}

.community-x-card:hover .community-x-arrow,
.community-x-card:focus .community-x-arrow {
  transform: translateY(4px) scaleY(1.2);
  filter: drop-shadow(20px 0px 2px rgba(0, 255, 136, 0.6));
}

body {
  /* display: flex;
  justify-content: center; */
  font-family: "Gellix", Arial, Helvetica, sans-serif;
  /* margin: 0;
  padding: 0; */
  /* flex-direction: column; */
  /* align-items: center; */
  background-color: #111;
}

.parent-container {
  max-width: 2880px;
  /* display: flex;
  flex-direction: column; */
}

.header {
  width: 100%;
  height: 96px;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.brand-logo {
  height: 32px;
  cursor: pointer;
}

.menu-bar-icon {
  height: 28px;
  cursor: pointer;
}

.main {
  width: 100%;
  flex-grow: 1;
}

.hero-section {
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
  background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)),
    url("https://i.postimg.cc/3wfLMTB4/image.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section.fade-out {
  opacity: 0;
}

.hero-section.fade-in {
  opacity: 1;
}

.hero-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-top {
  height: 70%;
  width: 44%;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.hero-top-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: 180px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -8px;
  line-height: 110px;
}

.hero-subtitle {
  display: flex;
  font-size: 28px;
  color: #fff;
  font-weight: 400;
  gap: 10px;
  padding-left: 44px;
  letter-spacing: -1px;
}

.hero-top-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.6s ease-out;
}

.hero-top-right.parallax {
  transform: translateY(var(--parallax-offset, 0px));
}

.hero-frame {
  border-radius: 20px;
}

.hero-bottom {
  height: 30%;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bottom-up {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-bottom-down {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.hero-books-cards {
  display: flex;
  gap: 20px;
}

.hero-books-cards a {
  text-decoration: none;
  display: flex;
}

.hero-book-card {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  gap: 10px;
  height: 170px;
  width: 340px;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}

.hero-book-image {
  width: 120px;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-book-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.hero-book-title {
  font-size: 20px;
  color: #111;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 0.8;
}

.hero-book-description {
  font-size: 10px;
  color: #222;
  font-weight: 400;
  line-height: 1.4;
}

.hero-book-cta {
  font-size: 12px;
  color: #222;
  font-weight: 700;
  cursor: pointer;
}

.hero-book-arrow {
  width: 64px;
  height: 120px;
  flex-shrink: 0;
}

.hero-books-label {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.5px;
  padding-left: 28px;
}

.menu-sidebar {
  position: fixed;
  right: 40px;
  top: 100px;
  width: 440px;
  height: auto;
  border-radius: 30px;
  z-index: 999;
  display: none;
}

.menu-sidebar.active {
  display: block;
}

.menu-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 44px;
}

.menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.menu-cancel-btn {
  width: auto;
  height: 32px;
  cursor: pointer;
  opacity: 0.4;
}

.menu-main {
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
  padding: 10px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 44px;
  color: #aaa;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: -4px;
  line-height: 1.2;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.menu-arrow {
  width: auto;
  height: 28px;
}

.menu-footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.menu-brand-logo {
  width: 144px;
  height: auto;
  opacity: 0.4;
  cursor: pointer;
}

.profile-section {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.profile-section.fade-out {
  opacity: 0;
}

.profile-section.fade-in {
  opacity: 1;
}

.profile-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-top {
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.profile-title {
  font-size: 180px;
  font-weight: 500;
  color: #111;
  text-align: center;
  letter-spacing: -15px;
  line-height: 0.9;
}

.profile-subtitle {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  text-align: center;
  letter-spacing: -2px;
}

.profile-tagline {
  font-size: 32px;
  font-weight: 300;
  color: #000;
  text-align: center;
  line-height: 0.8;
  letter-spacing: -1px;
}

.profile-bottom {
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-cards {
  display: flex;
  gap: 10px;
}

.profile-cards a {
  text-decoration: none;
  display: flex;
}

.profile-library-card {
  width: 440px;
  height: 640px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url("");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 40px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.profile-library-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 10;
}

.profile-library-title {
  font-size: 96px;
  font-weight: 600;
  color: #fff;
  line-height: 0.6;
  letter-spacing: -5px;
}

.profile-library-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #ddd;
  line-height: 1.1;
  max-width: 300px;
}

.profile-library-view {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.profile-consult-card {
  width: 440px;
  height: 640px;
  background: linear-gradient(rgba(71, 71, 71, 0.4), rgba(72, 72, 72, 0.4)),
    url("https://i.postimg.cc/MTZc1tT8/image.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile-consult-top {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
}

.profile-consult-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-consult-title {
  font-size: 86px;
  font-weight: 600;
  color: #f9f9f9;
  line-height: 0.6;
  letter-spacing: -8px;
}

.profile-consult-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #ddd;
  line-height: 0.9;
  letter-spacing: -1px;
  max-width: 300px;
}

.profile-consult-bottom {
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.profile-consult-bottom a {
  text-decoration: none;
  display: flex;
}

.profile-consult-btn {
  display: flex;
  height: 120px;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 72px;
  font-weight: 500;
  background-color: #111;
  color: #ddd;
  cursor: pointer;
  text-align: center;
  letter-spacing: -8px;
  line-height: 0.6;
  border-radius: 4px;
}

.profile-message-card {
  width: 440px;
  height: 640px;
  background: linear-gradient(135deg, #00ff88 0%, #00dd77 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  cursor: pointer;
}

.profile-message-title {
  font-size: 96px;
  font-weight: 600;
  color: #222;
  text-align: flex-start;
  line-height: 0.6;
  letter-spacing: -8px;
  padding-left: 24px;
}

.profile-message-arrow {
  width: auto;
  height: 48px;
}

.consults-section {
  width: 100%;
  height: 100vh;
  background-color: #111;
  display: flex;
  align-items: center;
  padding-left: 60px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
  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;
  background-attachment: fixed;
}

.consults-section.fade-out {
  opacity: 0;
}

.consults-section.fade-in {
  opacity: 1;
}

.consult-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.consult-top {
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.consult-title {
  font-size: 144px;
  font-weight: 500;
  color: #fff;
  line-height: 0.7;
  max-width: 800px;
  letter-spacing: -15px;
}

.consult-subtitle {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-top: 10px;
}

.consult-subtitle strong {
  font-weight: 600;
}

.consult-text-divider {
  width: 480px;
  height: 10px;
  background-color: #fff;
  margin: 20px 0;
}

.consult-description {
  font-size: 20px;
  color: #aaa;
  font-weight: 400;
  line-height: 0.9;
  max-width: 600px;
  margin-top: 10px;
}

.consult-bottom {
  height: 40%;
  width: 80%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-end;
  padding: 20px;
}

.consult-bottom-left {
  height: 100%;
  display: flex;
  gap: 20px;
  background-color: #141414;
}

.consult-bottom-left-contents {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.consult-bottom-left-text {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 10;
  font-size: 64px;
  font-weight: 500;
  color: #fff;
  line-height: 0.9;
  max-width: 600px;
  letter-spacing: -5px;
}

.consult-bottom-left-cards {
  display: flex;
  gap: 20px;
  height: 100%;
  width: 100%;
  padding-bottom: 440px;
}

.consult-bottom-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  width: 320px;
  height: 420px;
  flex-shrink: 0;
}

.consult-bottom-card-title {
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  line-height: 0.8;
  letter-spacing: -4px;
}

.consult-bottom-card-description {
  font-size: 14px;
  font-weight: 400;
  color: #ddd;
  line-height: 0.8;
}

.consult-bottom-right-contents {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding-bottom: 40px;
}

.consult-bottom-right-contents a {
  text-decoration: none;
  display: flex;
}

.consult-right-content-arrow {
  width: auto;
  height: 440px;
}

.consult-right-content-text {
  font-size: 44px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 0.8;
  letter-spacing: -4px;
}

.consult-bottom-right {
  width: 20%;
  height: 100%;
  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: 4px;
}

.consult-bottom-right-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  gap: 20px;
}

.consult-bottom-right-wrapper a {
  text-decoration: none;
  display: flex;
  width: 100%;
}

.consult-bottom-right-entry {
  width: auto;
  height: 32px;
  align-self: flex-end;
}

.consult-bottom-right-text {
  font-size: 64px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 0.9;
  letter-spacing: -8px;
}

.consult-bottom-right-btn {
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  font-size: 44px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: -4px;
}

.books-section {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.books-section.fade-out {
  opacity: 0;
}

.books-section.fade-in {
  opacity: 1;
}

.books-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.books-top {
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.books-title {
  font-size: 180px;
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 0.9;
  letter-spacing: -15px;
}

.books-subtitle {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  text-align: center;
  letter-spacing: -2px;
}

.books-tagline {
  font-size: 32px;
  font-weight: 300;
  color: #000;
  text-align: center;
  line-height: 0.8;
  letter-spacing: -1px;
}

.books-bottom {
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.books-cards {
  display: flex;
  gap: 20px;
  width: 80%;
  height: 100%;
  cursor: pointer;
}

.books-cards a {
  text-decoration: none;
  display: flex;
  flex: 1;
}

.book-card {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
}

.book-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(8px);
  border-radius: 16px;
}

.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: 440px;
  border-radius: 2px;
  object-fit: contain;
  flex-shrink: 0;
}

.book-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.book-price {
  font-size: 15px;
  font-weight: 700;
  color: #ff2626;
  line-height: 1.2;
  letter-spacing: -1px;
}

.book-title {
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  line-height: 0.8;
  letter-spacing: -4px;
}

.book-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #ddd;
  line-height: 1.5;
}

.book-arrow {
  width: 144px;
  height: 44px;
  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: 30px;
  z-index: 1;
  position: relative;
}

.book-cta-text {
  font-size: 144px;
  font-weight: 600;
  color: #000;
  text-align: center;
  line-height: 0.7;
  letter-spacing: -12px;
}

.book-cta-arrow {
  width: auto;
  height: 40px;
}

.ratings-section {
  width: 100%;
  height: 100vh;
  background-color: #111;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.ratings-section.fade-out {
  opacity: 0;
}

.ratings-section.fade-in {
  opacity: 1;
}

.ratings-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ratings-top {
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.ratings-title {
  font-size: 180px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: -15px;
  line-height: 0.9;
}

.ratings-subtitle {
  font-size: 36px;
  font-weight: 700;
  color: #aaa;
  text-align: center;
  letter-spacing: -2px;
}

.ratings-tagline {
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 0.8;
  letter-spacing: -1px;
}

.ratings-center {
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 5px;
}

.ratings-up {
  height: 50%;
  width: 75%;
  display: flex;
  gap: 5px;
}

.ratings-down {
  height: 50%;
  width: 75%;
  display: flex;
  gap: 5px;
}

.ratings-card {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  padding: 10px;
  gap: 5px;
  align-items: flex-start;
}

.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;
}

.ratings-profile-image {
  width: 150px;
  height: 100%;
  object-fit: cover;
}

.ratings-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  flex: 1;
}

.ratings-profile-name {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  letter-spacing: -2px;
}

.ratings-profile-reviews {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.ratings-profile-stars {
  width: 120px;
  height: auto;
}

.ratings-bottom {
  height: 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding-right: 60px;
}

.ratings-bottom a {
  text-decoration: none;
  display: flex;
}

.ratings-expand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.ratings-expand-text {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

.ratings-expand-arrow {
  width: auto;
  height: 32px;
}

.community-section {
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  padding-left: 60px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
  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: fixed;
}

.community-section.fade-out {
  opacity: 0;
}

.community-section.fade-in {
  opacity: 1;
}

.community-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 44px;
}

.community-top {
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.community-title {
  font-size: 144px;
  font-weight: 500;
  color: #fff;
  line-height: 0.7;
  max-width: 800px;
  letter-spacing: -15px;
}

.community-subtitle {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-top: 10px;
}

.community-subtitle strong {
  font-weight: 600;
}

.community-text-divider {
  width: 480px;
  height: 10px;
  background-color: #fff;
  margin: 20px 0;
}

.community-description {
  font-size: 20px;
  color: #aaa;
  font-weight: 300;
  line-height: 0.9;
  max-width: 600px;
  margin-top: 10px;
}

.community-bottom {
  height: 40%;
  width: 44%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
}

.community-bottom a {
  text-decoration: none;
  display: flex;
  width: 30%;
}

.community-subscribe-card {
  width: 65%;
  /* Subtle glassmorphism */
  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: 10px;
  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: 40px;
  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: 52px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -4px;
}

.community-subscribe-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.community-subscribe-submit {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.community-submit-name,
.community-submit-email {
  background: none;
  border: none;
  font-size: 15px;
  color: #fff;
  font-family: "Gellix", sans-serif;
  outline: none;
}

.community-submit-name::placeholder,
.community-submit-email::placeholder {
  color: #ddd;
}

.community-submit-divider {
  height: 10px;
  background-color: #fff;
  width: 60%;
  border: none;
}

.community-subscribe-entry {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.community-entry-text {
  font-size: 10px;
  font-weight: 400;
  color: #fff;
}

.community-entry-arrow {
  width: auto;
  height: 28px;
}

.community-x-card {
  width: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  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: 72px;
  font-weight: 600;
  color: #ddd;
  text-align: center;
  line-height: 0.8;
  letter-spacing: -5px;
}

.community-x-arrow {
  width: auto;
  height: 40px;
  opacity: 0.9;
}

.footer {
  width: 100%;
  height: 244px;
  background-color: #141414;
  display: flex;
  align-items: center;
  border-radius: 10px;
}

.footer-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  gap: 88px;
}

.footer-top {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  height: 28px;
  width: 80px;
  opacity: 0.5;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-weight: 300;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  line-height: 1.2;
}

.arrow-icon {
  height: 20px;
}

@media (min-width: 1024px) and (max-width: 2100px) {
  /* ===== 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: 900px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  /* Consistent section padding */
  .hero-section,
  .profile-section,
  .consults-section,
  .books-section,
  .ratings-section,
  .community-section {
    padding: 40px 20px !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: 20px !important;
    margin-bottom: 30px !important;
  }

  /* Consistent card spacing */
  .profile-cards,
  .hero-cards-container,
  .books-cards,
  .ratings-up,
  .ratings-down,
  .consult-bottom-left-cards {
    gap: 15px !important;
  }

  /* Ensure no overflow on containers */
  * {
    box-sizing: border-box;
  }

  /* ===== TABLET BREAKPOINT ===== */
  /* ===== HEADER ===== */
  .header {
    height: 75px;
    background-color: #111;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-wrapper {
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }

  .brand-logo {
    width: auto;
    height: 44px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .brand-logo:hover,
  .brand-logo:focus {
    transform: scale(1.05);
    opacity: 0.9;
  }

  .menu-bar-icon {
    width: auto;
    height: 38px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .menu-bar-icon:hover,
  .menu-bar-icon:focus {
    transform: scale(1.05);
    opacity: 0.9;
  }

  /* ===== HERO SECTION ===== */
  .hero-section {
    padding: 40px 20px;
    min-height: 80vh;
    height: auto;
    background-size: cover;
    background-position: center;
  }

  .hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: 75%;
    height: auto;
  }

  .hero-top-left {
    width: 100%;
  }

  .hero-title {
    font-size: 120px;
    line-height: 0.7;
    font-weight: 500;
    letter-spacing: -8px;
    color: #fff;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    padding-left: 0;
    gap: 8px;
  }

  .hero-top-right {
    width: 100%;
    height: auto;
  }

  .hero-frame {
    width: 720px;
    height: auto;
    max-width: 380px;
    border-radius: 12px;
  }

  /* ===== HERO BOTTOM / CARDS ===== */
  .hero-bottom {
    margin-top: 40px;
    width: 100%;
    height: auto;
  }

  .hero-bottom-up {
    margin-bottom: 15px;
  }

  .hero-books-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  .hero-book-card {
    width: 100%;
    height: 140px;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
  }

  .hero-book-image {
    width: 100px;
    height: 100%;
    border-radius: 2px;
    object-fit: cover;
  }

  .hero-book-content {
    flex: 1;
    gap: 8px;
    padding: 0 10px;
  }

  .hero-book-title {
    font-size: 18px;
  }

  .hero-book-description {
    font-size: 12px;
  }

  .hero-book-cta {
    font-size: 15px;
    font-weight: 500;
  }

  .hero-book-arrow {
    width: 32px;
    height: auto;
  }

  .hero-books-label {
    font-size: 13px;
    padding-left: 0;
    margin-bottom: 10px;
  }

  /* ===== PROFILE SECTION ===== */
  .profile-section {
    padding: 40px 20px;
    height: auto;
    min-height: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
  }

  .profile-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .profile-top {
    height: auto;
    padding: 30px 20px;
    gap: 20px;
    margin-bottom: 30px;
  }

  .profile-title {
    font-size: 110px;
    font-weight: 600;
    color: #111;
    text-align: center;
    letter-spacing: -8px;
    line-height: 0.7;
  }

  .profile-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    text-align: center;
    letter-spacing: -2px;
    margin-bottom: 10px;
  }

  .profile-tagline {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 0.8;
    letter-spacing: 0;
  }

  .profile-bottom {
    height: auto;
    padding: 20px 0;
  }

  .profile-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  .profile-cards a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .profile-library-card {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 25px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 0px;
  }

  .profile-library-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
  }

  .profile-library-title {
    font-size: 64px;
    font-weight: 600;
    color: #fff;
    line-height: 0.7;
    letter-spacing: -5px;
  }

  .profile-library-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #ddd;
    line-height: 0.8;
    max-width: 100%;
  }

  .profile-consult-card {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 0px;
  }

  .profile-consult-top {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 25px;
  }

  .profile-consult-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .profile-consult-title {
    font-size: 64px;
    font-weight: 600;
    color: #f9f9f9;
    line-height: 0.7;
    letter-spacing: -6px;
  }

  .profile-consult-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
    line-height: 1.3;
    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: 100px;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 64px;
    font-weight: 500;
    background-color: #111;
    color: #ddd;
    cursor: pointer;
    text-align: center;
    letter-spacing: -6px;
    line-height: 0.8;
    border-radius: 4px;
  }

  .profile-message-card {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #00ff88 0%, #00dd77 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    cursor: pointer;
    border-radius: 0px;
  }

  .profile-message-title {
    font-size: 84px;
    font-weight: 600;
    color: #222;
    text-align: center;
    line-height: 0.7;
    letter-spacing: -8px;
  }

  .profile-message-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
  }

  /* ===== CONSULT SECTION ===== */
  .consults-section {
    padding: 40px 20px;
    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: 900px;
    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: 20px;
    margin-bottom: 40px;
  }

  .consult-title {
    font-size: 110px;
    font-weight: 500;
    color: #fff;
    line-height: 0.7;
    max-width: 100%;
    letter-spacing: -8px;
  }

  .consult-subtitle {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
  }

  .consult-subtitle strong {
    font-weight: 600;
  }

  .consult-text-divider {
    width: 280px;
    height: 8px;
    background-color: #fff;
    margin: 15px 0;
  }

  .consult-description {
    font-size: 18px;
    color: #aaa;
    font-weight: 400;
    line-height: 1.1;
    max-width: 100%;
  }

  .consult-bottom {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 20px 0;
  }

  .consult-bottom-left {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: transparent;
  }

  .consult-bottom-left-contents {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
  }

  .consult-bottom-left-text {
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 10;
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    line-height: 0.8;
    max-width: 100%;
    letter-spacing: -6px;
  }

  .consult-bottom-left-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    height: auto;
    width: 100%;
    padding: 0;
  }

  .consult-bottom-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    width: 100%;
    height: 240px;
    flex-shrink: 0;
  }

  .consult-bottom-card-title {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 0.8;
    letter-spacing: -2px;
  }

  .consult-bottom-card-description {
    font-size: 12px;
    font-weight: 400;
    color: #ddd;
    line-height: 1.2;
    max-width: 200px;
  }

  .consult-bottom-right-contents {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px 0;
  }

  .consult-bottom-right-contents a {
    text-decoration: none;
    display: flex;
  }

  .consult-right-content-arrow {
    width: 144px;
    height: 320px;
  }

  .consult-right-content-text {
    font-size: 44px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 0.7;
    letter-spacing: -6px;
  }

  .consult-bottom-right {
    width: 100%;
    height: 440px;
    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: 6px;
  }

  .consult-bottom-right-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    gap: 15px;
  }

  .consult-bottom-right-wrapper a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .consult-bottom-right-entry {
    width: auto;
    height: 24px;
    align-self: flex-end;
  }

  .consult-bottom-right-text {
    font-size: 72px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 0.7;
    letter-spacing: -7px;
  }

  .consult-bottom-right-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    font-size: 44px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: -4px;
  }

  /* ===== BOOKS SECTION ===== */
  .books-section {
    padding: 40px 20px;
    height: auto;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    align-items: center;
  }

  .books-wrapper {
    max-width: 900px;
    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: 25px;
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .books-title {
    font-size: 110px;
    font-weight: 600;
    color: #111;
    text-align: center;
    letter-spacing: -8px;
    line-height: 0.7;
  }

  .books-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    text-align: center;
    letter-spacing: -2px;
    margin-bottom: 10px;
  }

  .books-tagline {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 0.8;
    letter-spacing: 0;
  }

  .books-bottom {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }

  .books-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    height: auto;
    cursor: pointer;
  }

  .books-cards a {
    text-decoration: none;
    display: flex;
    width: 100%;
  }

  .book-card {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
  }

  .book-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(6px);
  }

  .book-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
  }

  .book-view {
    width: 100%;
    height: 280px;
    border-radius: 4px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .book-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .book-price {
    font-size: 12px;
    font-weight: 700;
    color: #ff2626;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .book-title {
    font-size: 44px;
    font-weight: 500;
    color: #fff;
    line-height: 0.7;
    letter-spacing: -4px;
  }

  .book-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #ddd;
    line-height: 1.4;
  }

  .book-arrow {
    width: 80px;
    height: 28px;
    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: 20px;
    z-index: 1;
    position: relative;
  }

  .book-cta-text {
    font-size: 110px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 0.7;
    letter-spacing: -6px;
  }

  .book-cta-arrow {
    width: auto;
    height: 32px;
  }

  /* ===== RATINGS SECTION ===== */
  .ratings-section {
    padding: 40px 20px;
    height: auto;
    min-height: 100vh;
    background-color: #111;
    display: flex;
    align-items: center;
  }

  .ratings-wrapper {
    max-width: 900px;
    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: 25px;
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .ratings-title {
    font-size: 110px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: -8px;
    line-height: 0.7;
  }

  .ratings-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #ddd;
    text-align: center;
    letter-spacing: -2px;
    margin-bottom: 10px;
  }

  .ratings-tagline {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 0.8;
    letter-spacing: 0;
  }

  .ratings-center {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
  }

  .ratings-up {
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ratings-down {
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ratings-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 15px;
    gap: 8px;
    align-items: flex-start;
    border-radius: 2px;
    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: 8px;
    padding: 0;
    flex: 1;
    width: 100%;
  }

  .ratings-profile-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.8px;
  }

  .ratings-profile-reviews {
    font-size: 12px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
  }

  .ratings-profile-stars {
    width: 80px;
    height: auto;
  }

  .ratings-bottom {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    margin-top: 20px;
  }

  .ratings-bottom a {
    text-decoration: none;
    display: flex;
  }

  .ratings-expand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .ratings-expand-text {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
  }

  .ratings-expand-arrow {
    width: auto;
    height: 44px;
  }

  /* ===== COMMUNITY SECTION ===== */
  .community-section {
    padding: 40px 20px;
    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: 900px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }

  .community-top {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .community-title {
    font-size: 110px;
    font-weight: 500;
    color: #fff;
    line-height: 0.7;
    max-width: 100%;
    letter-spacing: -8px;
  }

  .community-subtitle {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin-top: 6px;
  }

  .community-subtitle strong {
    font-weight: 600;
  }

  .community-text-divider {
    width: 280px;
    height: 8px;
    background-color: #fff;
    margin: 12px 0;
  }

  .community-description {
    font-size: 14px;
    color: #aaa;
    font-weight: 300;
    line-height: 1.5;
    max-width: 100%;
    margin-top: 6px;
  }

  .community-bottom {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 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: 8px;
    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: 25px;
    gap: 12px;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: inherit;
    cursor: pointer;
  }

  .community-subscribe-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .community-subscribe-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -1.5px;
  }

  .community-subscribe-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
  }

  .community-subscribe-submit {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .community-submit-name,
  .community-submit-email {
    background: none;
    border: none;
    font-size: 13px;
    color: #fff;
    font-family: "Gellix", sans-serif;
    outline: none;
  }

  .community-submit-name::placeholder,
  .community-submit-email::placeholder {
    color: #ddd;
  }

  .community-submit-divider {
    height: 8px;
    background-color: #fff;
    width: 60%;
    border: none;
  }

  .community-subscribe-entry {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .community-entry-text {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
  }

  .community-entry-arrow {
    width: auto;
    height: 20px;
  }

  .community-x-card {
    width: 100%;
    height: 240px;
    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: 12px;
    z-index: 1;
    position: relative;
  }

  .community-x-text {
    font-size: 64px;
    font-weight: 600;
    color: #ddd;
    text-align: center;
    line-height: 0.7;
    letter-spacing: -4px;
  }

  .community-x-arrow {
    width: auto;
    height: 32px;
    opacity: 0.9;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 25px 20px;
    height: auto;
    background-color: #141414;
    display: flex;
    align-items: center;
  }

  .footer-wrapper {
    max-width: 900px;
    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: 70px;
    opacity: 0.5;
    cursor: pointer;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    display: flex;
    gap: 15px;
  }

  .footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    font-weight: 300;
  }

  .footer-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
    line-height: 1.2;
  }

  .arrow-icon {
    height: 16px;
  }

  /* ===== MENU SIDEBAR ===== */
  .menu-sidebar {
    position: fixed;
    right: 20px;
    top: 85px;
    width: 320px;
    height: auto;
    border-radius: 20px;
    z-index: 999;
    display: none;
  }

  .menu-sidebar.active {
    display: block;
  }

  .menu-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
  }

  .menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .menu-cancel-btn {
    width: auto;
    height: 24px;
    cursor: pointer;
    opacity: 0.5;
  }

  .menu-main {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
    padding: 10px 0;
    gap: 15px;
  }

  .menu-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 44px;
    color: #aaa;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: -5px;
    line-height: 0.7;
    position: relative;
    transition: all 0.3s ease-in-out;
  }

  .menu-arrow {
    width: auto;
    height: 20px;
  }

  .menu-footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 15px;
  }

  .menu-brand-logo {
    width: 100px;
    height: auto;
    opacity: 0.4;
    cursor: pointer;
  }
}
