::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #30084c;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #30084c;
}

html,
body {
  scrollbar-width: thin;
  scrollbar-color: #30084c #0f172a;
}

body {
  -ms-overflow-style: auto;
}
body{
    font-family: Arial, sans-serif;
    background:#0f172a;
    color:#f4f4f4;
    text-align:center;
    font-family:Arial,sans-serif;
    margin:0;
    padding:20px;
}
#contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
#contenedor2 {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.card{
    background:#30084c;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 10px #0000004d;
}
.card img{
    width: 100%;
}
.info{
    padding:15px;
}
.btn{
    display:inline-block;
    background:#00aaff;
    color:white;
    text-decoration:none;
    padding:10px 15px;
    border-radius:8px;
}
.footer{
    background: linear-gradient(180deg, #0f172a, #0f172a);
    padding: 30px 20px;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    border-top: 1px solid #0f172a;
    margin-top: 40px;
}

.footer p{
    margin: 10px 0;
    font-size: 16px;
}

.footer a{
    color: #a855f7;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover{
    color: #0f172a;
}
.titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #00fbff;
  border: 2px solid #00fbff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}
.about-btn:hover {
  background: #00fbff;
  color: #333;
}
.about-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000cc;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.about-panel.active {
  opacity: 1;
  pointer-events: all;
}
.about-content {
  background: #1f1f1f;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 300px;
  border: 2px solid #00fbff;
}
.about-content h2 {
  color: #d000ff;
}
.about-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #d000ff;
  text-align: center;
}
.about-content hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 15px 0;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.links a {
  text-decoration: none;
  color: #00fbff;
  background: #333;
  width: auto;
  height: auto;
  margin: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 18px;
  transition: 0.3s;
  position: relative;
}
.links a::after {
  content: attr(title);
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #111;
  color: #00fbff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  border: 1px solid #00fbff;
}
.links a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.links a:hover {
  background: #00fbff;
  color: #111;
  transform: scale(1.08);
}