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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #0b0e11;
  color: #eaecef;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 14, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 185, 11, 0.1);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(11, 14, 17, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.header .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #F0B90B;
  letter-spacing: 1px;
}
.header .logo .logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #F0B90B 0%, #f7d56e 50%, #F0B90B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0e11;
  font-weight: 900;
  font-size: 14px;
}
.header .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .nav-links a {
  color: #848e9c;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.header .nav-links a:hover {
  color: #F0B90B;
}
.header .nav-links a:hover::after {
  width: 100%;
}
.header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F0B90B;
  transition: width 0.3s;
}
.header .nav-btn {
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.header .nav-btn.btn-login {
  background: transparent;
  color: #F0B90B;
  border: 1px solid #F0B90B;
}
.header .nav-btn.btn-login:hover {
  background: rgba(240, 185, 11, 0.1);
}
.header .nav-btn.btn-register {
  background: #F0B90B;
  color: #0b0e11;
  margin-left: 12px;
}
.header .nav-btn.btn-register:hover {
  background: #d4a30a;
  transform: translateY(-1px);
}
.header .mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.header .mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #eaecef;
  transition: all 0.3s;
  border-radius: 2px;
}
.header .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(240, 185, 11, 0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5%, 5%);
  }
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #F0B90B;
  margin-bottom: 24px;
}
.hero .hero-content .hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #0ecb81;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #eaecef 40%, #F0B90B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-content h1 .highlight {
  background: linear-gradient(135deg, #F0B90B 0%, #f7d56e 50%, #F0B90B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-content .hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #848e9c;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero .hero-content .hero-image {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid #2b3139;
}
.hero .hero-content .hero-image img {
  width: 100%;
  height: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-buttons .hero-btn {
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-buttons .hero-btn.hero-btn-primary {
  background: #F0B90B;
  color: #0b0e11;
  box-shadow: 0 4px 24px rgba(240, 185, 11, 0.3);
}
.hero-buttons .hero-btn.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240, 185, 11, 0.4);
}
.hero-buttons .hero-btn.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #eaecef;
  border: 1px solid #2b3139;
}
.hero-buttons .hero-btn.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #5e6673;
}

.ticker-bar {
  background: #1e2329;
  border-top: 1px solid #2b3139;
  border-bottom: 1px solid #2b3139;
  padding: 16px 0;
  overflow: hidden;
}
.ticker-bar .ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-bar .ticker-track .ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.ticker-bar .ticker-track .ticker-item .ticker-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}
.ticker-bar .ticker-track .ticker-item .ticker-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.ticker-bar .ticker-track .ticker-item .ticker-price {
  font-weight: 700;
  font-size: 0.95rem;
}
.ticker-bar .ticker-track .ticker-item .ticker-change {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.ticker-bar .ticker-track .ticker-item .ticker-change.up {
  color: #0ecb81;
  background: rgba(14, 203, 129, 0.1);
}
.ticker-bar .ticker-track .ticker-item .ticker-change.down {
  color: #f6465d;
  background: rgba(246, 70, 93, 0.1);
}

.stats {
  padding: 60px 20px;
  background: #0b0e11;
}
.stats .stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats .stats-grid .stat-item {
  text-align: center;
  padding: 24px 16px;
  background: #1e2329;
  border-radius: 16px;
  border: 1px solid #2b3139;
  transition: all 0.3s;
}
.stats .stats-grid .stat-item:hover {
  border-color: rgba(240, 185, 11, 0.3);
  transform: translateY(-4px);
}
.stats .stats-grid .stat-item .stat-number {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #F0B90B;
  margin-bottom: 8px;
}
.stats .stats-grid .stat-item .stat-label {
  font-size: 0.85rem;
  color: #848e9c;
}

.section {
  padding: 80px 20px;
}
.section .section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section .section-header .section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(240, 185, 11, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #F0B90B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section .section-header .section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.section .section-header .section-subtitle {
  font-size: 1rem;
  color: #848e9c;
  max-width: 600px;
  margin: 0 auto;
}
.section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.coins-section {
  background: #0b0e11;
}
.coins-section .coins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.coins-section .coins-grid .coin-card {
  background: #1e2329;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #2b3139;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
}
.coins-section .coins-grid .coin-card:hover {
  border-color: rgba(240, 185, 11, 0.3);
  background: #2b3139;
  transform: translateY(-2px);
}
.coins-section .coins-grid .coin-card .coin-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.coins-section .coins-grid .coin-card .coin-info {
  flex: 1;
}
.coins-section .coins-grid .coin-card .coin-info .coin-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.coins-section .coins-grid .coin-card .coin-info .coin-symbol {
  font-size: 0.8rem;
  color: #5e6673;
}
.coins-section .coins-grid .coin-card .coin-price-info {
  text-align: right;
}
.coins-section .coins-grid .coin-card .coin-price-info .coin-price {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.coins-section .coins-grid .coin-card .coin-price-info .coin-change {
  font-size: 0.85rem;
  font-weight: 600;
}
.coins-section .coins-grid .coin-card .coin-price-info .coin-change.up {
  color: #0ecb81;
}
.coins-section .coins-grid .coin-card .coin-price-info .coin-change.down {
  color: #f6465d;
}

.features-section {
  background: linear-gradient(180deg, #0b0e11 0%, #0f1318 100%);
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.features-section .features-grid .feature-card {
  background: #1e2329;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #2b3139;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.features-section .features-grid .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #F0B90B 0%, #f7d56e 50%, #F0B90B 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.features-section .features-grid .feature-card:hover {
  border-color: rgba(240, 185, 11, 0.2);
  transform: translateY(-4px);
}
.features-section .features-grid .feature-card:hover::before {
  opacity: 1;
}
.features-section .features-grid .feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(240, 185, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.features-section .features-grid .feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.features-section .features-grid .feature-card p {
  color: #848e9c;
  font-size: 0.9rem;
  line-height: 1.7;
}

.gallery-section {
  background: #0b0e11;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-section .gallery-grid .gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2b3139;
  transition: all 0.3s;
  position: relative;
}
.gallery-section .gallery-grid .gallery-item:hover {
  border-color: rgba(240, 185, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.gallery-section .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-section .gallery-grid .gallery-item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.gallery-section .gallery-grid .gallery-item .gallery-caption {
  padding: 16px;
  background: #1e2329;
}
.gallery-section .gallery-grid .gallery-item .gallery-caption h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.gallery-section .gallery-grid .gallery-item .gallery-caption p {
  font-size: 0.8rem;
  color: #848e9c;
}

.steps-section {
  background: linear-gradient(180deg, #0f1318 0%, #0b0e11 100%);
}
.steps-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.steps-section .steps-grid .step-card {
  text-align: center;
  position: relative;
}
.steps-section .steps-grid .step-card .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0B90B 0%, #f7d56e 50%, #F0B90B 100%);
  color: #0b0e11;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
}
.steps-section .steps-grid .step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.steps-section .steps-grid .step-card p {
  color: #848e9c;
  font-size: 0.9rem;
  line-height: 1.6;
}
.steps-section .steps-grid .step-card .step-image {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2b3139;
}
.steps-section .steps-grid .step-card .step-image img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.security-section {
  background: #0b0e11;
}
.security-section .security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.security-section .security-content .security-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #2b3139;
}
.security-section .security-content .security-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.security-section .security-content .security-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.security-section .security-content .security-list .security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.security-section .security-content .security-list .security-item .security-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 203, 129, 0.1);
  color: #0ecb81;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.security-section .security-content .security-list .security-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.security-section .security-content .security-list .security-item p {
  font-size: 0.85rem;
  color: #848e9c;
  line-height: 1.6;
}

.cta-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.05) 0%, transparent 50%);
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(240, 185, 11, 0.08) 0%, transparent 70%);
}
.cta-section .cta-content {
  position: relative;
  z-index: 2;
}
.cta-section .cta-content .cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-section .cta-content .cta-desc {
  font-size: 1.1rem;
  color: #848e9c;
  max-width: 500px;
  margin: 0 auto 36px;
}

