* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

.container {
    max-width: 680px;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

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

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    margin-bottom: 24px;
    border-radius: 50%;
    border: 4px solid rgba(168, 224, 99, 0.3);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(168, 224, 99, 0.2),
                0 0 60px rgba(168, 224, 99, 0.1);
    animation: logoFloat 3s ease-in-out infinite;
}

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

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 18px;
    font-weight: 500;
    color: #a8e063;
    margin-bottom: 12px;
}

.description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 224, 99, 0.2);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 224, 99, 0.2), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    background: linear-gradient(135deg, rgba(168, 224, 99, 0.2) 0%, rgba(86, 171, 47, 0.15) 100%);
    border-color: rgba(168, 224, 99, 0.6);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(168, 224, 99, 0.3),
                0 0 20px rgba(168, 224, 99, 0.2);
}

.link-button:active {
    transform: translateY(0);
}

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #ffffff;
}

.text {
    flex: 1;
    text-align: left;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

footer {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.credit a {
    color: #a8e063;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit a:hover {
    color: #56ab2f;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .logo {
        width: 160px;
        height: 160px;
    }

    h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

    .description {
        font-size: 13px;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 15px;
    }

    .icon {
        font-size: 22px;
    }
}
