/* CSS Moderno & Responsivo - Estilo Gamer / NoPure */

:root {
    --bg-color: #0b0c10;
    --card-bg: rgba(22, 24, 34, 0.75);
    --card-hover: rgba(33, 37, 53, 0.9);
    --primary-red: #ff2a5f;
    --primary-purple: #8a2be2;
    --accent-cyan: #00f2fe;
    --text-color: #ffffff;
    --text-muted: #a0a5b5;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 42, 95, 0.4);
    --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 10px;
    position: relative;
    overflow-x: hidden;
}

/* Background Effects */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 50% 20%, rgba(138, 43, 226, 0.18), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 42, 95, 0.12), transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    z-index: -2;
}

.bg-glow {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 42, 95, 0.25), transparent 70%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 680px;
    background: rgba(15, 17, 23, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 42, 95, 0.1);
    margin-bottom: 30px;
}

/* Header & Banner */
.profile-header {
    position: relative;
    width: 100%;
}

.banner-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 17, 23, 0.1), rgba(15, 17, 23, 0.95));
}

/* Avatar */
.avatar-container {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    box-shadow: 0 0 25px rgba(255, 42, 95, 0.5);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #1a1c23;
    border: 3px solid #0f1117;
}

.status-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f1117;
    border: 1px solid #10b981;
    color: #10b981;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.status-badge i {
    font-size: 0.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Profile Content */
.profile-content {
    padding: 65px 25px 30px 25px;
}

.user-info {
    text-align: center;
    margin-bottom: 25px;
}

.user-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.verified-badge {
    color: #38bdf8;
    font-size: 1.1rem;
}

.user-tag {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.user-bio {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-top: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 42, 95, 0.3);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 4px;
    display: block;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Links Section */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.section-title i {
    color: var(--primary-red);
}

.links-section {
    margin-bottom: 30px;
}

.link-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 14px 18px;
    margin-bottom: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    background: var(--card-hover);
    border-color: var(--border-glow);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 42, 95, 0.2);
}

.link-card.highlight-card {
    border-color: rgba(255, 42, 95, 0.5);
    background: linear-gradient(90deg, rgba(255, 42, 95, 0.12), var(--card-bg));
}

