/* 战魔（冰雪传奇高爆）官网 - 首页样式 */

:root {
  --primary: #0EA5E9;
  --secondary: #0284C7;
  --accent: #38BDF8;
  --bg-dark: #0b1220;
  --bg-light: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-ice: rgba(56, 189, 248, 0.28);
  --glow: rgba(14, 165, 233, 0.45);
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 18, 32, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-ice);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--text-main);
}

.nav-brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 0 18px var(--glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s;
}

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

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 0 20px var(--glow);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s;
}

/* ===== 移动端抽屉 ===== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: rgba(11, 18, 32, 0.96);
  backdrop-filter: blur(18px);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 6rem 1.5rem 2rem;
  gap: 1.25rem;
  border-left: 1px solid var(--border-ice);
  transition: right 0.35s ease;
  visibility: hidden;
}

.mobile-drawer.active {
  right: 0;
  visibility: visible;
}

.mobile-drawer a {
  font-size: 1.1rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--accent);
}

.mobile-cta {
  margin-top: 1rem;
  text-align: center;
  padding: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.12), transparent 40%),
    var(--bg-dark);
  overflow: hidden;
}

.hero-snow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-snow .flake {
  position: absolute;
  top: -10%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid var(--border-ice);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(56, 189, 248, 0.25);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-ice);
  font-size: 0.85rem;
  color: var(--text-main);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 0 28px var(--glow), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 38px var(--glow), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-ice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.25s;
}

.btn-ice:hover {
  background: rgba(56, 189, 248, 0.12);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.25);
}

/* Hero 右侧视觉 */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-frame {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(56, 189, 248, 0.08));
  animation: morph 8s ease-in-out infinite alternate;
  filter: blur(1px);
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  border: 2px solid var(--border-ice);
  animation: morph 8s ease-in-out infinite alternate-reverse;
}

@keyframes morph {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  100% { border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%; }
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 78%;
  border-radius: 24px;
  filter: drop-shadow(0 0 34px var(--glow));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-crystals {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-crystals .crystal {
  position: absolute;
  width: 14px;
  height: 22px;
  background: linear-gradient(180deg, var(--accent), transparent);
  clip-path: polygon(50% 0%, 100% 70%, 50% 100%, 0% 70%);
  opacity: 0.7;
  animation: crystal-float 4s ease-in-out infinite alternate;
}

@keyframes crystal-float {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-20px) rotate(15deg); }
}

/* ===== 通用区块 ===== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background:
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.06), transparent 35%),
    var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.title-seal {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
}

.title-seal::before,
.title-seal::after {
  content: "◆";
  color: var(--accent);
  font-size: 0.6em;
  opacity: 0.7;
}

.title-line {
  width: 80px;
  height: 3px;
  margin: 0.75rem auto;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  border-radius: 999px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== 版本介绍 ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.intro-text {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.intro-text h3 {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.intro-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
}

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

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.18);
}

.stat-item .number {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-item .label {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== 特色区（蜂窝/菱形） ===== */
.features-honeycomb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.honey-cell {
  position: relative;
  width: 220px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.3s, box-shadow 0.3s;
}

.honey-cell:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 32px var(--glow);
}

.honey-cell:nth-child(even) {
  margin-top: 40px;
}

.honey-cell img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 18px var(--glow);
}

.honey-cell h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.honey-cell p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== 活动/累充 ===== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: transform 0.25s, box-shadow 0.25s;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.16);
}

.activity-card h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.activity-card ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.activity-card li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  position: relative;
  padding-left: 1.1rem;
}

.activity-card li::before {
  content: "❄";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.vip-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(56, 189, 248, 0.06));
  border: 1px solid var(--accent);
}

.recharge-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-ice);
}

.recharge-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.recharge-table th,
.recharge-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.recharge-table th {
  background: rgba(14, 165, 233, 0.14);
  color: var(--accent);
  font-weight: 700;
}

.recharge-table tr:last-child td {
  border-bottom: none;
}

.recharge-table tr:hover td {
  background: rgba(56, 189, 248, 0.06);
}

/* ===== 下载区 ===== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.18);
}

.download-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.14);
  color: var(--accent);
  font-size: 1.6rem;
  border: 1px solid var(--border-ice);
}

.download-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.download-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.download-card img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 12px;
  border: 2px solid var(--border-ice);
}

.download-btn-small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== 联系区 ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.18);
}

.contact-card img {
  width: 130px;
  height: 130px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  border: 2px solid var(--border-ice);
}

.contact-card h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

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

.ai-bot {
  margin-top: 2rem;
  text-align: center;
}

.ai-bot a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-ice);
  color: var(--accent);
  font-weight: 700;
  transition: all 0.25s;
}

.ai-bot a:hover {
  background: rgba(56, 189, 248, 0.18);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.22);
}

/* ===== 悬浮联系入口 ===== */
.floating-contact {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 999;
}

.floating-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 0 24px var(--glow);
  transition: transform 0.25s;
}

.floating-toggle:hover {
  transform: scale(1.08);
}

.floating-menu {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s;
}

.floating-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  color: var(--text-main);
  font-size: 0.9rem;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.floating-menu a:hover {
  background: rgba(14, 165, 233, 0.2);
  color: var(--accent);
}

/* ===== 页脚 ===== */
.footer {
  position: relative;
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.06));
  border-top: 1px solid var(--border-ice);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--glow);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.25s;
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ===== 滚动渐入 ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-friends {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(14, 165, 233, 0.06) 100%);
  border-top: 1px solid var(--border-ice);
}

.section-friends .container {
  width: 92%;
  max-width: 1000px;
}

.friends-card {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
}

.friends-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.friends-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.friends-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid var(--border-ice);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s;
  max-width: 100%;
  word-break: break-word;
}

.friends-list a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--glow);
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .section-friends { padding: 2.5rem 0; }
  .friends-card { padding: 1.25rem; }
  .friends-list { gap: 0.5rem; }
  .friends-list a { padding: 0.5rem 0.85rem; font-size: 0.85rem; }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badges,
  .hero-actions {
    justify-content: center;
  }

  .hero-visual-frame {
    width: min(300px, 80%);
  }

  .intro-grid,
  .activities-grid,
  .download-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features-honeycomb {
    flex-direction: column;
    align-items: center;
  }

  .honey-cell:nth-child(even) {
    margin-top: 0;
  }

  .recharge-table-wrap {
    margin: 1.5rem 0 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .section {
    padding: 3.5rem 0;
  }

  .floating-contact {
    right: 1rem;
    bottom: 1rem;
  }
}
