@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');


body {
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: center;
    background-color: hsl(0deg 22.75% 9.1%);
}


.container {
    max-width: 600px;
    margin: auto;
    background: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.6s ease-in-out;
}

.logo {
    width: 100px;
    margin-bottom: 10px;
    animation: bounce 1.5s infinite;
}

h1 {
    color: #4CAF50;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.info {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.warning {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.note {
    background: rgba(70, 130, 180, 0.2);
    color: #4682b4;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

button {
    background: #4CAF50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button i {
    font-size: 1.2rem;
}

button:hover {
    background: #388E3C;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.support-btn {
    background: #FF4081;
}

.support-btn:hover {
    background: #C2185B;
}

footer {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.privacy-link {
    color: #4CAF50;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.update-widget {
    position: absolute;
    top: 15%;
    right: 8%;
    background: #1e1e1e;
    color: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    width: 250px;
    font-size: 0.95rem;
    display: flow;
}
.update-toggle {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.update-toggle:hover {
    background: #388E3C;
}

.changelog {
    background: #2c2c2c;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
    animation: fadeIn 0.3s ease-in-out;
}

.changelog ul {
    padding-left: 20px;
    margin: 8px 0;
}

.changelog a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.changelog a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

.stream-container {
    margin-top: 30px;
    position: relative;
    text-align: center;
}

.stream-toggle {
    background: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.stream-toggle:hover {
    background: #1976D2;
}

.stream-box {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

/* Animación de rotación */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Animación de pulso (zoom in-out) */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  /* Clase para rotar continuamente */
  .icon-rotate {
    animation: rotate 2s linear infinite;
  }
  
  /* Clase para hacer pulso al pasar el mouse */
  .icon-hover-pulse:hover {
    animation: pulse 0.6s ease-in-out;
  }
  