* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.container {
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 15px;
}

.profile-picture {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.status-dot {
    display: none;
}

.status-dot-inline {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ed4245;
    border-radius: 50%;
    vertical-align: middle;
}

.status-dnd {
    background-color: #ed4245;
}

.username {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    color: #ffffff;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 255, 0.2);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.8),
            0 0 10px rgba(255, 255, 255, 0.6),
            0 0 15px rgba(255, 255, 255, 0.4),
            0 0 20px rgba(255, 255, 255, 0.2);
    }

    50% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 1),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6),
            0 0 40px rgba(255, 255, 255, 0.4);
    }
}

@keyframes rainbowSlide {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.sparkle {
    position: absolute;
    color: #fff;
    animation: sparkleFloat 2s ease-in-out infinite;
    opacity: 0.8;
}

.sparkle-1 {
    top: -8px;
    left: -15px;
    font-size: 12px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: -12px;
    left: 30px;
    font-size: 10px;
    animation-delay: 0.5s;
}

.sparkle-3 {
    top: -8px;
    right: 20px;
    font-size: 12px;
    animation-delay: 1s;
}

.sparkle-4 {
    top: -10px;
    right: -10px;
    font-size: 10px;
    animation-delay: 1.5s;
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-3px) scale(1.2);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.status-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #b9bbbe;
    font-size: 12px;
}

.status-icons {
    display: flex;
    gap: 5px;
}

.icon {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* Discord Card */
.discord-card {
    background-color: #2b2d31;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.discord-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.discord-logo {
    width: 40px;
    height: 40px;
    background-color: #4752c4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-logo svg {
    width: 24px;
    height: 24px;
}

.discord-text h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.online-status {
    color: #3ba55c;
    font-size: 12px;
    margin-left: 3px;
}

.discord-username {
    color: #b9bbbe;
    font-size: 12px;
}

.message-btn {
    background-color: #4752c4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.2s;
}

.message-btn:hover {
    background-color: #346bebff;
}

/* Spotify Card */
.spotify-card {
    background-color: #2b2d31;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
}

.spotify-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #b9bbbe;
    font-size: 11px;
}

.spotify-icon {
    width: 16px;
    height: 16px;
}

.spotify-content {
    display: flex;
    gap: 10px;
}

.album-art {
    flex-shrink: 0;
}

.album-art img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.song-info {
    flex: 1;
}

.song-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.artist-name {
    color: #b9bbbe;
    font-size: 12px;
    margin-bottom: 8px;
}

.playback-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pause-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background-color: #4e5058;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #1db954;
    border-radius: 2px;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #b9bbbe;
}

/* Languages Section */
.languages-section {
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #72767d;
    margin-bottom: 12px;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.language-badge {
    background-color: #2b2d31;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: transform 0.2s, background-color 0.2s;
}

.language-badge:hover {
    transform: translateY(-2px);
    background-color: #35373c;
}

.lang-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border-radius: 3px;
    flex-shrink: 0;
}

.lang-logo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Language-specific colors */
.js .lang-icon {
    background-color: #f7df1e;
    color: #000;
}

.ts .lang-icon {
    background-color: #3178c6;
    color: #fff;
}

.python .lang-logo {
    color: #3776ab;
}

.rust .lang-logo {
    color: #06b6d4;
}

.go .lang-logo {
    color: #00add8;
}

.cpp .lang-logo {
    color: #00599c;
}

.java .lang-logo {
    color: #007396;
}

.csharp .lang-logo {
    color: #239120;
}

.php .lang-logo {
    color: #777bb4;
}

.swift .lang-logo {
    color: #fa7343;
}

.mongodb .lang-logo {
    color: #13aa52;
}

.discord .lang-logo {
    color: #5865f2;
}

.kotlin .lang-logo {
    color: #7f52ff;
}

.ruby .lang-logo {
    color: #cc342d;
}

.c .lang-icon {
    background-color: #a8b9cc;
    color: #283593;
}

.dart .lang-logo {
    color: #0175c2;
}

.scala .lang-icon {
    background-color: #dc322f;
    color: #fff;
}

.lua .lang-logo {
    color: #000080;
}

.tailwind .lang-logo {
    color: #06b6d4;
}

.nodejs .lang-logo {
    color: #339933;
}

.x-platform .lang-logo {
    color: #ffffff;
}

.instagram .lang-logo {
    color: #E1306C;
}

/* Discord Add Button */
.discord-add-btn {
    width: 100%;
    background-color: #4752c4;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    transition: background-color 0.2s;
}

.discord-add-btn:hover {
    background-color: #4752c4;
}

.discord-add-btn svg {
    width: 18px;
    height: 18px;
}

/* Projects Button */
.projects-btn {
    width: 100%;
    background-color: #5865f2;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    transition: background-color 0.2s;
}

.projects-btn:hover {
    background-color: #4752c4;
}

.projects-btn svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    text-align: center;
    color: #72767d;
    font-size: 10px;
    padding: 12px 0;
}

/* Responsive */
@media (max-width: 450px) {
    .container {
        padding: 8px;
    }

    .username {
        font-size: 20px;
    }

    .discord-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .message-btn {
        width: 100%;
    }
}