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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/full-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
}

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

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

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

.profile-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-image: url('img/monster.webp');
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}


h1 {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 16px;
    color: #a0a0a0;
    letter-spacing: 2px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.link-button:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-button.tech:hover {
    border-color: #ff006e;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.link-button.travel:hover {
    border-color: #8338ec;
    box-shadow: 0 10px 30px rgba(131, 56, 236, 0.3);
}

.link-button.company:hover {
    border-color: #3a86ff;
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
}

.link-button.nft:hover {
    border-color: #fb5607;
    box-shadow: 0 10px 30px rgba(251, 86, 7, 0.3);
}

.icon {
    margin-right: 20px;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
}

.icon svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
}

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

.link-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.link-content p {
    font-size: 14px;
    color: #a0a0a0;
}

footer {
    margin-top: 50px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.social-icon svg {
    stroke: #a0a0a0;
    transition: stroke 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon:hover svg {
    stroke: #ffffff;
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .link-button {
        padding: 15px;
    }
    
    .icon {
        font-size: 28px;
        margin-right: 15px;
    }
    
    .link-content h3 {
        font-size: 16px;
    }
}