body {
            background-image: url("../img/sebastian-redes.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-color: var(--dark-bg);
        }
        
        .portfolio-header {
            background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
            color: white;
            padding: 3rem 0;
            margin-bottom: 3rem;
            text-align: center;
            border-bottom: 3px solid #e94560;
        }
        
        .section-title {
            color: #e94560;
            padding-bottom: 15px;
            margin-bottom: 30px;
            border-bottom: 2px solid #e94560;
            text-align: center;
        }
        
        .movie-card, .music-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
            height: 380px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            background: linear-gradient(145deg, #16213e, #1a1a2e);
        }
        
        .movie-card:hover, .music-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 12px 25px rgba(233, 69, 96, 0.25);
        }
        
        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .movie-card:hover .card-image, .music-card:hover .card-image {
            transform: scale(1.08);
        }
        
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 20, 0.9);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
        }
        
        .movie-card:hover .card-overlay, .music-card:hover .card-overlay {
            opacity: 1;
        }
        
        .card-title {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #e94560;
        }
        
        .card-info {
            font-style: italic;
            margin-bottom: 12px;
            color: #8a8a9c;
        }
        
        .card-description {
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .card-price {
            font-weight: bold;
            color: #0fce5c;
            margin-bottom: 15px;
        }
        
        .btn-action {
            background-color: #e94560;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            color: white;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .btn-action:hover {
            background-color: #ff5c77;
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 15px;
        }
        
        .card-content h3 {
            color: #e94560;
            font-size: 1.2rem;
            margin-top: 10px;
        }
        
        .card-content p {
            color: #8a8a9c;
            font-size: 0.9rem;
        }
        
        .music-icon {
            font-size: 2.5rem;
            color: #e94560;
            margin-bottom: 15px;
        }
        
        footer {
            background-color: #0f3460;
            color: white;
            padding: 2.5rem 0;
            margin-top: 4rem;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .social-icons a:hover {
            color: #e94560;
        }
        
        .navbar {
            background-color: #16213e !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            color: #e94560 !important;
            font-weight: bold;
        }

        .fondo {
            background-color: rgba(255, 255, 255, 0.616);
        }
        