/* Reset y Variables CSS */
:root {
    --primary-color: #8B5CF6; /* Morado */
    --secondary-color: #A855F7; /* Morado claro */
    --accent-color: #7C3AED; /* Morado oscuro */
    --dark-color: #000000; /* Negro */
    --light-color: #FFFFFF; /* Blanco */
    --gray-color: #1F1F1F; /* Gris oscuro */
    --text-light: #E5E5E5; /* Texto claro */
    --text-dark: #333333; /* Texto oscuro */
    
    /* Colores específicos para TuneCore */
    --tunecore-primary: #00D4AA; /* Verde TuneCore */
    --tunecore-secondary: #00B894; /* Verde oscuro TuneCore */
    --tunecore-accent: #00E6B8; /* Verde claro TuneCore */
    --tunecore-dark: #004D3D; /* Verde muy oscuro TuneCore */
    --tunecore-light: #E6FFF7; /* Verde muy claro TuneCore */
    
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Roboto', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    --shadow-hover: 0 20px 60px rgba(139, 92, 246, 0.4);
    --tunecore-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
    --tunecore-shadow-hover: 0 20px 60px rgba(0, 212, 170, 0.4);
}

/* Estilos para Modales y Notificaciones de TuneCore */
.tunecore-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tunecore-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.tunecore-modal-content {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    border: 2px solid var(--tunecore-primary);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--tunecore-shadow);
    animation: tunecoreModalSlideIn 0.4s ease-out;
}

@keyframes tunecoreModalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.tunecore-modal-header {
    background: linear-gradient(135deg, var(--tunecore-primary) 0%, var(--tunecore-secondary) 100%);
    padding: 25px 30px;
    border-radius: 18px 18px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tunecore-modal-header h3 {
    color: var(--dark-color);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tunecore-modal-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--dark-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.tunecore-modal-close:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.tunecore-modal-body {
    padding: 30px;
    color: var(--text-light);
}

.tunecore-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 18px 18px;
}

/* Botones de TuneCore */
.tunecore-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.tunecore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tunecore-btn:hover::before {
    left: 100%;
}

.tunecore-btn-primary {
    background: linear-gradient(135deg, var(--tunecore-primary) 0%, var(--tunecore-secondary) 100%);
    color: var(--dark-color);
    box-shadow: var(--tunecore-shadow);
}

.tunecore-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--tunecore-shadow-hover);
}

.tunecore-btn-secondary {
    background: transparent;
    color: var(--tunecore-primary);
    border: 2px solid var(--tunecore-primary);
}

.tunecore-btn-secondary:hover {
    background: var(--tunecore-primary);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.tunecore-btn-danger {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A52 100%);
    color: var(--light-color);
}

.tunecore-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Notificaciones de TuneCore */
.tunecore-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--tunecore-primary) 0%, var(--tunecore-secondary) 100%);
    color: var(--dark-color);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--tunecore-shadow);
    z-index: 10000;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid var(--tunecore-dark);
}

.tunecore-notification.show {
    transform: translateX(0);
}

.tunecore-notification.success {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    border-left-color: #004D3D;
}

.tunecore-notification.error {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A52 100%);
    border-left-color: #8B0000;
}

