:root {
    --space-dark: #0B0D17;
    --nebula-purple: #6A00F4;
    --star-blue: #00D1FF;
    --planet-orange: #FF6D00;
    --comet-yellow: #FFD700;
    --milky-white: #E6F1FF;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--space-dark);
    color: var(--milky-white);
    min-height: 100vh;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(106, 0, 244, 0.15) 0%, transparent 25%),
      radial-gradient(circle at 80% 70%, rgba(0, 209, 255, 0.15) 0%, transparent 25%),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="white" opacity="0.8"/><circle cx="50" cy="50" r="0.3" fill="white" opacity="0.6"/><circle cx="80" cy="30" r="0.4" fill="white" opacity="0.7"/></svg>');
    line-height: 1.6;
    padding: 0;
    margin: 0;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--nebula-purple), var(--star-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
  }
  
  h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--nebula-purple), transparent);
    border-radius: 3px;
  }
  
  .subtitle {
    color: rgba(230, 241, 255, 0.7);
    font-size: 1.2rem;
    font-weight: 300;
  }
  
  .fact-container {
    background: rgba(11, 13, 23, 0.7);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(106, 0, 244, 0.3);
    box-shadow: 
      0 10px 30px rgba(106, 0, 244, 0.1),
      inset 0 0 20px rgba(0, 209, 255, 0.05);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .fact-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 0, 244, 0.1) 0%, transparent 70%);
    animation: rotate 60s linear infinite;
    z-index: -1;
  }
  
  .fact-card {
    width: 100%;
    text-align: center;
  }
  
  .fact-icon {
    font-size: 3rem;
    color: var(--comet-yellow);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }
  
  .fact-text {
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
    padding: 1rem;
    background: rgba(11, 13, 23, 0.5);
    border-radius: 10px;
    border-left: 3px solid var(--planet-orange);
    margin-bottom: 2rem;
  }
  
  .fact-actions {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .btn {
    background: linear-gradient(135deg, var(--nebula-purple), var(--star-blue));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 
      0 5px 15px rgba(106, 0, 244, 0.4),
      0 0 10px rgba(0, 209, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
  }
  
  .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0) 55%
    );
    transform: rotate(30deg);
    transition: all 0.3s;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 8px 25px rgba(106, 0, 244, 0.6),
      0 0 15px rgba(0, 209, 255, 0.4);
  }
  
  .btn:hover::after {
    left: 100%;
  }
  
  .ad-container {
    margin: 3rem 0;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.7);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
  }
  
  footer {
    text-align: center;
    margin-top: auto;
    padding: 2rem 0;
    color: rgba(230, 241, 255, 0.5);
    font-size: 0.9rem;
  }
  
  /* Animations */
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .loading {
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .fact-enter {
    animation: fadeIn 0.6s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 1.5rem;
    }
    
    h1 {
      font-size: 2.2rem;
    }
    
    .fact-text {
      font-size: 1.2rem;
    }
    
    .fact-container {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
    }
    
    .btn {
      width: 100%;
      max-width: 300px;
    }
    
    .fact-icon {
      font-size: 2.5rem;
    }
  }

  .footer-brand {
    max-width: 500px;
    margin: 0 auto 0.1rem;
}


.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 0rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 0.2rem;
    line-height: 1.7;
}

footer a {
  text-decoration: none; /* Remove the underline */
  color: inherit; /* Optional: to inherit the text color from its parent element */
}