* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 300px at 20% 30%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 600px 400px at 80% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 200px at 40% 80%, rgba(5, 150, 105, 0.02) 0%, transparent 50%);
    animation: flowingWaves 12s ease-in-out infinite;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 700px 350px at 60% 20%, rgba(34, 197, 94, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse 900px 250px at 10% 60%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    animation: flowingWaves 15s ease-in-out infinite reverse;
    z-index: 1;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.8) 0%, rgba(34, 197, 94, 0.2) 70%, transparent 100%);
    border-radius: 50%;
    animation: floatUp 8s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 0.5s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 6.5s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 0.8s;
    animation-duration: 9.2s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
    animation-duration: 6.8s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 4s;
    animation-duration: 8.8s;
}

@keyframes floatUp {
    0% {
        bottom: -10px;
        transform: translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110vh;
        transform: translateX(100px) rotate(360deg);
        opacity: 0;
    }
}



@keyframes flowingWaves {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateY(-20px) rotate(1deg) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) rotate(-1deg) scale(1.1);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg) scale(1.03);
        opacity: 0.9;
    }
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 100;
}





.profile-section {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.profile-image {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.3));
}

.profile-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.profile-name {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
}


.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 50;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    z-index: 100;
    cursor: pointer;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-8px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 15px 40px rgba(34, 197, 94, 0.3),
        0 0 20px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(30, 30, 30, 0.95);
    border-color: rgba(34, 197, 94, 0.6);
    backdrop-filter: blur(20px);
}

.link-card:active {
    transform: translateY(-2px) scale(1.01);
}

.link-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.link-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.link-card:hover .link-image {
    transform: rotate(5deg) scale(1.1);
}

.link-content {
    flex: 1;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.link-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.link-arrow {
    margin-left: 1rem;
    transition: transform 0.3s ease;
    color: #22c55e;
}

.link-card:hover .link-arrow {
    transform: translateX(4px);
}


.dropdown-container {
    position: relative;
    width: 100%;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 1000;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
}

.dropdown-menu.show {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(4px);
}

.dropdown-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.dropdown-image {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #ffffff;
}

.dropdown-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}



@keyframes screenShake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px) translateY(-1px); }
    20% { transform: translateX(2px) translateY(1px); }
    30% { transform: translateX(-1px) translateY(-2px); }
    40% { transform: translateX(1px) translateY(2px); }
    50% { transform: translateX(-2px) translateY(1px); }
    60% { transform: translateX(2px) translateY(-1px); }
    70% { transform: translateX(-1px) translateY(2px); }
    80% { transform: translateX(1px) translateY(-2px); }
    90% { transform: translateX(-1px) translateY(1px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 600px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .profile-name {
        font-size: 1.75rem;
    }
    
    .link-card {
        padding: 1rem 1.25rem;
    }
    
    .link-title {
        font-size: 1rem;
    }
    
    .link-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .link-card {
        padding: 0.9rem 1rem;
    }
    
    .link-image {
        width: 35px;
        height: 35px;
    }
    
    .link-icon {
        margin-right: 0.75rem;
    }
}

 