.tunecore-notification.warning {
    background: linear-gradient(135deg, #FFA726 0%, #FF9800 100%);
    border-left-color: #E65100;
}

.tunecore-notification.info {
    background: linear-gradient(135deg, #42A5F5 0%, #2196F3 100%);
    border-left-color: #0D47A1;
}

.tunecore-notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tunecore-notification-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.tunecore-notification-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--dark-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tunecore-notification-close:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.tunecore-notification-message {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.tunecore-notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.tunecore-notification-progress-bar {
    height: 100%;
    background: var(--tunecore-dark);
    width: 100%;
    animation: tunecoreNotificationProgress 5s linear forwards;
}

@keyframes tunecoreNotificationProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Overlay de carga para TuneCore */
.tunecore-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

.tunecore-loading-overlay.show {
    display: flex;
}

.tunecore-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 170, 0.3);
    border-top: 4px solid var(--tunecore-primary);
    border-radius: 50%;
    animation: tunecoreSpin 1s linear infinite;
}

@keyframes tunecoreSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tunecore-loading-text {
    color: var(--tunecore-primary);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-top: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

/* Responsive para modales y notificaciones */
@media (max-width: 768px) {
    .tunecore-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 20px;
    }
    
    .tunecore-modal-header {
        padding: 20px 25px;
    }
    
    .tunecore-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .tunecore-modal-body {
        padding: 25px;
    }
    
    .tunecore-modal-footer {
        padding: 20px 25px;
        flex-direction: column;
    }
    
    .tunecore-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .tunecore-notification.show {
        transform: translateY(0);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--light-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark-color), var(--gray-color));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--gray-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--dark-color);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.calendar-container {
    background: var(--gray-color);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.calendar-title {
    font-family: var(--font-primary);
    color: var(--light-color);
    font-size: 1.3rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.calendar-day:hover {
    background: rgba(139, 92, 246, 0.2);
}

.calendar-day.has-event {
    background: var(--primary-color);
    color: var(--light-color);
}

.calendar-day.selected {
    background: var(--secondary-color);
    color: var(--light-color);
}

.events-list {
    space-y: 20px;
}

.event-card {
    background: var(--gray-color);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    margin-bottom: 20px;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.event-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-location {
    opacity: 0.8;
    margin-bottom: 15px;
}

.event-description {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.event-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.event-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.event-actions .btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.event-actions .btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
}

.event-actions .btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.event-actions .btn-secondary {
    background: var(--gray-color);
    color: var(--light-color);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.event-actions .btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.event-actions .btn-danger {
    background: #dc3545;
    color: var(--light-color);
}

.event-actions .btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* Estilos para modales de eventos */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: var(--gray-color);
    border-radius: 15px;
    max-width: 800px;
    margin: 50px auto;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-color);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 25px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Grid de detalles del evento */
.event-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.event-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-detail-item label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-detail-item span {
    color: var(--light-color);
    font-size: 1rem;
    padding: 8px 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Formulario de edición */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--light-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--dark-color);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--light-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive para modales */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px auto;
        max-width: 95%;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .event-detail-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Music Player Section */
.music {
    padding: 100px 0;
    background: var(--gray-color);
}

.music-player {
    background: var(--dark-color);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow);
}

.player-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.vinyl-record {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, var(--dark-color) 30%, var(--primary-color) 31%, var(--primary-color) 35%, var(--dark-color) 36%);
    border-radius: 50%;
    position: relative;
    animation: spin 3s linear infinite;
    animation-play-state: paused;
}

.vinyl-record.playing {
    animation-play-state: running;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gray-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.equalizer .bar {
    width: 6px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: equalizer 1s ease-in-out infinite;
    animation-play-state: paused;
}

.equalizer.playing .bar {
    animation-play-state: running;
}

.equalizer .bar:nth-child(1) { animation-delay: 0s; }
.equalizer .bar:nth-child(2) { animation-delay: 0.1s; }
.equalizer .bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer .bar:nth-child(4) { animation-delay: 0.3s; }
.equalizer .bar:nth-child(5) { animation-delay: 0.4s; }
.equalizer .bar:nth-child(6) { animation-delay: 0.5s; }
.equalizer .bar:nth-child(7) { animation-delay: 0.6s; }
.equalizer .bar:nth-child(8) { animation-delay: 0.7s; }

.player-controls {
    text-align: center;
}

.track-info {
    margin-bottom: 30px;
}

.track-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--light-color);
}

