* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B35;
  --primary-dark: #E65A2E;
  --primary-light: #FF8C5F;
  --secondary: #4ECDC4;
  --accent: #FFD93D;
  --orange: #FF6B35;
  --blue: #3DA5D9;
  --green: #2ECC71;
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A6A;
  --text-muted: #8A8AA0;
  --bg-light: #F5F7FA;
  --bg-card: #FFFFFF;
  --border: #E1E4E8;
  --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
  --shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  --shadow-lg: 0 10px 40px rgba(255, 107, 53, 0.2);
  --gradient: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  --gradient-hot: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 3rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.02);
}

.logo svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  filter: drop-shadow(0 2px 8px rgba(255, 51, 102, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.cta-btn {
  padding: 0.875rem 2rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50px;
  border: none;
  text-decoration: none;
}

.btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
}

.btn-outline {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-large {
  padding: 1.5rem 3.5rem;
  font-size: 1.125rem;
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hot-manga,
.featured-manga {
  padding: 8rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 51, 102, 0.1);
  border: 1px solid rgba(255, 51, 102, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.manga-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.manga-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.manga-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.manga-card.featured {
  grid-column: span 1;
  grid-row: span 2;
}

.manga-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1.25rem;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50px;
  z-index: 2;
  box-shadow: var(--shadow);
}

.manga-badge.hot {
  background: var(--gradient-hot);
}

.manga-badge.new {
  background: var(--secondary);
}

.manga-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.manga-card.featured .manga-cover {
  aspect-ratio: 3/5;
}

.manga-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.manga-card:hover .manga-cover img {
  transform: scale(1.1);
}

.manga-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.manga-card:hover .manga-overlay {
  opacity: 1;
}

.btn-read {
  padding: 0.875rem 2rem;
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-read:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.manga-info {
  padding: 1.5rem;
}

.manga-card.featured .manga-info {
  padding: 2rem;
}

.manga-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.manga-genre {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.manga-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.manga-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  color: var(--accent);
}

.rating svg {
  width: 1rem;
  height: 1rem;
}

.views {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.categories {
  padding: 8rem 0;
  background: var(--bg-light);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.category-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.category-count {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 51, 102, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50px;
}

.new-updates,
.latest-manga {
  padding: 8rem 0;
  background: white;
}

.update-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.update-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s;
}

.update-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.update-cover {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.update-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-info {
  flex: 1;
}

.update-info h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.update-chapter {
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.update-time {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.btn-continue {
  padding: 0.625rem 1.25rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-continue:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.ranking,
.popular {
  padding: 8rem 0;
  background: var(--bg-light);
}

.ranking-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.ranking-tab {
  padding: 0.875rem 2.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-secondary);
}

.ranking-tab.active,
.ranking-tab:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.ranking-item {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s;
}

.ranking-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.ranking-number {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ranking-number.top {
  background: var(--gradient);
  color: white;
}

.ranking-cover {
  width: 100px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.ranking-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-info {
  flex: 1;
}

.ranking-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.ranking-info p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.ranking-stats {
  display: flex;
  gap: 2rem;
}

.ranking-stats .views {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.ranking-stats .rating {
  font-size: 0.9375rem;
  color: var(--accent);
}

.features {
  padding: 8rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about {
  padding: 8rem 0;
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.about-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green);
}

.about-feature span {
  font-weight: 700;
  color: var(--text-primary);
}

.about-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-section {
  padding: 8rem 0;
  background: var(--gradient);
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer {
  background: var(--text-primary);
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.footer-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--primary-light);
  font-weight: 700;
}

.footer-desc {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 10px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9375rem;
}

.footer-links-inline {
  display: flex;
  gap: 2rem;
}

.footer-links-inline a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s;
}

.footer-links-inline a:hover {
  color: var(--primary);
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  z-index: 90;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.scroll-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .manga-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .update-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .header-content {
    height: 70px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 1.125rem;
  }

  .manga-grid {
    grid-template-columns: 1fr;
  }

  .manga-card.featured {
    grid-row: span 1;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .update-list {
    grid-template-columns: 1fr;
  }

  .update-card {
    flex-direction: column;
    text-align: center;
  }

  .btn-continue {
    width: 100%;
  }

  .ranking-tabs {
    gap: 0.5rem;
  }

  .ranking-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .ranking-item {
    flex-direction: column;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.125rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
