.percentage {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #151515;
    --bg-card: #1a1a1a;
    --accent: #00ff88;
    --accent-dim: #00cc6d;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border: #2a2a2a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1a2e 100%);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    text-align: center;
    padding: 3rem 0;
    animation: fadeInDown 0.8s ease-out;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--accent);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1s ease-out;
}

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

.name {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: fadeInUp 1s ease-out;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.skills-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-icon-img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.skill-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.skill-card.learning {
    border: 1px solid rgba(255, 200, 0, 0.3);
}

.percentage {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500, #ff6b00);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.badge.gmod {
    background: linear-gradient(135deg, #00a8ff, #0066cc);
}

.social-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.github-stats-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.github-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.github-stat-img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.github-stat-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.github-stat-img:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.social-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.social-card.github:hover {
    border-color: #6e5494;
    box-shadow: 0 5px 20px rgba(110, 84, 148, 0.3);
}

.social-card.tiktok:hover {
    border-color: #ff0050;
    box-shadow: 0 5px 20px rgba(255, 0, 80, 0.3);
}

.social-card.discord {
    cursor: default;
}

.social-card.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
}

.social-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.social-info {
    display: flex;
    flex-direction: column;
}

.social-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-username {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 2rem;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .name {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .github-images {
        grid-template-columns: 1fr;
    }

    .github-stat-img:nth-child(3) {
        grid-column: 1;
    }
}