/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #ff00ff;
    --text-color: #ffffff;
    --bg-color: rgba(0, 0, 0, 0.7);
    --card-bg: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #000;
    cursor: none;
    position: relative;
    min-height: 100vh;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    animation: pulse 1.5s infinite;
}

.preloader p {
    color: var(--text-color);
    font-size: 1.2rem;
}

/* Cursor personalizado */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    z-index: 10000;
    pointer-events: none;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* Video de fondo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    animation: fadeIn 1.5s ease-in-out;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
    z-index: 1;
    opacity: 0.5;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background: linear-gradient(45deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2)); }
    50% { background: linear-gradient(225deg, rgba(37, 117, 252, 0.2), rgba(106, 17, 203, 0.2)); }
    100% { background: linear-gradient(45deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2)); }
}

/* Partículas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

/* Control de volumen */
.volume-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.volume-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.volume-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.volume-container {
    display: flex;
    align-items: center;
}

#volume-slider {
    width: 100px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    opacity: 0.8;
    transition: opacity 0.2s;
    cursor: none;
    border-radius: 5px;
    -webkit-appearance: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: none;
    box-shadow: var(--neon-glow);
}

#volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: none;
    box-shadow: var(--neon-glow);
}

#volume-slider:hover {
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Avatar */
.avatar-container {
    position: relative;
    margin-bottom: 30px;
    animation: fadeInScale 1.2s ease-out;
}

.avatar-decoration {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    animation: pulse 3s infinite alternate, glow 2s infinite alternate;
    margin-top: -20px; /* Ajuste para el sombrero */
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.avatar-container:hover .avatar {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.avatar-container::after {
    content: '';
    position: absolute;
    top: -30px; /* Ajuste para el sombrero */
    left: -30px;
    width: 280px; /* Tamaño más grande para el sombrero */
    height: 280px; /* Tamaño más grande para el sombrero */
    background-image: url('https://cdn.discordapp.com/avatar-decoration-presets/a_70fddceac8bedb9bb317d6891e5521cd.png?size=160&passthrough=true');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.avatar-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.avatar-container:hover .avatar-tooltip {
    opacity: 1;
}

/* Nombre con efecto glitch */
.name {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1.5s ease-out, slideUp 1.5s ease-out;
    position: relative;
}

.glitch-text {
    position: relative;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 500ms infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 500ms infinite;
    color: #00ffff;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 500ms infinite;
    color: #ff00ff;
    z-index: -2;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

@keyframes glitch-1 {
    0% {
        clip-path: inset(40% 0 61% 0);
        transform: translate(0.05em, -0.025em);
    }
    20% {
        clip-path: inset(92% 0 1% 0);
        transform: translate(-0.05em, 0.025em);
    }
    40% {
        clip-path: inset(43% 0 1% 0);
        transform: translate(0.05em, 0.025em);
    }
    60% {
        clip-path: inset(25% 0 58% 0);
        transform: translate(0.05em, 0.025em);
    }
    80% {
        clip-path: inset(54% 0 7% 0);
        transform: translate(0.05em, 0.025em);
    }
    100% {
        clip-path: inset(58% 0 43% 0);
        transform: translate(0.05em, 0.025em);
    }
}

@keyframes glitch-2 {
    0% {
        clip-path: inset(25% 0 58% 0);
        transform: translate(-0.05em, 0.025em);
    }
    20% {
        clip-path: inset(54% 0 7% 0);
        transform: translate(0.05em, -0.025em);
    }
    40% {
        clip-path: inset(58% 0 43% 0);
        transform: translate(-0.05em, 0.025em);
    }
    60% {
        clip-path: inset(40% 0 61% 0);
        transform: translate(0.05em, -0.025em);
    }
    80% {
        clip-path: inset(92% 0 1% 0);
        transform: translate(0.05em, -0.025em);
    }
    100% {
        clip-path: inset(25% 0 58% 0);
        transform: translate(0.05em, -0.025em);
    }
}

/* Biografías */
.bios {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
}

.bio {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards, slideUp 1.5s ease-out forwards;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}

.bio:nth-child(1) {
    animation-delay: 0.5s;
}

.bio:nth-child(2) {
    animation-delay: 0.8s;
}

/* Sección de Información Pública */
.public-info-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.public-info-container {
    display: flex;
    justify-content: center;
}

.info-card {
    width: 100%;
    max-width: 500px;
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.info-data {
    text-align: left;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-data p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.info-data strong {
    color: var(--accent-color);
}

/* Botón de bnode */
.bnode-btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 20px 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.bnode-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.bnode-btn i {
    margin-right: 10px;
}

/* Botones sociales */
.social-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards, slideUp 1.5s ease-out forwards;
    animation-delay: 1.1s;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    cursor: none;
}

.social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
}

.social-btn i {
    z-index: 2;
}

/* Tooltip para botones sociales */
.social-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.social-btn:hover::after {
    opacity: 1;
}

/* Sección de Discord/Steam */
.discord-steam-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.profiles-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-card {
    width: 300px;
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    cursor: none;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.profile-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.profile-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.profile-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Sección de Spotify */
.spotify-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.spotify-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.spotify-widget {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.spotify-widget:hover {
    transform: scale(1.02);
}

.spotify-profile-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(90deg, #1DB954, #1ed760);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: none;
}

.spotify-profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.spotify-profile-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Sección de Contacto */
.contact-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-container {
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.submit-btn i {
    margin-right: 10px;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInScale {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes glow {
   0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
   50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
   100% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
}

/* Efecto ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 15px;
    animation: pulse 1.5s infinite;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-body {
    margin-bottom: 25px;
    text-align: center;
}

.modal-body p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.accept-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.accept-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive para el modal */
@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .accept-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .name {
        font-size: 2rem;
    }
    
    .bio {
        font-size: 1rem;
    }
    
    .avatar-decoration {
        width: 150px;
        height: 150px;
    }
    
    .avatar-container::after {
        width: 210px;
        height: 210px;
        top: -10px;
        left: -20px;
    }
    
    .social-buttons {
        gap: 15px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .volume-control {
        top: 10px;
        right: 10px;
    }
    
    #volume-slider {
        width: 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .profiles-container {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-card {
        width: 100%;
        max-width: 300px;
    }
    
    .spotify-widget {
        height: 300px;
    }
    
    .contact-container {
        padding: 30px 20px;
    }
    
    .public-info-section {
        padding: 30px 15px;
    }

    .info-card {
        padding: 20px;
    }

    .info-icon {
        font-size: 2rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-data {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 1.8rem;
    }
    
    .bio {
        font-size: 0.9rem;
    }
    
    .avatar-decoration {
        width: 120px;
        height: 120px;
    }
    
    .avatar-container::after {
        width: 180px;
        height: 180px;
        top: -15px;
        left: -15px;
    }
    
    .social-buttons {
        gap: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .bnode-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .spotify-profile-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .volume-control {
        padding: 8px 15px;
    }
    
    .volume-btn {
        width: 35px;
        height: 35px;
    }
    
    #volume-slider {
        width: 60px;
    }
    
    .contact-container {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .social-btn, .profile-card, .bnode-btn, .spotify-profile-btn, .volume-btn, .submit-btn {
        cursor: pointer;
    }

    .public-info-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* se acomodan en móvil */
  justify-content: center;
}

.info-card {
  background: rgba(0,0,0,0.7);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.8);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

}