.track-artist {
    color: var(--primary-color);
    opacity: 0.8;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.control-btn {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: var(--transition);
}

.control-btn:hover {
    color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
}

.play-btn {
    font-size: 2rem;
    background: var(--primary-color);
    color: var(--light-color);
    width: 60px;
    height: 60px;
}

.play-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.time {
    font-size: 0.9rem;
    color: var(--primary-color);
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.volume-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.volume-container i {
    color: var(--primary-color);
}

.volume-slider {
    width: 100px;
    height: 6px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
}

.playlist {
    margin-top: 40px;
    max-height: 300px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
}

.playlist-item:hover {
    background: rgba(139, 92, 246, 0.1);
}

.playlist-item.active {
    background: rgba(139, 92, 246, 0.2);
    border-left: 3px solid var(--primary-color);
}

.playlist-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.playlist-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.playlist-info p {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Social Media Section */
.social {
    padding: 100px 0;
    background: var(--dark-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.social-feed {
    background: var(--gray-color);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
}

.social-feed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.social-feed h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.social-feed h3 i {
    font-size: 1.5rem;
}

.feed-content {
    height: 400px;
    overflow-y: auto;
}

.feed-post {
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    padding: 20px 0;
    margin-bottom: 20px;
}

.feed-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feed-post img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.feed-post p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.feed-post .date {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-top: 10px;
}

/* Tickets Section */
.tickets {
    padding: 100px 0;
    background: var(--gray-color);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.ticket-card {
    background: var(--dark-color);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: var(--transition);
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.ticket-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket-content {
    padding: 30px;
}

.ticket-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light-color);
}

.ticket-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.ticket-location {
    opacity: 0.8;
    margin-bottom: 20px;
}

.ticket-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.ticket-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-items {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gray-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--gray-color);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-color);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--light-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(229, 229, 229, 0.6);
}

/* Footer */
.footer {
    background: var(--gray-color);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo p {
    margin-top: 10px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes equalizer {
    0%, 100% {
        height: 10px;
    }
    50% {
        height: 50px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Install notice styles */
.install-notice {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    color: #A855F7;
}

.install-notice a {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
}

.install-notice a:hover {
    color: #7C3AED;
    text-decoration: underline;
}

/* Navigation Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding-right: 20px;
}

.admin-btn, .spotify-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.admin-btn {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    border-color: rgba(139, 92, 246, 0.3);
}

.admin-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #7C3AED;
    border-color: #8B5CF6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.spotify-btn {
    background: rgba(30, 215, 96, 0.1);
    color: #1ED760;
    border-color: rgba(30, 215, 96, 0.3);
}

.spotify-btn:hover {
    background: rgba(30, 215, 96, 0.2);
    color: #1DB954;
    border-color: #1ED760;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 215, 96, 0.3);
}

.admin-btn i, .spotify-btn i {
    font-size: 16px;
}

.btn-text {
    font-weight: 600;
}

/* Responsive design for nav buttons */
@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
    
    /* Show buttons in mobile menu */
    .nav-menu.active::after {
        content: '';
        display: block;
        padding: 20px;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        margin-top: 20px;
    }
    
    .nav-menu.active {
        position: relative;
    }
    
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .mobile-nav-actions .admin-btn,
    .mobile-nav-actions .spotify-btn {
        justify-content: center;
        padding: 12px;
        font-size: 16px;
    }
}

/* Spotify Widget Styles */
.spotify-widget {
    margin-top: 40px;
    padding: 30px;
    background: rgba(30, 215, 96, 0.05);
    border: 1px solid rgba(30, 215, 96, 0.2);
    border-radius: 15px;
    text-align: center;
}

.widget-title {
    color: #1ED760;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.spotify-embed {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 215, 96, 0.2);
}

.spotify-embed iframe {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.spotify-actions {
    margin-top: 20px;
}

.spotify-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1ED760;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 215, 96, 0.3);
}

.spotify-link:hover {
    background: #1DB954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 215, 96, 0.4);
    color: white;
}

.spotify-link i {
    font-size: 18px;
}

/* Spotify Info and Fallback */
.spotify-info {
    margin-bottom: 20px;
}

.spotify-description {
    color: #cccccc;
    font-size: 16px;
    text-align: center;
    margin: 0;
}

.spotify-fallback {
    padding: 40px 20px;
    background: rgba(30, 215, 96, 0.1);
    border: 2px dashed rgba(30, 215, 96, 0.3);
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
}

.fallback-content i {
    font-size: 48px;
    color: #1ED760;
    margin-bottom: 15px;
    display: block;
}

.fallback-content h4 {
    color: #1ED760;
    font-size: 20px;
    margin-bottom: 10px;
}

.fallback-content p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.spotify-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(30, 215, 96, 0.1);
    color: #1ED760;
    text-decoration: none;
    border: 2px solid #1ED760;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.spotify-search:hover {
    background: #1ED760;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 215, 96, 0.4);
}

.spotify-search i {
    font-size: 16px;
}

/* Responsive Spotify Widget */
@media (max-width: 768px) {
    .spotify-widget {
        margin-top: 30px;
        padding: 20px;
    }
    
    .widget-title {
        font-size: 20px;
    }
    
    .spotify-embed iframe {
        height: 280px;
    }
    
    .spotify-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .events-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        justify-content: space-around;
    }
    
    .player-visual {
        flex-direction: column;
        gap: 30px;
    }
    
    .vinyl-record {
        width: 150px;
        height: 150px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .music-player {
        padding: 25px;
    }
    
    .vinyl-record {
        width: 120px;
        height: 120px;
    }
    
    .controls {
        gap: 10px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Estilos para la sección de Información del Sitio */
.site-info {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    position: relative;
    overflow: hidden;
}

.site-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(139, 92, 246, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.site-info .container {
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(139, 92, 246, 0.4);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.info-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-header h3 {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.info-value {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-wrap: break-word;
}

.info-value.enabled {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.info-value.disabled {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive para la sección de información */
@media (max-width: 768px) {
    .site-info {
        padding: 60px 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-header h3 {
        font-size: 1.1rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-value {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .site-info {
        padding: 40px 0;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .info-header i {
        font-size: 1.2rem;
        margin-right: 10px;
    }
    
    .info-header h3 {
        font-size: 1rem;
    }
    
    .info-content {
        gap: 8px;
    }
    
    .info-item {
        padding: 8px 0;
    }
    
    .info-label,
    .info-value {
        font-size: 0.8rem;
    }
}

/* Estilos para el Sistema de Notificaciones del Sitio */
.site-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    transform: translateX(400px);
    transition: transform 0.3s ease-in-out;
}

.site-notifications.show {
    transform: translateX(0);
}

.notification-container {
    padding: 20px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.notification-header h3 {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.notification-header h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.notification-close:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-color);
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.online {
    background: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-dot.offline {
    background: #EF4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.status-dot.maintenance {
    background: #F59E0B;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.status-item span {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.site-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.stat-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.last-update {
    text-align: center;
    padding-top: 10px;
}

.last-update p {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.last-update i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Botón flotante para mostrar notificaciones */
.notifications-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notifications-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.notifications-toggle i {
    transition: transform 0.3s ease;
}

.notifications-toggle.active i {
    transform: rotate(180deg);
}

/* Responsive para notificaciones */
@media (max-width: 768px) {
    .site-notifications {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .site-notifications.show {
        transform: translateY(0);
    }
    
    .site-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .site-notifications {
        top: 5px;
        right: 5px;
        left: 5px;
    }
    
    .notification-container {
        padding: 15px;
    }
    
    .notification-header h3 {
        font-size: 1rem;
    }
    
    .site-stats {
        gap: 8px;
    }
    
    .stat-item i {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
}

/* Sistema de Notificaciones Avanzado */
.notification-system {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.notification-item {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    max-width: 400px;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.notification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.notification-item.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-item.hide {
    transform: translateX(100%);
    opacity: 0;
}

.notification-item.success {
    border-color: #10B981;
}

.notification-item.success::before {
    background: linear-gradient(90deg, #10B981, #059669);
}

.notification-item.error {
    border-color: #EF4444;
}

.notification-item.error::before {
    background: linear-gradient(90deg, #EF4444, #DC2626);
}

.notification-item.warning {
    border-color: #F59E0B;
}

.notification-item.warning::before {
    background: linear-gradient(90deg, #F59E0B, #D97706);
}

.notification-item.info {
    border-color: #3B82F6;
}

.notification-item.info::before {
    background: linear-gradient(90deg, #3B82F6, #2563EB);
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.notification-title {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-title i {
    font-size: 1.2rem;
}

.notification-item.success .notification-title i {
    color: #10B981;
}

.notification-item.error .notification-title i {
    color: #EF4444;
}

.notification-item.warning .notification-title i {
    color: #F59E0B;
}

.notification-item.info .notification-title i {
    color: #3B82F6;
}

.notification-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.notification-message {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.notification-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 100%;
    animation: notificationProgress 5s linear forwards;
}

@keyframes notificationProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Notificaciones Toast */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    max-width: 300px;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification.success {
    border-color: #10B981;
}

.toast-notification.error {
    border-color: #EF4444;
}

.toast-notification.warning {
    border-color: #F59E0B;
}

.toast-notification.info {
    border-color: #3B82F6;
}

/* Notificaciones Push */
.push-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
    text-align: center;
}

.push-notification.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.push-notification-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.push-notification-title {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.push-notification-message {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.push-notification-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.push-notification-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.push-notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.push-notification-btn.secondary {
    background: linear-gradient(135deg, var(--gray-color) 0%, #2A2A2A 100%);
    border: 2px solid var(--primary-color);
}

.push-notification-btn.secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Notificaciones de Estado */
.status-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10002;
    text-align: center;
}

.status-notification.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.status-notification-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.status-notification-title {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.status-notification-message {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Notificaciones de Acción */
.action-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10000;
    max-width: 350px;
}

.action-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.action-notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.action-notification-title {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.action-notification-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.action-notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.action-notification-message {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.action-notification-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.action-notification-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: var(--light-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-notification-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.action-notification-btn.secondary {
    background: linear-gradient(135deg, var(--gray-color) 0%, #2A2A2A 100%);
    border: 1px solid var(--primary-color);
}

.action-notification-btn.secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Responsive para notificaciones */
@media (max-width: 768px) {
    .notification-system {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification-item {
        max-width: none;
        margin-bottom: 10px;
        padding: 15px;
    }
    
    .push-notification {
        padding: 20px;
        margin: 20px;
    }
    
    .push-notification-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
    
    .action-notification-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .notification-item {
        padding: 12px;
        border-radius: 12px;
    }
    
    .notification-title {
        font-size: 1rem;
    }
    
    .notification-message {
        font-size: 0.9rem;
    }
    
    .push-notification {
        padding: 15px;
        border-radius: 15px;
    }
    
    .push-notification-title {
        font-size: 1.3rem;
    }
    
    .push-notification-message {
        font-size: 0.9rem;
    }
}


