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

  .content-visible .card-content {
    opacity: 1;
    pointer-events: auto;
  }
  
  .content-visible .unlock-wrapper {
    opacity: 0;
    pointer-events: none;
  }
  
  .content-visible .content-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: transparent;
    pointer-events: none;
  }
  
  .content-visible.unlock-card::before {
    opacity: 0;
  }
  

  .backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  

  .text-light {
    color: var(--light);
  }
  
  .text-secondary {
    color: rgba(249, 250, 251, 0.6);
  }
  

  .text-decoration-none {
    text-decoration: none;
  }
  

  .custom-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .custom-link:hover {
    color: var(--accent);
  }
  
 
  .mb-0 {
    margin-bottom: 0;
  }
  
  .mb-1 {
    margin-bottom: 0.25rem;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .mb-3 {
    margin-bottom: 1rem;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  
  .mb-5 {
    margin-bottom: 3rem;
  }
  
  .mt-0 {
    margin-top: 0;
  }
  
  .mt-3 {
    margin-top: 1rem;
  }
  
  .mt-5 {
    margin-top: 3rem;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .p-4 {
    padding: 1.5rem;
  }
  
  /* Border utilities */
  .border-top {
    border-top: 1px solid;
  }
  
  .border-secondary {
    border-color: var(--secondary);
  }
  
  .border-opacity-25 {
    border-opacity: 0.25;
  }
  
  .rounded-pill {
    border-radius: 9999px;
  }
  
  /* Button utilities */
  .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
  }
  
  .btn-custom-primary {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 112, 243, 0.4);
    color: var(--light);
  }