.link-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.instagram-icon { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.twitch-icon { background: rgba(145, 70, 255, 0.15); color: #9146ff; }
.youtube-icon { background: rgba(255, 0, 0, 0.15); color: #ff0000; }
.discord-icon { background: rgba(88, 101, 242, 0.15); color: #5865f2; }
.tiktok-icon { background: rgba(0, 242, 254, 0.15); color: #00f2fe; }

.link-details {
    flex-grow: 1;
}

.link-title {
    display: block;
    font-weight: 700;
    font-size: 0.98rem;
}

.link-subtitle {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.arrow-icon {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.link-card:hover .arrow-icon {
    transform: translateX(4px);
    color: var(--primary-red);
}

/* Setup Section */
.setup-section {
    margin-bottom: 30px;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.setup-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 12px;
}

.setup-label {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 3px;
}

.setup-value {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* Social Pills Footer */
.social-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.pill {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pill:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.4);
}

/* Footer */
.profile-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.powered-by {
    font-size: 0.72rem;
    margin-top: 4px;
    opacity: 0.7;
}

/* Responsividade Mobile */
@media (max-width: 520px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .setup-grid {
        grid-template-columns: 1fr;
    }
    .user-name {
        font-size: 1.5rem;
    }
    .banner-container {
        height: 150px;
    }
}
:root {
    --bg-color: #0b0c10;
    --card-bg: rgba(22, 24, 34, 0.75);
    --card-hover: rgba(33, 37, 53, 0.9);
    --primary-red: #ff2a5f;
    --primary-purple: #8a2be2;
    --text-color: #ffffff;
    --text-muted: #a0a5b5;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 42, 95, 0.4);
    --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 10px;
    position: relative;
    overflow-x: hidden;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 50% 20%, rgba(138, 43, 226, 0.18), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 42, 95, 0.12), transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    z-index: -2;
}

.container {
    width: 100%;
    max-width: 680px;
    background: rgba(15, 17, 23, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 42, 95, 0.1);
    margin-bottom: 30px;
}

.profile-header { position: relative; width: 100%; }
.banner-container { width: 100%; height: 200px; position: relative; overflow: hidden; }
.banner-img { width: 100%; height: 100%; object-fit: cover; }
.banner-gradient {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 17, 23, 0.1), rgba(15, 17, 23, 0.95));
}

.avatar-container {
    position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); z-index: 10;
}
.avatar-wrapper {
    position: relative; width: 120px; height: 120px; border-radius: 50%; padding: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    box-shadow: 0 0 25px rgba(255, 42, 95, 0.5);
}
.avatar-img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    background-color: #1a1c23; border: 3px solid #0f1117;
}

.status-badge {
    position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
    background: #0f1117; border: 1px solid #10b981; color: #10b981;
    font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 20px;
    display: flex; align-items: center; gap: 5px; white-space: nowrap;
}

.profile-content { padding: 65px 25px 30px 25px; }
.user-info { text-align: center; margin-bottom: 25px; }

.user-name {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900;
    color: #ffffff; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.verified-badge { color: #38bdf8; font-size: 1.1rem; }

/* Estilo idêntico ao do Print (Brasil e Visualizações) */
.meta-badges {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    margin-top: 12px; margin-bottom: 15px;
}

.meta-pill {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px; padding: 5px 14px;
    font-size: 0.82rem; color: #cbd5e1;
}

.flag-icon { font-size: 0.95rem; }
.view-icon { color: #94a3b8; font-size: 0.85rem; }

.user-bio {
    color: var(--text-muted); font-size: 0.92rem; line-height: 1.5;
    max-width: 500px; margin: 8px auto 0 auto;
}

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 30px; }
.stat-card {
    background: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 12px 8px; text-align: center;
}
.stat-icon { font-size: 1.1rem; color: var(--primary-red); margin-bottom: 4px; display: block; }
.stat-value { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: #fff; display: block; }
.stat-label { font-size: 0.7rem; color: var(--text-muted); display: block; }

.section-title {
    font-family: var(--font-heading); font-size: 1.05rem; color: var(--text-muted);
    margin-bottom: 15px; display: flex; align-items: center; gap: 8px; text-transform: uppercase;
}
.section-title i { color: var(--primary-red); }

.link-card {
    display: flex; align-items: center; background: var(--card-bg);
    border: 1px solid var(--border-color); border-radius: 16px;
    padding: 14px 18px; margin-bottom: 12px; text-decoration: none; color: #fff;
    transition: all 0.3s ease;
}
.link-card:hover {
    background: var(--card-hover); border-color: var(--border-glow);
    transform: translateY(-2px);
}
.link-icon {
    width: 44px; height: 44px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; font-size: 1.3rem; margin-right: 15px;
}
.instagram-icon { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.twitch-icon { background: rgba(145, 70, 255, 0.15); color: #9146ff; }
.youtube-icon { background: rgba(255, 0, 0, 0.15); color: #ff0000; }
.discord-icon { background: rgba(88, 101, 242, 0.15); color: #5865f2; }

.link-details { flex-grow: 1; }
.link-title { font-weight: 700; font-size: 0.98rem; display: block; }
.link-subtitle { font-size: 0.78rem; color: var(--text-muted); display: block; }
.arrow-icon { font-size: 0.85rem; color: var(--text-muted); }

.social-pills { display: flex; justify-content: center; gap: 12px; margin-top: 25px; }
.pill {
    width: 42px; height: 42px; border-radius: 50%; background: var(--card-bg);
    border: 1px solid var(--border-color); color: #fff; display: flex;
    align-items: center; justify-content: center; text-decoration: none;
}

.profile-footer { text-align: center; padding: 20px; border-top: 1px solid var(--border-color); font-size: 0.8rem; color: var(--text-muted); }