:root {
    /* Tag colors */
    --primary: #fc753b;
    --background: #f2f0e5;
    --accent: #ff4d00;
    --text: #1a1a1a;
    --text-2: #555;
    --hover: #ff4d00;
    --buttons: #ffffff;
    --share-button: #000000;
    --glass: rgba(255, 255, 255, 0.691);
    /* other */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --glow-size: 250px;
    --glow-strength: 50%;
    --cursor-size: 20px;
  }
    /* Dark Mode */
    @media (prefers-color-scheme: dark) {
      :root{
          --primary: #a33a10ff;
          --background: #201911;
          --accent: #ff0000;
          --text: #f5f5f5;
          --text-2: #b0b0b0;
          --hover: #8a4223;
          --buttons: #8d8d8d;
          --share-button: #0c0c0c;
          --glass: rgba(255, 255, 255, 0.21)
      } 
    }
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(
      45deg,
      var(--background) 0%,
      color-mix(in srgb, var(--background) 97%, var(--accent)) 45%,
      color-mix(in srgb, var(--background) 95%, var(--accent)) 50%,
      color-mix(in srgb, var(--background) 97%, var(--accent)) 55%,
      var(--background) 100%
  );
  min-height: 100vh;
  position: relative;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    cursor: none;
  }
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 0%,
        color-mix(in srgb, var(--accent) 15%, transparent) 0%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
}
body > * {
    position: relative;
    z-index: 1;
}
  .banner-img {
    width: 100%;
    max-width: 600px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    transition: transform 0.3s;
  }
  .banner-img:hover {
    transform: scale(1.005);
  }
  .profile {
    margin: 25px 0 0px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profile-img {
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--text);
    animation: zoomIn 1s ease forwards;
    transition: all 0.3s ease;
  }
  .profile-img:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--accent);
  }
  h1 {
    font-size: 24px;
    margin: 10px 0 5px;
  }
  h3 {
    font-size: 18px;
    margin: 5px 0;
    text-align: center;
  }
  p.job {
    font-size: 12px;
    color: var(--text-2);
    margin: 2px 0;
  }
  .about-me {
    background: color-mix(in srgb, var(--background) 75%, transparent);
    border-radius: 12px;
    padding: 16px;
    padding-bottom: 27px;
    margin: 1px 0 30px;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .about-me h6 {
    color: var(--text-2);
    font-size: 14px;
    margin: 0 1px 8px 0;
    font-weight: 200;
    letter-spacing: -0.2px;
    text-align:start;
  }
  
  .about-me .desc {
    color: var(--text);
    font-size: 14px;
    font-weight: 200;
    line-height: 1.5;
    margin: 0 7px 1px 0;
    text-align: start;
    letter-spacing: -0.2px;
  }
  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
    padding: 0 4px;
    flex-shrink: 0;
  }
  .tags-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
  }
  
  .tags-scroll {
    display: flex;
    width: fit-content;
    animation: scroll 15s linear infinite;
  }
  
  .tags-scroll:hover {
    animation-play-state: paused;
  }
  
  .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--tag-color);
    background-color: color-mix(in srgb, var(--tag-color) 10%, transparent);
    transition: all 0.3s ease;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--tag-color);
    margin-right: 6px;
    flex-shrink: 0;
  }
  .tag:hover {
    background-color: color-mix(in srgb, var(--tag-color) 20%, transparent);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  p.desc {
    font-size: 14px;
    color: var(--text-2);
  }
  .top-icons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
  }
  .top-icons svg {
    fill: var(--text);
    width: 35px;
    margin-right: 1px;
    transition: all 0.3s ease;
  }
  .top-icons svg:hover {
    transform: scale(1.06);
    color: var(--primary);
  }
  .links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 30px 0;
  }
  .links a {
    text-decoration: none;
    background: var(--glass);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: var(--text);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid transparent;
    background-clip: padding-box;
  }
  .links a:hover {
    background: color-mix(in srgb, var(--glass) 85%, var(--primary));
    transform: translateY(-1px);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
  }
  .links a::before {
    content: '';
    position: absolute;
    inset: -100px;
    background: radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        color-mix(in srgb, var(--primary) var(--glow-strength), transparent),
        transparent var(--glow-size)
    );
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    pointer-events: none;
}

