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

body {
    font-family: 'Courier New', monospace;
    background: 
        radial-gradient(circle at 50% 40%, rgba(245, 194, 231, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(203, 166, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(245, 194, 231, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0d0d0d 0%, #151015 30%, #0d0d0d 70%, #0a0a0a 100%);
    background-attachment: fixed;
    color: #f5c2e7;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(245, 194, 231, 0.01) 100px,
            rgba(245, 194, 231, 0.01) 102px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 150px,
            rgba(203, 166, 247, 0.008) 150px,
            rgba(203, 166, 247, 0.008) 152px
        );
    animation: backgroundShift 60s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(0.5deg); }
}

.main-content {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 40px);
    text-align: center;
}

.header-section {
    margin-bottom: 25px;
    padding: 20px 0;
    text-align: center;
}

.profile-pic {
    margin-bottom: 15px;
}

.profile-pic img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #f5c2e7;
    box-shadow: 0 0 15px rgba(245, 194, 231, 0.4);
}

.header-info {
    flex: 1;
}

.username-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.username {
    font-size: 22px;
    color: #f5c2e7;
    margin-bottom: 0;
    text-shadow: 0 0 10px rgba(245, 194, 231, 0.5);
}

.pronouns {
    color: #a6adc8;
    font-size: 11px;
    font-style: italic;
    transform: translateY(-2px);
}

.description {
    margin-bottom: 15px;
    color: #cdd6f4;
    font-size: 14px;
    line-height: 1.4;
}

.links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.links a {
    color: #f5c2e7;
    text-decoration: none;
    border: 1px solid #f5c2e7;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s ease;
    background: rgba(245, 194, 231, 0.1);
}

.links a:hover {
    background: #f5c2e7;
    color: #1e1e2e;
    transform: translateY(-1px);
}

.section {
    margin-bottom: 35px;
    padding: 0;
    text-align: center;
    width: 100%;
}

.section h2 {
    color: #f5c2e7;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(245, 194, 231, 0.3);
    padding-bottom: 5px;
    animation: pulse 2s infinite;
}

.content {
    margin-left: 0;
}

.content p {
    margin-bottom: 8px;
    color: #cdd6f4;
    font-size: 14px;
    line-height: 1.4;
}

.project {
    margin-bottom: 15px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.project:hover {
    transform: none;
}

.project h3 {
    color: #f5c2e7;
    margin-bottom: 6px;
    font-size: 16px;
}

.project p {
    margin-bottom: 8px;
    color: #a6adc8;
    font-size: 14px;
}

.project .link {
    color: #cba6f7;
    text-decoration: none;
    font-size: 12px;
    padding: 3px 6px;
    border: 1px solid #cba6f7;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: inline-block;
}

.project a {
    color: #cba6f7;
}

.project a:hover {
    background: #cba6f7;
    color: #1e1e2e;
}

.music-widget {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.loading {
    color: #a6adc8;
    font-style: italic;
    padding: 0;
    font-size: 14px;
    text-align: left;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-align: left;
}

.track-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    border: 1px solid rgba(245, 194, 231, 0.4);
    object-fit: cover;
}

.track-details h4 {
    color: #f5c2e7;
    margin-bottom: 3px;
    font-size: 15px;
}

.track-details h4 a {
    color: #f5c2e7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.track-details h4 a:hover {
    color: #cba6f7;
    text-decoration: underline;
}

.track-info a {
    transition: all 0.3s ease;
}

.track-info a:hover .track-image {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.track-details p {
    color: #cdd6f4;
    font-size: 13px;
    margin-bottom: 2px;
}

.now-playing {
    color: #f5c2e7 !important;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(245, 194, 231, 0.5);
    animation: pulse 2s infinite;
}

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

.buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
}

.button-88x31 {
    width: 88px;
    height: 31px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.button-88x31:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}