/* === FUENTES === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Open+Sans:wght@400;600&display=swap');

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(145deg, #fff0f8, #ffe6fa);
  color: #333;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}


/* === HEADER === */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1em 2em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ff66a5;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

#logo img {
  height: 50px;
  filter: drop-shadow(0 0 5px rgba(255, 0, 119, 0.3));
  transition: transform 0.3s ease;
}

#logo img:hover {
  transform: scale(1.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
}

nav li a {
  color: #ff1493;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

nav li a:hover {
  color: #d1008f;
  transform: scale(1.1);
}

#menu-icon {
  display: none;
}


/* === JUEGOS === */
main {
  padding: 120px 1em 2em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
}

.tease, .dirty, .strip {
  background: #ffffff;
  padding: 1.5em;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255, 0, 128, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tease:hover, .dirty:hover, .strip:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(255, 0, 128, 0.3);
}

.tease img, .dirty img, .strip img {
  border-radius: 10px;
}

.strip img:first-child {
  margin-bottom: 1em;
}


/* === FOOTER === */
.footer {
  margin-top: 4em;
  padding: 2em 1em;
  background: #f9f9f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  border-top: 2px solid #ffe6f0;
}

.footer img {
  height: 40px;
  transition: transform 0.3s ease;
}

.footer img:hover {
  transform: scale(1.1);
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    padding: 1em;
    border-radius: 10px;
    flex-direction: column;
    gap: 1em;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  #menu-icon {
    display: block;
    cursor: pointer;
  }

  nav:hover ul {
    display: flex;
  }
}