:root {
    --primary-color: #00ff88;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #333333;
}

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}

body {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1f1f1f 100%);
    min-height: 100vh;
    color: var(--text-primary);
}

.container {
    max-width: 720px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

header .container {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.profile-avatar {
    border-radius: 50%;
    margin-bottom: 24px;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.profile-name {
    font-size: 2.5em;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.profile-username {
    margin: 16px 0 32px;
    font-size: 1.2em;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.numbers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.numbers-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.numbers-item:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.numbers-item span {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
}

.numbers-item h4 {
    font-size: 0.7em;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-link {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding: 14px 32px;
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.profile-link:active {
    transform: translateY(-1px);
}

/* Efeito de brilho no hover */
.profile-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.profile-link:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    header .container {
        padding: 30px 20px;
    }

    .profile-avatar {
        width: 140px;
        height: 140px;
    }

    .profile-name {
        font-size: 2em;
    }

    .numbers-item {
        width: 90px;
        height: 90px;
    }

    .numbers-item span {
        font-size: 1.6em;
    }

    .numbers-item h4 {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .numbers {
        gap: 10px;
    }

    .numbers-item {
        width: 70px;
        height: 70px;
    }

    .numbers-item span {
        font-size: 1.3em;
    }

    .profile-link {
        padding: 12px 24px;
        font-size: 0.9em;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header .container {
    animation: fadeInUp 0.8s ease-out;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc6a;
}