/* Algemene basis voor betere leesbaarheid */
body {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  background-color: #f9fafb;
  font-family: 'Arial', sans-serif;
}

/* Fade-in animatie en keyframes */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease-in forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intro-sectie met subtiele schaduw en grotere headers */
.intro-freecrypto {
  background: linear-gradient(135deg, #f4f4f9, #ffffff);
  padding: 50px 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.intro-freecrypto .container {
  max-width: 1200px;
  margin: 0 auto;
}
.intro-freecrypto h2 {
  font-size: 2.5rem;
  color: #34495e;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.highlight-paragraph {
  font-weight: 600;
  margin-bottom: 20px;
  color: #444;
}

/* Coinbase-tip-sectie */
.coinbase-tip {
  background: #ffffff;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-left: 5px solid #2575fc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.coinbase-tip .container {
  max-width: 1000px;
  margin: 0 auto;
}
.coinbase-tip h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2575fc;
}

/* Knop specifiek voor Coinbase */
.coinbase-tip a[href*="coinbase.com"] {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  background: linear-gradient(45deg, #2ecc71, #27ae60);
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.coinbase-tip a[href*="coinbase.com"]:hover {
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Apps-grid (voor Robox, Ember, etc.) */
.apps-grid {
  background: #fafafa;
  padding: 50px 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.apps-grid .container {
  max-width: 1200px;
  margin: 0 auto;
}
.apps-grid h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #34495e;
}

/* Algemene kaartstijl (App- en Faucet-items) */
.app-item,
.faucet-item {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-item:hover,
.faucet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Titels in de kaarten */
.app-item h4,
.faucet-item h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #2575fc;
}

/* Buttons / CTA-knoppen met dynamische teksten */
.cta-btn,
.app-item a,
.faucet-item a {
  display: inline-block;
  color: #fff;
  background: linear-gradient(45deg, #2575fc, #1f63d8);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.cta-btn:hover,
.app-item a:hover,
.faucet-item a:hover {
  background: linear-gradient(45deg, #1f63d8, #2575fc);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Inline-afbeeldingen */
.inline-img {
  float: right;
  margin: 0 0 10px 20px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Disclaimer-sectie */
.disclaimer-section {
  background: #f9fafc;
  padding: 50px 20px;
  border: 2px solid #e1e5eb;
  border-radius: 10px;
}
.disclaimer-section h3 {
  font-size: 1.8rem;
  color: #d35400;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.disclaimer-section p,
.disclaimer-section ul {
  color: #555;
}

/* Responsieve grid */
@media (min-width: 768px) {
  .apps-grid .container,
  .wallets-section .container,
  .faucets-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .app-item,
  .faucet-item {
    margin-bottom: 30px;
  }
  .inline-img {
    float: none;
    display: block;
    margin: 20px auto;
  }
}
.section-icon {
  display: block;
  margin: 0 auto 20px;
  width: 80px;
  height: auto;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.section-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}
