* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg-2: #101010;
    --bg-3: #161616;
    --card: #141414;
    --card-hover: #1a1a1a;
    --border: #262626;
    --border-light: #333333;
    --text: #ffffff;
    --text-muted: #8a8a8a;
    --text-dim: #5a5a5a;
    --accent: #ffffff;
    --accent-dim: #666666;
    --discord: #5865F2;
    --tiktok: #FE2C55;
    --guns: #ff4444;
    --green: #23a55a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}


#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        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: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    animation: floatGlow 20s ease-in-out infinite;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    top: -200px;
    left: -200px;
}

.bg-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1), transparent 70%);
    bottom: -300px;
    right: -200px;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}


.main-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 80px;
}


.profile-card {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.9), rgba(16, 16, 16, 0.9));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px 45px 45px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.profile-card:hover {
    border-color: var(--border-light);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


.avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent 30%);
    animation: spin 4s linear infinite;
    opacity: 0.6;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-light);
    transition: all 0.4s;
    box-shadow: 
        0 0 0 4px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.avatar:hover {
    transform: scale(1.05);
    border-color: var(--text-muted);
    box-shadow: 
        0 0 0 4px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 255, 255, 0.2);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.status-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--green);
    border: 3px solid #141414;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(35, 165, 90, 0.8);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(35, 165, 90, 0.6); }
    50% { box-shadow: 0 0 25px rgba(35, 165, 90, 1); }
}


.username {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.verified {
    filter: drop-shadow(0 0 8px rgba(29, 161, 242, 0.6));
    animation: verifyPulse 2s ease-in-out infinite;
}

@keyframes verifyPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(29, 161, 242, 0.4)); }
    50% { filter: drop-shadow(0 0 15px rgba(29, 161, 242, 0.8)); }
}


.user-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-color: var(--border-light);
    transform: translateY(-2px);
}


.bio {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 30px;
    padding: 0 10px;
}

.bio strong {
    color: var(--text);
    font-weight: 700;
}


.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 25px;
    padding: 18px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}


.socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transition: left 0.6s;
}

.social-btn:hover::before { left: 100%; }

.social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-light);
}

.social-btn.discord:hover {
    border-color: var(--discord);
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.25);
}

.social-btn.tiktok:hover {
    border-color: var(--tiktok);
    box-shadow: 0 10px 40px rgba(254, 44, 85, 0.25);
}

.social-btn.github:hover {
    border-color: var(--text);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
}

.social-btn.guns:hover {
    border-color: var(--guns);
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.25);
}


.discord-id {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.discord-id:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.discord-id.copied {
    border-color: var(--green);
    background: rgba(35, 165, 90, 0.08);
}

.id-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.id-value {
    font-size: 15px;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    transition: color 0.3s;
}

.discord-id.copied .id-value {
    color: var(--green);
}


.section {
    max-width: 720px;
    width: 100%;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.section-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dim);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.card {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.9), rgba(16, 16, 16, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: var(--text);
    display: block;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover::before { opacity: 1; }

.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(22, 22, 22, 0.95));
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.card-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 18px;
    color: var(--text);
    transition: all 0.4s;
}

.card:hover .card-icon-wrap {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-light);
    transform: scale(1.05);
}

.card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.card-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.card-status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
}

.card-status.active {
    color: var(--green);
    background: rgba(35, 165, 90, 0.1);
    border: 1px solid rgba(35, 165, 90, 0.3);
}

.card-status.upcoming-tag {
    color: #f5a623;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.card.upcoming {
    opacity: 0.85;
}


.skills-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.9), rgba(16, 16, 16, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
    transition: all 0.3s;
}

.skill:hover {
    border-color: var(--border-light);
    transform: translateX(5px);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.skill-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.skill-percent {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #666666);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}


.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.objective {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.9), rgba(16, 16, 16, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.objective:hover {
    border-color: var(--border-light);
    transform: translateX(5px);
    background: linear-gradient(145deg, rgba(28, 28, 28, 0.95), rgba(20, 20, 20, 0.95));
}

.objective-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.3s;
}

.objective.done .objective-icon {
    background: rgba(35, 165, 90, 0.1);
    border-color: rgba(35, 165, 90, 0.3);
    color: var(--green);
}

.objective:hover .objective-icon {
    transform: scale(1.05);
}

.objective-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.objective-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.objective-status {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.objective.done .objective-status {
    color: var(--green);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 0 20px;
    margin-top: 20px;
    max-width: 720px;
    width: 100%;
}

.footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin-bottom: 25px;
}

.footer p {
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 500;
}


@media (max-width: 600px) {
    .main-container {
        padding: 40px 15px;
        gap: 60px;
    }
    .profile-card {
        padding: 45px 28px 35px;
        border-radius: 22px;
    }
    .username { font-size: 30px; }
    .avatar { width: 100px; height: 100px; }
    .avatar-ring { width: 130px; height: 130px; }
    .socials { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 22px; }
    .section-header { gap: 12px; }
}