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

:root {
    --gothic-black: #0a0a0a;
    --deep-purple: #1a0a1a;
    --blood-red: #8b0000;
    --silver: #c0c0c0;
    --gold: #d4af37;
    --midnight-blue: #191970;
    --cat-green: #2d5016;
    --miraculous-pink: #ff1493;
    --spotify-green: #1db954;
}

body {
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, var(--gothic-black) 0%, var(--deep-purple) 50%, var(--midnight-blue) 100%);
    color: var(--silver);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Header Styles */
.gothic-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.ornate-border {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--silver), var(--gold), transparent);
    margin: 1rem 0;
    position: relative;
}

.ornate-border::before,
.ornate-border::after {
    content: '❈';
    position: absolute;
    top: -8px;
    color: var(--gold);
    font-size: 1.2rem;
}

.ornate-border::before {
    left: 0;
}

.ornate-border::after {
    right: 0;
}

.username {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--gold), var(--silver), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    margin: 1rem 0;
    letter-spacing: 2px;
}

.subtitle {
    margin: 1rem 0;
}

.mystical-text {
    font-style: italic;
    color: var(--silver);
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
    letter-spacing: 1px;
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.profile-avatar {
    position: relative;
    margin-bottom: 2rem;
}

.avatar-frame {
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, var(--deep-purple), var(--gothic-black));
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cat-silhouette {
    font-size: 3rem;
    color: var(--silver);
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.7);
    animation: mysticalGlow 3s ease-in-out infinite alternate;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    filter: sepia(20%) saturate(1.2) brightness(0.9) contrast(1.1);
}

.profile-image:hover {
    filter: sepia(30%) saturate(1.4) brightness(1) contrast(1.2);
    transform: scale(1.05);
}

.miraculous-sparkles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: var(--miraculous-pink);
    font-size: 1.2rem;
    animation: sparkleFloat 4s ease-in-out infinite;
    text-shadow: 0 0 10px var(--miraculous-pink);
}

.sparkle:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.sparkle:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation-delay: 2s;
}

.sparkle:nth-child(4) {
    top: 50%;
    left: 0;
    animation-delay: 3s;
}

.mystical-quote {
    text-align: center;
    font-style: italic;
    color: var(--silver);
    padding: 1rem;
    border: 1px solid var(--gold);
    border-radius: 10px;
    background: rgba(26, 10, 26, 0.7);
    backdrop-filter: blur(5px);
    position: relative;
    max-width: 400px;
}

.quote-ornament {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Music Section */
.music-section {
    margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.section-title i {
    margin: 0 1rem;
    animation: musicPulse 2s ease-in-out infinite;
}

.music-content {
    display: grid;
    gap: 2rem;
}

.favorite-band {
    text-align: center;
    margin-bottom: 2rem;
}

.band-frame {
    background: linear-gradient(145deg, rgba(26, 10, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 2px solid var(--silver);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(5px);
}

.band-frame h3 {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: var(--silver);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.band-quote {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.music-notes {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.music-notes span {
    font-size: 1.5rem;
    color: var(--miraculous-pink);
    animation: noteFloat 3s ease-in-out infinite;
    text-shadow: 0 0 10px var(--miraculous-pink);
}

.music-notes span:nth-child(2) {
    animation-delay: 1s;
}

.music-notes span:nth-child(3) {
    animation-delay: 2s;
}

/* Spotify Widget */
.spotify-widget {
    margin-top: 2rem;
}

.spotify-frame {
    background: linear-gradient(145deg, rgba(29, 185, 84, 0.1), rgba(10, 10, 10, 0.9));
    border: 2px solid var(--spotify-green);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

.spotify-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--spotify-green);
    font-weight: 600;
    gap: 0.5rem;
}

.spotify-header i {
    font-size: 1.5rem;
}

/* Aesthetic Section */
.aesthetic-section {
    margin-bottom: 3rem;
}

.gothic-elements {
    text-align: center;
    position: relative;
}

.element-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.gothic-symbol {
    font-size: 2rem;
    animation: symbolPulse 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gothic-symbol:hover {
    transform: scale(1.2);
}

.gothic-symbol:nth-child(odd) {
    animation-delay: 2s;
}

.ladybug-subtle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.ladybug-subtle:hover {
    opacity: 1;
}

.hidden-charm {
    font-size: 1.5rem;
    color: var(--miraculous-pink);
    text-shadow: 0 0 15px var(--miraculous-pink);
    animation: charmFloat 5s ease-in-out infinite;
}

/* Footer */
.gothic-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gold);
}

.social-links {
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(145deg, rgba(29, 185, 84, 0.2), rgba(10, 10, 10, 0.8));
    border: 2px solid var(--spotify-green);
    border-radius: 25px;
    color: var(--spotify-green);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-link:hover {
    background: linear-gradient(145deg, rgba(29, 185, 84, 0.4), rgba(10, 10, 10, 0.9));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(29, 185, 84, 0.3);
}

.footer-ornament {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* Background Decorations */
.bg-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-note {
    position: absolute;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.3);
    animation: floatAround 20s linear infinite;
}

.note-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.note-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.note-3 {
    top: 80%;
    left: 20%;
    animation-delay: 10s;
}

.note-4 {
    top: 40%;
    right: 30%;
    animation-delay: 15s;
}

.cat-shadow {
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1), transparent);
    border-radius: 50%;
    animation: shadowMove 15s ease-in-out infinite;
}

.shadow-1 {
    top: 30%;
    left: 5%;
    animation-delay: 0s;
}

.shadow-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .username {
        font-size: 2rem;
    }
    
    .element-row {
        gap: 1rem;
    }
    
    .gothic-symbol {
        font-size: 1.5rem;
    }
    
    .avatar-frame {
        width: 100px;
        height: 100px;
    }
    
    .cat-silhouette {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .username {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .element-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}