.links a:hover::before {
    opacity: 1;
}
  .links a svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    fill: var(--text);
    transition: all 0.3s ease;
  }
    .coming-soon-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .coming-soon-toast.show {
    opacity: 1;
  }

    /* FAQ Styles */
.faq {
    width: 100%;
    max-width: 400px;
    margin: 40px 0;
}

.faq h2 {
    color: var(--text);
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.faq-item {
    background: var(--glass);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 10px;
    padding: 20px 50px 20px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: -100px;
    background: radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        color-mix(in srgb, var(--primary) var(--glow-strength), transparent),
        transparent var(--glow-size)
    );
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    pointer-events: none;
}

.faq-item::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform-origin: center;
}

.faq-item:hover {
    background: color-mix(in srgb, var(--glass) 85%, var(--primary));
    transform: translateY(-1px);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    margin-top: 0;
    font-weight: 400;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    transform-origin: top;
    transform: scaleY(0);
}

.faq-answer.active {
    height: auto;
    opacity: 1;
    margin-top: 12px;
    transform: scaleY(1);
    animation: bounceIn 0.5s ease forwards;
}

.faq-answer.closing {
    transform: scaleY(0);
    opacity: 0;
    height: 0;
    margin-top: 0;
    animation: bounceOut 0.3s ease forwards;
}

@keyframes bounceOut {
    0% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.95); }
    100% { transform: scaleY(0); opacity: 0; }
}
  /* Botón de compartir */
  .share-button {
    position: fixed;
    top: 29px;
    right: 29px;
    background: var(--share-button);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .share-button:hover {
    opacity: 0.5;
   transform: scale(1.05);
  }

  .share-button-img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
  }
  .share-button-img:hover {
    transform: scale(1.01);
  }
  /* Pop-up de compartir */
  .share-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.084);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .share-popup-content {
    background: color-mix(in srgb, var(--glass) 90%, transparent);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.18);
  }

  .share-popup-content h2 {
    color: black;
    margin-bottom: 20px;
  }

  .share-popup-content a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 12px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .share-popup-content a img {
    width: 24px;
    height: 24px;
    border-radius: 0;
    transition: all 0.2s ease;
  }

  .share-popup-content a:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .share-popup-content a:hover img {
    transform: scale(1.1);
  }

  .share-popup-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 16px;
    margin: 24px 0;
  }

  .close-popup {
    background: var(--share-button);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    margin-top: 20px;
transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }

  .close-popup:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

     footer {
    margin-top: 40px;
    margin-bottom: 100px;
    text-align: center;
    font-size: 14px;
    padding: 12px 24px;
    background: color-mix(in srgb, var(--glass) 85%, var(--primary));
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

footer:hover {
    border-color: #0353f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

footer a {
    color: #4f84ef;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #0353f2;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

footer a:hover::after {
    transform: scaleX(1);
}
footer img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    transition: transform 0.3s ease;
}
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes bounceIn {
    0% { transform: translateY(-10px); opacity: 0; }
    50% { transform: translateY(5px); }
    100% { transform: translateY(0); opacity: 1; }
}

.cursor {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: color-mix(in srgb, var(--primary) 50%, transparent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    backdrop-filter: invert(1);
    mix-blend-mode: difference;
}

/* Show default cursor on interactive elements */
a, button, [role="button"], input, select, textarea {
    cursor: none;
}

/* Scale effect on hover */
.cursor.hover {
    transform: scale(1.5);
}

/* Add this to your styles.css */
@media (hover: none) and (pointer: coarse) {
    /* Mobile devices */
    .cursor {
        display: none !important;
    }
    
    body {
        cursor: auto !important;
    }
}

@media (pointer: fine) {
    /* Desktop devices */
    body, 
    a, 
    button, 
    [role="button"], 
    .faq-item {
        cursor: none;
    }
}

/* Add specific override for interactive elements */
@media (hover: hover) {
    a:hover,
    button:hover,
    [role="button"]:hover,
    .faq-item:hover {
        cursor: none;
    }
}