@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=ZCOOL+XiaoWei&display=swap');

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

:root {
  --primary: #4527a0;
  --secondary: #7e57c2;
  --bg-dark: #1a1a2e;
  --bg-darker: #0f0f1a;
  --text-light: #e8eaf6;
  --text-muted: #b39ddb;
  --accent: #b388ff;
  --card-bg: rgba(69, 39, 160, 0.15);
  --border-glow: rgba(126, 87, 194, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 50px 160px, #fff, transparent),
    radial-gradient(2px 2px at 90px 40px, rgba(179,136,255,0.6), transparent),
    radial-gradient(1px 1px at 130px 80px, #fff, transparent),
    radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 200px 50px, #b388ff, transparent),
    radial-gradient(1px 1px at 250px 180px, #fff, transparent),
    radial-gradient(1px 1px at 300px 220px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 350px 90px, #fff, transparent),
    radial-gradient(1px 1px at 100px 250px, rgba(179,136,255,0.5), transparent),
    radial-gradient(1px 1px at 180px 300px, #fff, transparent),
    radial-gradient(1px 1px at 280px 350px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 50px 400px, #b388ff, transparent),
    radial-gradient(1px 1px at 400px 30px, #fff, transparent),
    radial-gradient(1px 1px at 450px 200px, rgba(255,255,255,0.7), transparent);
  background-size: 500px 500px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-glow);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 1.8rem;
  color: var(--accent);
  text-decoration: none;
  text-shadow: 0 0 15px rgba(179, 136, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(126, 87, 194, 0.6);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover,
nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 0 15px rgba(126, 87, 194, 0.5);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 3.2rem;
  background: linear-gradient(135deg, var(--accent), var(--secondary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(179, 136, 255, 0.4));
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 30px;
}

.hero-image {
  max-width: 900px;
  margin: 30px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(69, 39, 160, 0.5), 0 0 100px rgba(126, 87, 194, 0.2);
  border: 1px solid var(--border-glow);
}

.hero-image img {
  width: 100%;
  display: block;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: '✦';
  color: var(--secondary);
  font-size: 1.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(69, 39, 160, 0.4), 0 0 30px rgba(126, 87, 194, 0.3);
  border-color: var(--accent);
}

.card:hover::before {
  opacity: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-tag {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 3px 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.5;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(126, 87, 194, 0.2);
}

.hot-list {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  overflow: hidden;
}

.hot-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(126, 87, 194, 0.15);
  transition: background 0.3s ease;
  cursor: pointer;
}

.hot-item:last-child {
  border-bottom: none;
}

.hot-item:hover {
  background: rgba(69, 39, 160, 0.3);
}

.hot-rank {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 15px;
  flex-shrink: 0;
  background: rgba(126, 87, 194, 0.2);
  color: var(--text-muted);
}

.hot-item:nth-child(1) .hot-rank {
  background: linear-gradient(135deg, #ff1744, #d50000);
  color: #fff;
}

.hot-item:nth-child(2) .hot-rank {
  background: linear-gradient(135deg, #ff9100, #ff6d00);
  color: #fff;
}

.hot-item:nth-child(3) .hot-rank {
  background: linear-gradient(135deg, #ffea00, #ffd600);
  color: #333;
}

.hot-title {
  flex: 1;
  color: var(--text-light);
  font-size: 0.95rem;
}

.hot-trend {
  font-size: 0.85rem;
  margin-left: 10px;
  flex-shrink: 0;
}

.trend-up {
  color: #ff5252;
}

.trend-down {
  color: #69f0ae;
}

.trend-flat {
  color: var(--text-muted);
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary), var(--primary), var(--secondary));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 0 20px rgba(126, 87, 194, 0.6);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 10px 30px rgba(69, 39, 160, 0.4);
  transform: scale(1.02);
}

.timeline-time {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.category-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.category-item {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 25px 15px;
  text-align: center;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.4s ease;
}

.category-item:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(69, 39, 160, 0.5);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.category-title {
  font-size: 0.95rem;
  font-weight: 500;
}

.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.magazine-article {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.magazine-article:hover {
  box-shadow: 0 20px 50px rgba(69, 39, 160, 0.5);
  transform: translateY(-5px);
}

.magazine-cover {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.magazine-cover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
}

.magazine-body {
  padding: 25px;
}

.magazine-body .card-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.magazine-body h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.magazine-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.magazine-read {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.magazine-read:hover {
  color: #fff;
}

.breadcrumb {
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--secondary);
}

.daily-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.daily-item {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.daily-item:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(69, 39, 160, 0.3);
}

.daily-time {
  flex-shrink: 0;
  text-align: center;
  min-width: 70px;
}

.daily-time .date {
  display: block;
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}

.daily-time .month {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.daily-content {
  flex: 1;
}

.daily-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.daily-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.daily-stats {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.daily-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.about-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.about-hero h1 {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.value-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.value-card:hover {
  background: linear-gradient(135deg, rgba(69, 39, 160, 0.3), rgba(126, 87, 194, 0.2));
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.team-member {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.4s ease;
}

.team-member:hover {
  box-shadow: 0 15px 40px rgba(69, 39, 160, 0.4);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0 30px rgba(126, 87, 194, 0.4);
}

.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-light);
}

.team-role {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  padding: 35px;
}

.contact-form h2 {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  color: var(--text-light);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(179, 136, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans SC', sans-serif;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(69, 39, 160, 0.5);
}

.disclaimer {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  padding: 35px;
  margin: 40px 0;
}

.disclaimer h2 {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.disclaimer p,
.disclaimer li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.disclaimer ol {
  padding-left: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}

.pagination a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--accent);
}

.hot-trend-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hot-card {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.3s ease;
}

.hot-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(69, 39, 160, 0.3);
}

.hot-card-rank {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 1.8rem;
  font-weight: 700;
  min-width: 50px;
}

.hot-card-info {
  flex: 1;
  padding: 0 15px;
}

.hot-card-title {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 4px;
}

.hot-card-heat {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hot-card-arrow {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trending-section {
  background: linear-gradient(135deg, rgba(69, 39, 160, 0.2), rgba(126, 87, 194, 0.15));
  border-radius: 20px;
  padding: 40px 0;
  margin: 40px 0;
}

footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glow);
  padding: 50px 0 25px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 18px;
  font-family: 'ZCOOL XiaoWei', serif;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(126, 87, 194, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(126, 87, 194, 0.2);
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .magazine-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 55px;
    padding-right: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 11px;
    right: auto;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-glow);
  }

  nav ul.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .daily-item {
    flex-direction: column;
    gap: 15px;
  }

  .daily-time {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: auto;
  }

  .daily-time .date {
    font-size: 1.2rem;
  }

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

  .about-hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 50px 0 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .card {
    padding: 20px;
  }

  .contact-form,
  .disclaimer {
    padding: 25px 20px;
  }
}