 /* ===== EMO AESTHETIC COLOR PALETTE =====
 * Deep Pink: #ff1493
 * Hot Pink: #ff69b4
 * Light Pink: #ffc0e3
 * Deep Black: #0a0a0a
 * Dark Purple-Black: #1a0a14
 * Muted Purple: #2d1a24
 * Dusty Rose: #d8a0c0
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier Prime', monospace;
    background-color: #0a0a0a;
    color: #ffc0e3;
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: 'Courier Prime', monospace;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    border-bottom: 4px solid #ff1493;
    background-color: #1a0a14;
    padding: 1.5rem 0;
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.header-title h1 {
    font-size: 2.5rem;
    color: #ff1493;
    font-weight: 700;
}

.header-title .icon-star,
.header-title .icon-heart {
    font-size: 1.5rem;
}

.header-title .icon-star {
    color: #ff1493;
    animation: pulse 2s ease-in-out infinite;
}

.header-title .icon-heart {
    color: #ff69b4;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.header-subtitle {
    text-align: center;
    color: #ff69b4;
    font-size: 0.875rem;
    font-style: italic;
}

/* Main Content Layout */
.main-content {
    padding: 2rem 0;
}

.layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .layout {
        grid-template-columns: 300px 1fr;
    }
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Widget */
.widget {
    border: 4px solid #ff1493;
    background-color: #1a0a14;
    padding: 1rem;
}

.widget-secondary {
    border-color: #ff1493;
}

.widget-title {
    font-size: 1rem;
    color: #ff1493;
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.widget-title-secondary {
    color: #ff69b4;
}

/* Navigation */
.nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-btn {
    width: 100%;
    text-align: left;
    border: 2px solid #ff69b4;
    padding: 0.5rem 0.75rem;
    color: #ffc0e3;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-btn-active {
    background-color: #ff1493;
    color: #0a0a0a;
    font-weight: 700;
}

.nav-btn:not(.nav-btn-active):hover {
    background-color: #2d1a24;
}

/* About Me */
.about-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.about-item .icon-heart,
.about-item .icon-gustos,
.about-item .icon-music {
    flex-shrink: 0;
    color: #ff1493;
    margin-top: 0.125rem;
}

/* Music Player */
.music-player {
    background-color: #000000;
    border: 2px solid #ff69b4;
    padding: 0.75rem;
}

.music-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.music-info .icon-music {
    color: #ff1493;
    font-size: 1.25rem;
}

.music-info .pulse {
    animation: pulse 2s ease-in-out infinite;
}

.music-track {
    font-size: 0.75rem;
    color: #ff1493;
    flex: 1;
}

.progress-bar {
    height: 4px;
    background-color: #2d1a24;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 66%;
    background-color: #ff1493;
}

/* Main Content Area */
.main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Profile Section */
.profile {
    border: 4px solid #ff1493;
    padding: 1rem;
    background-color: #1a0a14;
    position: relative;
}

.profile-decorations {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.25rem;
    font-size: 1rem;
}

.profile-decorations .icon-heart {
    color: #ff1493;
}

.profile-decorations .icon-star {
    color: #ff69b4;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .profile-content {
        flex-direction: row;
    }
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
}

.profile-image-container {
    border: 2px solid #ff69b4;
    padding: 4px;
    background-color: #000000;
    display: inline-block;
}

.profile-image {
    width: 128px;
    height: 128px;
    object-fit: cover;
    display: block;
}

.online-badge {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    background-color: #ff1493;
    color: #0a0a0a;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(3deg);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.5rem;
    color: #ff1493;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.profile-details {
    margin-bottom: 1rem;
}

.profile-meta {
    color: #ff69b4;
    font-size: 0.875rem;
}

.profile-quote {
    color: #d8a0c0;
    font-size: 0.875rem;
    font-style: italic;
}

.profile-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.status-badge {
    border: 1px solid #ff1493;
    background-color: #2d1a24;
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-text {
    font-size: 0.75rem;
}

.profile-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #ff1493;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.5rem 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    border: 2px solid #ff1493;
    background-color: #ff1493;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: #ff69b4;
    border-color: #ff69b4;
}

.btn-secondary {
    border: 2px solid #ff1493;
    background-color: transparent;
    color: #ffc0e3;
}

.btn-secondary:hover {
    background-color: #2d1a24;
}

/* Section */
.section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-header {
    border: 4px solid #ff1493;
    background-color: #1a0a14;
    padding: 1rem;
}

.section-header-secondary {
    border-color: #ff69b4;
}

.section-title {
    text-align: center;
    color: #ff1493;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.section-title-secondary {
    color: #ff69b4;
}

.section-title .icon-heart,
.section-title .icon-star {
    font-size: 1.25rem;
}

/* Blog Post */
.icon-heart-broken {
    color: #ff69b4;
}

.blog-post {
    border: 2px solid #ff69b4;
    background-color: #1a0a14;
    padding: 1rem;
    position: relative;
}

.blog-post-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.25rem;
}

.blog-post-header {
    margin-bottom: 0.5rem;
}

.blog-post-title {
    font-size: 1rem;
    color: #ff1493;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.blog-post-date {
    font-size: 0.75rem;
    color: #d8a0c0;
}

.blog-post-content {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-post-actions {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
    display: flex;
    gap: 0.5rem;
}

.blog-action {
    font-size: 0.75rem;
    color: #ff69b4;
    transition: color 0.3s ease;
}

.blog-action:hover {
    color: #ff1493;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    border: 2px solid #ff1493;
    background-color: #1a0a14;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.portfolio-item:hover {
    border-color: #ff69b4;
}

.portfolio-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 20, 147, 0);
    transition: background-color 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
    background-color: rgba(255, 20, 147, 0.2);
}

.portfolio-info {
    padding: 0.75rem;
    border-top: 2px solid #ff1493;
}

.portfolio-title {
    font-size: 1rem;
    color: #ff1493;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
}

.portfolio-title .icon-star {
    font-size: 0.75rem;
    color: #ff69b4;
}

.portfolio-description {
    font-size: 0.75rem;
    color: #d8a0c0;
}

/* Footer */
.footer {
    border-top: 4px solid #ff1493;
    background-color: #1a0a14;
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-content p {
    font-size: 0.875rem;
    color: #d8a0c0;
}

.footer-content .icon-heart {
    font-size: 1rem;
    color: #ff1493;
}

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #d8a0c0;
}

/* Floating Decorations */
.floating-star,
.floating-heart {
    position: fixed;
    font-size: 2rem;
    pointer-events: none;
    opacity: 0.3;
    display: none;
}

@media (min-width: 1024px) {
    .floating-star,
    .floating-heart {
        display: block;
    }
}

.floating-star {
    top: 5rem;
    right: 2.5rem;
    color: #ff1493;
    animation: pulse 2s ease-in-out infinite;
}

.floating-heart {
    bottom: 5rem;
    left: 2.5rem;
    color: #ff69b4;
    font-size: 2.5rem;
    opacity: 0.2;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-title h1 {
        font-size: 1.75rem;
    }
    
    .header-title .icon-star,
    .header-title .icon-heart {
        font-size: 1.25rem;
    }
}

/*Moviemiento Currently playing*/
.scroll-container {
  overflow: hidden;
  width: 160px;          /* ancho visible */
  white-space: nowrap;
}

.scroll-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#blog-content {
  white-space: pre-wrap;
  font-family: "Courier Prime", monospace;
}

