:root {
  --primary-color: #2a71d0;
  --secondary-color: #1f2937;
  --accent-color: #3b82f6;
  --background-color: #f3f4f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--background-color);
  padding-top: 60px;
}

.header {
  background-color: var(--secondary-color);
  color: white;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header a,
.header a:link,
.header a:visited,
.header a:active {
  color: white;
  text-decoration: none;
}

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

.nav-menu {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-item:hover {
  color: var(--accent-color);
}

.burger-menu {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.burger-menu i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.burger-menu.active i {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .burger-menu {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-item {
    margin: 15px 0;
    font-size: 1.2em;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-menu .nav-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
  }

  .nav-menu .nav-item span {
    display: inline-block !important;
  }

  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu .nav-item:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu .nav-item:nth-child(2) { transition-delay: 0.2s; }
  .nav-menu .nav-item:nth-child(3) { transition-delay: 0.3s; }
  .nav-menu .nav-item:nth-child(4) { transition-delay: 0.4s; }

  body.menu-open {
    overflow: hidden;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;    
  background: linear-gradient(135deg, #2c3e50 0%, #1a1f25 100%);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-slide i,
.hero-slide h1,
.hero-slide p {
  position: relative;
  z-index: 2;
  margin: 1rem 0;
}

.hero-slide h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-slide p {
  font-size: 1.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-slide.slide1{
  background-position:center -320px;
}

.hero-slide.slide2{
  background-position:center -120px;
}

.hero-slide.slide3{
  background-position:center -160px;
}

.hero-slide.slide4{
  background-position:center -160px;
}

.hero-slide .service-btn {
  font-size: 1.5rem;
  z-index: 2;
  position: relative;
  color: white;
  margin-top: 2rem;
  padding: 5px 50px;
  opacity: 0.85;
  border-radius: 4rem;
  text-decoration: none;
  background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
}


.hero-slide .service-btn:hover {
  background: linear-gradient(315deg, #007bff 0%, #2196f3 100%);
}

.hero-slide .service-btn i {
  color:white;
  font-size: 1.4rem;
  padding: 4px 0 0 30px;
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 3;
}

.hero-progress-bar {
  height: 100%;
  background: var(--primary-color);
  width: 0;
  transition: width 0.1s linear;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: transparent;
  color: var(--accent-color);
  cursor: pointer;
  z-index: 3;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  padding: 0px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-prev {
  left: 2rem;
}

.testimonial-next {
  right: 2rem;
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.column {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tools {
  background-color: white;
  padding: 4rem 2rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.tool-card {
  background: var(--background-color);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.testimonials {
  padding: 60px 20px;
  background: #f8f9fa;
}

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

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 3px solid #2196f3;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-name {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-role {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 2;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #2196f3;
  color: white;
}

.testimonial-prev {
  left: 20px;
}

.testimonial-next {
  right: 20px;
}

.testimonial-nav {
  text-align: center;
  margin-top: 20px;
}

.testimonial-nav .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav .dot.active {
  background: #2196f3;
  transform: scale(1.2);
}

.partners {
  background: white;
  padding: 4rem 2rem;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

.partner-logo {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

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

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.crypto-dashboard {
  padding: 20px 20px;
  background: linear-gradient(135deg, #1a1f25 0%, #2c3e50 100%);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 12px;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 20px;
  color: #fff;
}

.card-content {
  flex-grow: 1;
}

.card-content h3 {
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.7);
}

.card-content .value {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 3px;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.metric-trend {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trend-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[data-metric="btc-dominance"] .card-icon {
  background: linear-gradient(135deg, #f7931a 0%, #fbb03b 100%);
}

[data-metric="btc-volatility"] .card-icon {
  background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
}

[data-metric="global-volume"] .card-icon {
  background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
}

[data-metric="market-cap"] .card-icon {
  background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
}

@media (max-width: 768px) {
  .crypto-dashboard {
    padding: 15px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .dashboard-card {
    padding: 12px;
  }

  .card-content .value {
    font-size: 1.2rem;
  }
}

.hero-section {
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 40px;
}

.hero-section.markets-hero{
  background-image: url('../img/Background-Alesia-Kozik-1.webp');
}

.hero-section.walletor-hero{
  background-image: url('../img/Background-Alesia-Kozik-6.webp');
}

.hero-section.alertor-hero{
  background-image: url('../img/Background-Alesia-Kozik-5.webp');
}

.hero-section.calculator-hero{
  background-image: url('../img/Background-Alesia-Kozik-2.webp');
}

.hero-section.donation-hero{
  background-image: url('../img/Background-aziz-acharki.webp');
}



.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section h1,
.hero-section p {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Top Movers Section */
.top-movers, .top-losers {
    padding: 40px 20px;
    background: #f8f9fa;
}

.top-movers p.sub-title,.top-losers p.sub-title {
  font-weight: 100;
  font-size: 1rem;
}

.movers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

.mover-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mover-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.mover-card:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mover-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.coin-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.coin-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.coin-symbol {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.mover-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.change {
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.change.positive {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.change.negative {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
}

@media (max-width: 768px) {
    .movers-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .mover-card {
        padding: 15px;
    }

    .coin-icon {
        width: 32px;
        height: 32px;
    }

    .coin-info h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 1.1rem;
    }
}

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

@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    flex-direction: column;
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

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

  .partner-logos {
    gap: 20px;
  }
  
  .partner-logo {
    height: 40px;
  }
  
  .testimonial-image {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .features-grid, .tools-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Services Section */
.services {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.service-card:hover .service-btn {
    background: linear-gradient(135deg, #0056b3 0%, #2196f3 100%);
    padding-right: 2rem;
}

.service-card:hover .service-btn i {
    transform: translateX(5px);
    opacity: 1;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin-top: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 30px;
    color: white;
}

.service-content h3 {
    font-size: 24px;
    margin: 0 0 15px;
    color: #333;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.feature i {
    color: #2196f3;
    font-size: 14px;
}

@media (max-width: 768px) {
    .services {
        padding: 40px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 25px;
    }

    .service-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
  .testimonial-content {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    padding: 110px;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slide i,
.hero-slide h1,
.hero-slide p {
    position: relative;
    z-index: 2;
}

.hero-slide i {
    margin-bottom: 20px;
    color: #2196f3;
}

.hero-slide h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-slide p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-bar {
    width: 0;
    height: 100%;
    background: #2196f3;
    transition: width 5s linear;
}

.hero-slideshow .testimonial-prev,
.hero-slideshow .testimonial-next {    
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: transparent;
  color: var(--accent-color);
  cursor: pointer;
  z-index: 3;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  padding: 0px;
}

.hero-slideshow .testimonial-prev:hover,
.hero-slideshow .testimonial-next:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-slideshow .testimonial-prev {
    left: 20px;
}

.hero-slideshow .testimonial-next {
    right: 20px;
}



@media (max-width: 1300px) {
  .hero-slide.slide1,
  .hero-slide.slide2,
  .hero-slide.slide3,
  .hero-slide.slide4 {
      background-position: center;
  }
}
@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-slide {
        padding: 110px 0;
    }

    .hero-slide h1 {
        font-size: 4rem;
    }

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

    .hero-slideshow .testimonial-prev,
    .hero-slideshow .testimonial-next {
        width: 35px;
        height: 35px;
        background-size: 20px;
    }
}

.btc-price-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
    font-size: 0.9em;
}

.btc-price-info .current-price {
    color: var(--text-primary);
    font-weight: 600;
}

.btc-price-info .ath-price {
    color: var(--text-secondary);
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .btc-price-info {
        display: none;
    }
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer a:hover {
    opacity: 0.8;
}

.footer .data-freshness {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer p:last-child {
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .footer {
        padding: 1rem;
        margin-top: 2rem;
    }
}

.clickable-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.clickable-row:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.coin-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coin-info img {
    width: 24px;
    height: 24px;
}

/* Styles globaux pour les variations de pourcentage */
.percentage-change {
    font-size: 0.9em;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

.percentage-change.positive {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.percentage-change.negative {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
}

/* Mise à jour des classes existantes pour utiliser le nouveau style */
.change.positive,
.mover-details .change.positive {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.change.negative,
.mover-details .change.negative {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* FAQ Section Styles */
.faq {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.panel-group {
    max-width: 1200px;
    margin: 2rem auto;
}

.panel {
    background: #fff;
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.panel-heading {
    padding: 0;
    border: none;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px;
}

.panel-heading h3 {
    margin: 0;
}

.panel-heading a {
    display: block;
    padding: 1.5rem 2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.panel-heading a:hover {
    color: #007bff;
}

.panel-heading a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.panel-heading a[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(180deg);
}

.panel-collapse {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.panel .faq-present p{
  padding: 0.2rem;
}

.panel .faq-present .fas{
    font-size: 1.5rem;
    padding: 1rem;
    width: 3rem;
}

.panel-body {
    padding: 2rem;
    color: #666;
    line-height: 1.6;
}

.panel-body ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.panel-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.panel-body ul li:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top:3px;
    color: #007bff;
    font-size: 0.8rem;
}

.panel-body .pl20 {
    padding-left: 1.5rem;
}

.panel-body .mb10 {
    margin-bottom: 1rem;
}

.panel-body i.fas {
    color: #007bff;
    margin-right: 0.5rem;
    width: 1.2rem;
    text-align: center;
}

.panel-body strong {
    color: #333;
}

.panel-body a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.panel-body a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.faq-present a {
    color: inherit;
    transition: color 0.2s ease;
}

.faq-present a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Animation pour le déploiement */
.panel-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.panel-collapse.show {
    max-height: 1000px; /* Valeur suffisamment grande pour contenir le contenu */
}

.panel-body {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.panel-collapse.show .panel-body {
    opacity: 1;
    transform: translateY(0);
}

/* Quote Section Styles */
.quote-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.05);
    top: -5rem;
    left: 2rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.quote-section blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.quote-section blockquote p {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    position: relative;
    display: inline-block;
}

.quote-section blockquote p::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 1rem auto 0;
}

@media (max-width: 768px) {
    .quote-section blockquote p {
        font-size: 2.5rem;
    }
    .quote-section::before {
        font-size: 12rem;
    }
}

@media screen and (max-width: 1050px) {
    .hide-if-narrow {
        display: none !important;
    }
}