body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb, #ffdde1);
    background-size: 300% 300%;
    animation: gradientShift 8s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fall {
    0% {
        transform: translate(-50%, -50%) translateY(-100px); 
    }
    100% {
        transform: translate(-50%, -50%) translateY(calc(100vh + 50px)); 
    }
}

.emoji {
    position: absolute;
    font-size: 30px;
    animation: fall 3s forwards;
    transition: transform 0.1s ease;
    z-index: -1;
}


.strtlogo {
    width: 70%;
    opacity: 0;
    transform: scale(0.8);
    z-index: 100000;
}



@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0px); }
}

.caption {
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 1.5s ease-out 0.5s forwards, pulse 2s infinite alternate;
    z-index: 100000;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0px); }
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.visit {
    text-decoration: none;
    background: #ff3b5c;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    transition: box-shadow 0.3s ease, transform 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 59, 92, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.visit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s ease;
}

.visit:hover::before {
    left: 100%;
}

.visit:hover {
    transform: rotate(-3deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(209, 41, 73, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.connect {
    flex: 2;
    display: flex;
    flex-wrap: wrap; 
    gap: 15px; 
    border: none; 
    justify-content: center;
    align-items: center;
    padding: 1%; 
    animation: bounce 3s infinite reverse;
    margin: 10px;
}

.lnk {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px; 
    height: 50px;
    border-radius: 50%; 
    background-color: #e9fce2; 
    color: black; 
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lnk:hover {
    background-color: black; 
    color: white; 
}
.lnk:hover svg {
    scale: 1.5;
    fill: white; 
    transition: fill 0.3s ease; 
    transition: scale 0.3s ease; 
    background-color: #000;
    border-radius: 50%;
    padding: 2px;
}


.connect {
    opacity: 0; 
    transform: translateX(-100%); 
    transition: transform 0.8s ease-out, opacity 0.8s ease-out; 
}

.lnk {
    opacity: 0; 
    transform: translateY(30px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.visitcon {
    opacity: 0; 
    transform: translateY(100px); 
    transition: transform 0.8s ease-out, opacity 0.8s ease-out; 
}

.visitcon.visible {
    opacity: 1; 
    transform: translateY(0); 
}

.strtlogo {
    opacity: 0; 
    transform: translateY(-100px); 
    transition: transform 0.8s ease-out, opacity 0.8s ease-out; 
}

.strtlogo.visible {
    opacity: 1; 
    transform: translateY(0); 
}
.fallen {
    position: absolute;
    animation: none;
    transform: translateX(-50%); 
}