* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2f2f2f 100%) fixed;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    overscroll-behavior-y: contain;
}
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-background-size: cover;
        background-attachment: scroll;
    }
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #FF5722;
}

.header p {
    color: #aaa;
    font-size: 1rem;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.panel {
    background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.panel:hover {
    height: 550px; 
}

.creator-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.creator-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #FF5722;
}

.creator-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.creator-role {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 3px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.panel:hover .social-buttons {
    opacity: 1;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-btn:hover {
    transform: translateX(5px);
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Colores para cada red social */
.youtube { background-color: #FF0000; }
.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.x { background-color: #000000; }
.tiktok { background: linear-gradient(135deg, #000000 0%, #555555 50%, #000000 100%)}
.twitch { background-color: #9146FF; }
.facebook { background-color: #1877F2; }
.discord { background-color: #5865F2; }
.spotify {background: linear-gradient(135deg, #19a74a 0%, #1acf5a 50%, #19a74a 100%);}
.patreon { background-color: #FF424D; }
.website { background-color: #4CAF50; }
.instagram_arcano_picks { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.Paypal {background: linear-gradient(135deg, #002c7a 0%, #008ece 50%, #011d5e 100%);}
.spotify_coming_soon {background: linear-gradient(135deg, #19a74a 0%, #1acf5a 50%, #19a74a 100%);}
.onlyfans {background: linear-gradient(45deg, #00aeba, #15a6b0, #81e8f0, #9feff5, #74e0e8, #3fdfeb, #0bd5e3);}
.amazon {background: linear-gradient(135deg, #b8a148, #bda33c, #bfab5a);}
.kofi {background: linear-gradient(45deg, #f5d402, #eb3a34, #f2e380);}
.etsy {background: linear-gradient(135deg, #db6525, #b36136, #e89568, #f55905);}
.github {background: linear-gradient(45deg, #cb0be0, #b227c2, #db61e8, #620e6b);}
.estultos {background: linear-gradient(45deg, #050505, #380705, #571a17, #050505);}

/* Botón de Discord flotante */
.discord-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
}

.discord-float-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background-color: #5865F2 !important;
    color: white !important;
    font-size: 30px !important;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4) !important;
    text-decoration: none !important;
}

/* Animación */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.discord-float {
    animation: pulse 2s infinite !important;
}

.footer-logo {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 50px; 
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

.logo-img:hover {
    transform: scale(1.05); 
}