.footer {
  background: #080a0d;
  border-top: 1px solid #2b3139;
  padding: 60px 20px 30px;
}
.footer .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer .footer-grid .footer-brand .logo {
  margin-bottom: 16px;
}
.footer .footer-grid .footer-brand p {
  color: #848e9c;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer .footer-grid .footer-brand .footer-social {
  display: flex;
  gap: 12px;
}
.footer .footer-grid .footer-brand .footer-social .social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1e2329;
  border: 1px solid #2b3139;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.footer .footer-grid .footer-brand .footer-social .social-link:hover {
  border-color: #F0B90B;
  background: rgba(240, 185, 11, 0.1);
}
.footer .footer-grid .footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #eaecef;
}
.footer .footer-grid .footer-col a {
  display: block;
  color: #848e9c;
  font-size: 0.85rem;
  padding: 6px 0;
  transition: color 0.3s;
}
.footer .footer-grid .footer-col a:hover {
  color: #F0B90B;
}
.footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #2b3139;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .footer-bottom p {
  color: #5e6673;
  font-size: 0.8rem;
}
.footer .footer-bottom .footer-links {
  display: flex;
  gap: 24px;
}
.footer .footer-bottom .footer-links a {
  color: #5e6673;
  font-size: 0.8rem;
}
.footer .footer-bottom .footer-links a:hover {
  color: #F0B90B;
}

@media (max-width: 768px) {
  .header .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 14, 17, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #2b3139;
  }
  .header .nav-links.active {
    display: flex;
  }
  .header .nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .header .nav-buttons .btn-login,
  .header .nav-buttons .btn-register {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding: 12px 24px;
  }
  .header .mobile-menu-btn {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }
  .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .security-section .security-content {
    grid-template-columns: 1fr;
  }
  .security-section .security-content .security-image img {
    height: 250px;
  }
  .footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer .footer-grid .footer-brand {
    grid-column: 1/-1;
    margin-bottom: 30px;
    text-align: left;
  }
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-section .gallery-grid .gallery-item img {
    height: 200px;
  }
  .steps-section .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .header .nav-container {
    padding: 0 16px;
  }
  .hero {
    padding: 90px 16px 40px;
  }
  .hero .hero-content .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-content .hero-buttons .hero-btn {
    width: 100%;
    justify-content: center;
  }
  .section {
    padding: 56px 16px;
  }
  .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stats .stats-grid .stat-item {
    padding: 16px 12px;
  }
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
  .coins-section .coins-grid {
    grid-template-columns: 1fr;
  }
  .steps-section .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-bottom .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta-section {
    padding: 60px 16px;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0b0e11;
}

::-webkit-scrollbar-thumb {
  background: #5e6673;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #848e9c;
}

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

.mb-0 {
  margin-bottom: 0;
}/*# sourceMappingURL=styles.css.map */