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

:root {
    --bg-primary: #000000;
    --bg-card: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #1a1a1a;
    --accent-color: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection only on specific elements */
.tagline, .link-content h3, .link-content p {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Banner Section */
.banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: subtleZoom 20s ease-in-out infinite alternate;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.share-btn {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.share-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1) rotate(5deg);
}

.share-btn:active {
    transform: scale(0.95) rotate(0deg);
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px 40px;
    position: relative;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    margin-top: -60px;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

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

.avatar {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-primary);
    background: var(--bg-primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.avatar img:hover {
    transform: scale(1.05);
}

.name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.verified-badge {
    width: 18px;
    height: 18px;
    margin-left: 2px;
    vertical-align: middle;
    display: inline-block;
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.tagline {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-icon::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.social-icon:hover::after {
    width: 100%;
}

.social-icon i {
    font-size: 16px;
}

.social-icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

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

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

.link-card:hover {
    border-color: #333333;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.link-arrow {
    margin-left: auto;
    color: var(--text-secondary);
    font-size: 16px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translate(4px, -4px);
}

.link-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover .link-icon {
    transform: scale(1.1) rotate(5deg);
}

.link-icon.discord {
    background: #5865F2;
}

.link-icon.spotify {
    background: #1DB954;
}

.link-icon i {
    font-size: 24px;
}

.icon-text {
    font-size: 20px;
    font-weight: 700;
}

.icon-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.4;
}

.link-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.link-btn {
    display: inline-block;
    padding: 5px 12px;
    background: transparent;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.link-card:hover .link-btn {
    border-color: var(--accent-color);
}

.link-card:hover .link-btn::before {
    left: 0;
}

.link-card:hover .link-btn {
    color: var(--bg-primary);
}

/* Newsletter Section */
.newsletter {
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
}

.newsletter iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    margin-top: 40px;
    padding: 30px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner {
        height: 120px;
    }

    .share-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        padding: 0 12px 30px;
    }

    .profile {
        margin-top: -45px;
        margin-bottom: 30px;
    }

    .avatar img {
        width: 90px;
        height: 90px;
        border-width: 4px;
    }

    .name {
        font-size: 20px;
    }

    .tagline {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .social-icons {
        gap: 16px;
        margin-top: 12px;
    }

    .social-icon {
        font-size: 12px;
    }

    .social-icon i {
        font-size: 14px;
    }

    .links {
        gap: 10px;
    }

    .link-card {
        padding: 14px 12px;
        gap: 12px;
        border-radius: 8px;
    }

    .link-icon {
        width: 44px;
        height: 44px;
    }

    .link-content h3 {
        font-size: 14px;
    }

    .link-content p {
        font-size: 12px;
        margin: 0;
    }

    .link-btn {
        display: none;
    }

    .link-arrow {
        font-size: 14px;
    }

    .footer {
        margin-top: 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 100px;
    }

    .avatar img {
        width: 80px;
        height: 80px;
    }

    .profile {
        margin-top: -35px;
    }

    .name {
        font-size: 18px;
    }

    .verified {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .tagline {
        font-size: 13px;
    }

    .social-icons {
        gap: 14px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
    }

    .link-content h3 {
        font-size: 13px;
    }
}
