
.unlock-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 400px;
    min-height: 400px;
    
  }
  
  .unlock-card-no-overlap {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 400px;
    min-height: 400px;
  }
  
  .unlock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(151, 242, 199, 0.3),
      0 0 50px rgba(214, 181, 255, 0.2);
  }
  
  .unlock-card-no-overlap:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(151, 242, 199, 0.3),
      0 0 50px rgba(214, 181, 255, 0.2);
  }
  
  /* Complete Blur Overlay */
  .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background-color: rgba(14, 27, 68, 0.95);
    transition: all 0.6s ease;
    z-index: 5;
  }
  
  .content-visible .content-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: transparent;
    pointer-events: none;
  }
  

  .card-content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 2rem;
    height: 100%;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
  }
  
  .content-visible .card-content {
    opacity: 1;
    pointer-events: auto;
  }
  
  
  .unlock-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    z-index: 4;
    border-radius: 16px;
    opacity: 0.7;
    transition: opacity 0.6s ease;
  }
  
  .content-visible.unlock-card::before {
    opacity: 0;
  }
  

  .unlock-icon {
    pointer-events: auto !important;
  }
  
  .content-visible .card-content *,
  .content-visible .tool-link {
    pointer-events: auto !important;
  }
  

  .access-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .access-badge.free {
    background: #00c853;
  }
  
  .access-badge.restricted {
    background: #f5be41;
  }
  
  .coming-soon-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    display: inline-block;
    z-index: 100;
  }
  

  .tool-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
    position: relative;
    z-index: 35;
  }
  
  .tool-link.lavender {
    background: var(--lavender);
  }
  
  .tool-link.lavender:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(138, 92, 245, 0.5);
  }
  

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }
  
  .linkedin-special {
    position: relative;
    background: rgba(10, 102, 194, 0.2);
    border-color: rgba(10, 102, 194, 0.5);
  }
  
  .linkedin-special:after {
    content: "Follow for updates";
    position: absolute;
    white-space: nowrap;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background: rgba(10, 102, 194, 0.9);
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .linkedin-special:hover:after {
    opacity: 1;
  }
  

  .contact-card {
    max-width: 600px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #f5d547 0%, #f5be41 50%, #d4af37 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
  }
  
  .card-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    width: fit-content;
    align-self: center;
  }
  
  .card-cta:hover {
    background: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .email-icon {
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
  }
  

  .unlock-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-direction: column;
    transition: opacity 0.5s ease;
  }
  
  .unlock-wrapper.coming-soon {
    justify-content: flex-start;
    top: 80px;
  }
  
  .content-visible .unlock-wrapper {
    opacity: 0;
    pointer-events: none;
  }
  
  .unlock-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    cursor: pointer;
    animation: pulse-attention 2s infinite ease-in-out;
    margin-bottom: 15px;
  }
  
  .unlock-icon.disabled {
    background: linear-gradient(145deg, #9e9e9e, #616161);
    cursor: not-allowed;
    animation: none;
  }
  
  .unlock-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 80%;
    line-height: 1.3;
    margin-top: 0;
  }
  
  .unlock-text.disabled {
    color: #9e9e9e;
  }
  
  .unlock-icon svg {
    width: 30px;
    height: 30px;
    color: white;
  }
  
 
  .access-granted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    border-radius: 16px;
  }
  

  .coming-soon-message {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 12;
    width: 80%;
  }

  .content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.content-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 112, 243, 0.1), rgba(109, 40, 217, 0.1));
    z-index: -1;
}