:root {
    --primary-cyan: #00E5FF;
    --primary-red: #FF2A2A;
    --glass-bg: rgba(10, 20, 25, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #03141a;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    color: white;
    overflow-x: hidden;
}

/* Subtle moving overlay to darken and add texture */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(3, 20, 26, 0.3) 0%, rgba(3, 20, 26, 0.85) 100%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Initial Animation Classes */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay);
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15vh;
    /* Aumentado drasticamente para empurrar os botões para baixo (usando vh para se adaptar à tela) */
}

.profile-image-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    margin-bottom: 25px;
}


.profile-image-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.05);
    /* very subtle white border to separate from glow */
    overflow: hidden;
    background-color: #000;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.handle {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    background: linear-gradient(to right, #ffffff, #b0bec5);
    background-clip: text;
    /* Compatibilidade padrão requerida pelo lint */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.handle-line {
    width: 180px;
    height: 3px;
    background-color: var(--primary-cyan);
    border-radius: 3px;
    margin-top: 5px;
    box-shadow: 0 0 10px var(--primary-cyan);
}



/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.link-btn {
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 20px 0 10px;
}

/* Hover light sweep effect */
.btn-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.link-btn:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.link-btn:hover .btn-background {
    left: 150%;
}

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.link-btn:hover .icon-container {
    transform: scale(1.1) rotate(-8deg);
    /* nice tilt animation */
}

.broker-icon {
    background: linear-gradient(135deg, #9b51e0 0%, #4a00e0 100%);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff4c4c 0%, #b30000 100%);
}

.icon-container i {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    margin-left: 20px;
    flex-grow: 1;
}

.text-line-1 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.text-line-2 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

/* Base solid colors for text */
.broker-text {
    color: #d1c4e9;
}

.youtube-text {
    color: #ff8a80;
}

/* Vibrant colors and glow on hover */
.link-btn:hover .broker-text {
    color: #b388ff;
    text-shadow: 0 0 15px rgba(179, 136, 255, 0.8);
}

.link-btn:hover .youtube-text {
    color: #FF2A2A;
    text-shadow: 0 0 15px rgba(255, 42, 42, 0.8);
}

/* Right Arrow Indicator */
.btn-arrow {
    z-index: 2;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.link-btn:hover .btn-arrow {
    color: white;
    transform: translateX(8px);
}

/* Responsive Scaling */
@media screen and (max-width: 480px) {
    .container {
        padding: 40px 15px;
    }

    .profile-image-wrapper {
        width: 140px;
        height: 140px;
    }

    .handle {
        font-size: 22px;
    }

    .link-btn {
        height: 90px;
        padding: 0 15px 0 10px;
    }

    .icon-container {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .icon-container i {
        font-size: 28px;
    }

    .text-container {
        margin-left: 15px;
    }

    .text-line-1 {
        font-size: 11px;
    }

    .text-line-2 {
        font-size: 15px;
    }

    .btn-arrow {
        font-size: 16px;
    }
}