body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(ellipse at 50% 0%, #23272f 0%, #101010 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

html {
    height: 100%;
    box-sizing: border-box;
}

.card {
    background-color: rgba(24, 24, 28, 0.95);
    border-radius: 16px;
    padding: 32px 24px 24px 24px;
    width: 100%;
    max-width: 420px;
    margin: 40px auto 32px auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    text-align: center;
    color: white;
    backdrop-filter: blur(30px);
    box-sizing: border-box;
}

.profile {
    margin-bottom: 20px;
    margin-top: 50px;
}

.avatar-glow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}
.avatar-glow::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    z-index: 0;
    background: radial-gradient(circle, #00ff88 0%, #00ff8840 60%, transparent 100%);
    filter: blur(8px);
    animation: green-glow 2.5s ease-in-out infinite alternate;
}
@keyframes green-glow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.12); }
}
.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #23272f;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.header-name {
    margin: 10px 0 0 0;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #fff;
    text-shadow: 0 2px 8px #00ff8880;
}

.subtitle {
    font-size: 1.1rem;
    color: #00ff88;
    font-weight: 500;
    margin-bottom: 18px;
    margin-top: 8px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #00ff8840;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 420px;
}
@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(32, 35, 45, 0.92);
    border-radius: 14px;
    padding: 22px 0 12px 0;
    color: #fff;
    font-size: 1.08em;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    cursor: pointer;
    border: none;
}
.contact-btn .icon {
    margin: 0 0 8px 0;
    font-size: 2em;
}
.contact-btn:hover {
    box-shadow: 0 4px 28px rgba(0,0,0,0.13);
    transform: scale(1.06);
    background: rgba(40, 44, 60, 1);
}
.contact-btn span {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1em;
}

.contact-link {
    width: 100%;
    max-width: 400px;
    text-decoration: none;
}

.contact-link {
    text-decoration: none; /* Remove underline from links */
}

.contact-item {
    border-radius: 14px;
    padding: 18px 28px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    background: rgba(32, 35, 45, 0.92);
    cursor: pointer;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    transform: scale(1);
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.contact-item:hover {
    box-shadow: 0 4px 28px rgba(0,0,0,0.13);
    transform: scale(1.04);
    background: rgba(40, 44, 60, 1);
}

.contact-item:hover {
    box-shadow: 20px 20px 30px rgba(99, 96, 96, 0.2);
    transform: scale(1.04); /* Scale up when hovered */
}

.icon {
    font-size: 1.6em;
    margin-right: 18px;
    vertical-align: middle;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    transition: color 0.2s;
}

.contact-item:hover .icon.fa-youtube { color: #FF0000; }
.contact-item:hover .icon.fa-instagram { color: #E4405F; }
.contact-item:hover .icon.fa-facebook { color: #1877f3; }
.contact-item:hover .icon.fa-pinterest { color: #E60023; }
.contact-item:hover .icon.fa-etsy { color: #f1641e; }
.contact-item:hover .icon.fa-envelope { color: #fbbc05; }
.contact-item:hover .icon.fa-globe { color: #00bfae; }
.contact-item:hover .icon.fa-layer-group { color: #7b42f6; }
.contact-item:hover .icon.fa-music { color: #f59e42; }

#icon {
    margin-left: 20px; /* Adjust this value as needed */
}

.contact-item span {
    flex: 0.95; /* Make the text span take up remaining space */
    text-align: center; /* Center the text within the span */
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Media query for larger screens */
@media (min-width: 600px) {
    .card {
        padding: 40px 48px 36px 48px;
    }
    .contact-item {
        width: 66%;
        margin-left: auto;
        margin-right: auto;
    }
    .profile-image {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 400px) {
    .card {
        padding: 12px 2vw;
    }
    .profile-image {
        width: 72px;
        height: 72px;
    }
    .contact-item {
        padding: 12px;
    }
    .footer {
        margin-top: 32px;
        text-align: center;
        color: #00ff88;
        font-size: 1rem;
        opacity: 0.85;
        letter-spacing: 1px;
        padding-bottom: 10px;
    }
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #101010ee;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.9s cubic-bezier(.4,0,.2,1);
    opacity: 1;
}
#splash-screen .splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#splash-screen .splash-img {
    max-width: 340px;
    width: 80vw;
    max-height: 50vh;
    border-radius: 16px;
    box-shadow: 0 8px 48px #00ff8840;
    animation: splash-zoom 2.2s cubic-bezier(.4,0,.2,1);
    opacity: 0.98;
}
.splash-text {
    margin-top: 30px;
    color: #00ff88;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 12px #000, 0 0px 18px #00ff8840;
    animation: splash-text-fade 2.2s cubic-bezier(.4,0,.2,1);
}
@keyframes splash-text-fade {
    0% { opacity: 0; transform: translateY(30px); }
    30% { opacity: 1; transform: translateY(0); }
    100% { opacity: 1; }
}

@keyframes splash-zoom {
    0% { opacity: 0; transform: scale(0.8); }
    20% { opacity: 1; transform: scale(1.05); }
    70% { opacity: 1; transform: scale(1); }
    100% { opacity: 1; transform: scale(1); }
}
#splash-screen.hide {
    opacity: 0;
    pointer-events: none;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.411);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(30px);
}

.loader {
    height: 15px;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(farthest-side,#fefefe 90%,#ffffff00);
    background: 
      var(--_g) left, 
      var(--_g) right;
    background-size: 25% 100%;
    display: grid;
  }
  .loader:before,
  .loader:after {
    content: "";
    height: inherit;
    aspect-ratio: 1;
    grid-area: 1/1;
    margin: auto;
    border-radius: 50%;
    transform-origin: -100% 50%;
    background: #edeced;
    animation: l49 1s infinite linear;
  }
  .loader:after {
    transform-origin: 200% 50%;
    --s:-1;
    animation-delay: -.5s;
  }
  
  @keyframes l49 {
    58%,
    100% {transform: rotate(calc(var(--s,1)*1turn))}
  }
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    
  }
  
  .reveal.reveal-active {
    opacity: 1;
    transform: none;
  }
  
