<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  /* ÐžÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð° - ÑÑ€ÐºÐ¸Ðµ ÑÐ¼Ð¾Ñ†Ð¸Ð¾Ð½Ð°Ð»ÑŒÐ½Ñ‹Ðµ Ñ†Ð²ÐµÑ‚Ð° */
  --color-bg-main: #0c0032; /* Ð“Ð»ÑƒÐ±Ð¾ÐºÐ¸Ð¹ ÑÐ¸Ð½Ð¸Ð¹ Ð´Ð»Ñ Ñ„Ð¾Ð½Ð° */
  --color-bg-secondary: #240090; /* ÐÐ°ÑÑ‹Ñ‰ÐµÐ½Ð½Ñ‹Ð¹ Ñ„Ð¸Ð¾Ð»ÐµÑ‚Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ Ð²Ñ‚Ð¾Ñ€Ð¸Ñ‡Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --color-dark: #3500d3; /* Ð¯Ñ€ÐºÐ¸Ð¹ Ð¸Ð½Ð´Ð¸Ð³Ð¾ Ð´Ð»Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð°ÑÑ‚Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --color-text-light: #fff; /* Ð‘ÐµÐ»Ñ‹Ð¹ Ð´Ð»Ñ Ñ‚ÐµÐºÑÑ‚Ð° Ð½Ð° Ñ‚ÐµÐ¼Ð½Ð¾Ð¼ Ñ„Ð¾Ð½Ðµ */
  --color-bg-content: #190061; /* Ð¢ÐµÐ¼Ð½Ð¾-Ñ„Ð¸Ð¾Ð»ÐµÑ‚Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚Ð½Ñ‹Ñ… Ð±Ð»Ð¾ÐºÐ¾Ð² */
  --color-cookie-bg: #ff00a0; /* Ð¯Ñ€ÐºÐ¸Ð¹ Ñ€Ð¾Ð·Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ Ð°ÐºÑ†ÐµÐ½Ñ‚Ð¾Ð² */
  --color-button-bg: #ff7700; /* ÐžÑ€Ð°Ð½Ð¶ÐµÐ²Ñ‹Ð¹ Ð´Ð»Ñ ÐºÐ½Ð¾Ð¿Ð¾Ðº Ð¸ Ð¸Ð½Ñ‚ÐµÑ€Ð°ÐºÑ‚Ð¸Ð²Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --border-radius: 15px; /* Ð£Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð²Ð°ÐµÐ¼ ÑÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð¸Ðµ Ð´Ð»Ñ Ð±Ð¾Ð»ÐµÐµ ÑÐ¾Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð²Ð¸Ð´Ð° */
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: var(--color-bg-main);
  background-image: radial-gradient(circle at 10% 20%, var(--color-bg-main) 0%, #000 90%);
  color: var(--color-text-light);
}

.container {
  background: linear-gradient(135deg, rgba(36, 0, 144, 0.4) 0%, rgba(53, 0, 211, 0.1) 100%);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

header {
  background: linear-gradient(90deg, var(--color-dark) 0%, #5000ff 100%);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

header h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 0, 160, 0.8), 0 0 20px rgba(255, 0, 160, 0.4);
  font-weight: 800;
}

section {
  background-color: var(--color-bg-content);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--color-cookie-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

footer {
  background: linear-gradient(90deg, #240090 0%, var(--color-dark) 100%);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

footer a {
  position: relative;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-cookie-bg);
}

footer a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--color-cookie-bg);
  transition: width 0.3s ease;
}

footer a:hover:after {
  width: 100%;
}

.publicaciones {
  gap: 20px;
}

.publicacion {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, rgba(53, 0, 211, 0.7) 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publicacion:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 160, 0.3);
}

.publicacion img {
  filter: saturate(1.3) contrast(1.1);
  transition: transform 0.5s ease;
}

.publicacion:hover img {
  transform: scale(1.05);
}

.resena {
  background: rgba(12, 0, 50, 0.6);
  border-radius: var(--border-radius);
  padding: 15px;
  border-left: 3px solid var(--color-cookie-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#cookie-popup {
  background: linear-gradient(135deg, var(--color-cookie-bg) 0%, #8b00ff 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#cookie-popup button {
  background: linear-gradient(90deg, var(--color-button-bg) 0%, #ff9a00 100%);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#cookie-popup button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

a {
  color: var(--color-button-bg);
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-cookie-bg);
}

.articles {
  gap: 20px;
}

.article {
  background: rgba(25, 0, 97, 0.7);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--color-button-bg);
}

.article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-top-color: var(--color-cookie-bg);
}

.logo {
  filter: drop-shadow(0 0 10px rgba(255, 0, 160, 0.8));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

:root {
  /* ÐžÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð° - ÑÑ€ÐºÐ¸Ðµ ÑÐ¼Ð¾Ñ†Ð¸Ð¾Ð½Ð°Ð»ÑŒÐ½Ñ‹Ðµ Ñ†Ð²ÐµÑ‚Ð° */
  --color-bg-main: #0c0032; /* Ð“Ð»ÑƒÐ±Ð¾ÐºÐ¸Ð¹ ÑÐ¸Ð½Ð¸Ð¹ Ð´Ð»Ñ Ñ„Ð¾Ð½Ð° */
  --color-bg-secondary: #240090; /* ÐÐ°ÑÑ‹Ñ‰ÐµÐ½Ð½Ñ‹Ð¹ Ñ„Ð¸Ð¾Ð»ÐµÑ‚Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ Ð²Ñ‚Ð¾Ñ€Ð¸Ñ‡Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --color-dark: #3500d3; /* Ð¯Ñ€ÐºÐ¸Ð¹ Ð¸Ð½Ð´Ð¸Ð³Ð¾ Ð´Ð»Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð°ÑÑ‚Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --color-text-light: #fff; /* Ð‘ÐµÐ»Ñ‹Ð¹ Ð´Ð»Ñ Ñ‚ÐµÐºÑÑ‚Ð° Ð½Ð° Ñ‚ÐµÐ¼Ð½Ð¾Ð¼ Ñ„Ð¾Ð½Ðµ */
  --color-bg-content: #190061; /* Ð¢ÐµÐ¼Ð½Ð¾-Ñ„Ð¸Ð¾Ð»ÐµÑ‚Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚Ð½Ñ‹Ñ… Ð±Ð»Ð¾ÐºÐ¾Ð² */
  --color-cookie-bg: #ff00a0; /* Ð¯Ñ€ÐºÐ¸Ð¹ Ñ€Ð¾Ð·Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ Ð°ÐºÑ†ÐµÐ½Ñ‚Ð¾Ð² */
  --color-button-bg: #ff7700; /* ÐžÑ€Ð°Ð½Ð¶ÐµÐ²Ñ‹Ð¹ Ð´Ð»Ñ ÐºÐ½Ð¾Ð¿Ð¾Ðº Ð¸ Ð¸Ð½Ñ‚ÐµÑ€Ð°ÐºÑ‚Ð¸Ð²Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --border-radius: 15px; /* Ð£Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð²Ð°ÐµÐ¼ ÑÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð¸Ðµ Ð´Ð»Ñ Ð±Ð¾Ð»ÐµÐµ ÑÐ¾Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð²Ð¸Ð´Ð° */

  /* Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ðµ Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ñ‹Ðµ Ð´Ð»Ñ ÑÑ„Ñ„ÐµÐºÑ‚Ð¾Ð² */
  --glow-primary: 0 0 15px rgba(255, 0, 160, 0.7);
  --glow-secondary: 0 0 20px rgba(255, 119, 0, 0.6);
  --transition-default: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: var(--color-bg-main);
  background-image: radial-gradient(circle at 10% 20%, var(--color-bg-main) 0%, #000 90%);
  color: var(--color-text-light);
  position: relative;
  overflow-x: hidden;
}

body:before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233500d3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.container {
  background: linear-gradient(135deg, rgba(36, 0, 144, 0.4) 0%, rgba(53, 0, 211, 0.1) 100%);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-default);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.container:before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent);
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  z-index: -1;
}

.container:hover:before {
  left: 150%;
  transition: all 1.3s ease;
}

header {
  background: linear-gradient(90deg, var(--color-dark) 0%, #5000ff 100%);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-cookie-bg), var(--color-button-bg), var(--color-cookie-bg));
  background-size: 200% 100%;
  animation: headerGlow 3s infinite linear;
  z-index: 1;
}

@keyframes headerGlow {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

header h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 0, 160, 0.8), 0 0 20px rgba(255, 0, 160, 0.4);
  font-weight: 800;
  position: relative;
  display: inline-block;
}

header h1:after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  text-shadow: 0 0 20px var(--color-cookie-bg);
  animation: h1Glow 2s infinite alternate;
}

@keyframes h1Glow {
  0% {
    opacity: 0.5;
    filter: blur(10px);
    transform: scale(1.1);
  }
  100% {
    opacity: 0.2;
    filter: blur(20px);
    transform: scale(1.15);
  }
}

section {
  background-color: var(--color-bg-content);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--color-cookie-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

footer {
  background: linear-gradient(90deg, #240090 0%, var(--color-dark) 100%);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

footer a {
  position: relative;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-cookie-bg);
}

footer a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--color-cookie-bg);
  transition: width 0.3s ease;
}

footer a:hover:after {
  width: 100%;
}

.publicaciones {
  gap: 20px;
}

.publicacion {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, rgba(53, 0, 211, 0.7) 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: var(--transition-default);
  position: relative;
  z-index: 1;
}

.publicacion:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(255, 0, 160, 0.1),
    transparent 30%
  );
  animation: publicacionRotate 10s linear infinite;
  z-index: -1;
}

@keyframes publicacionRotate {
  100% {
    transform: rotate(1turn);
  }
}

.publicacion:after {
  content: '';
  position: absolute;
  inset: 3px;
  background: inherit;
  border-radius: calc(var(--border-radius) - 3px);
  z-index: -1;
}

.publicacion:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 160, 0.3);
}

.publicacion img {
  filter: saturate(1.3) contrast(1.1);
  transition: all 0.5s ease;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.publicacion:hover img {
  transform: scale(1.05) rotate(2deg);
  filter: saturate(1.5) contrast(1.2) brightness(1.1);
}

.resena {
  background: rgba(12, 0, 50, 0.6);
  border-radius: var(--border-radius);
  padding: 15px;
  border-left: 3px solid var(--color-cookie-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#cookie-popup {
  background: linear-gradient(135deg, var(--color-cookie-bg) 0%, #8b00ff 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: popupPulse 2s infinite alternate;
  transform-origin: center bottom;
}

@keyframes popupPulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 rgba(255, 0, 160, 0);
  }
  100% {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 160, 0.3);
  }
}

#cookie-popup button {
  background: linear-gradient(90deg, var(--color-button-bg) 0%, #ff9a00 100%);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#cookie-popup button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

#cookie-popup button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 119, 0, 0.5);
}

#cookie-popup button:hover:before {
  left: 100%;
}

a {
  color: var(--color-button-bg);
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-cookie-bg);
}

.articles {
  gap: 20px;
}

.article {
  background: rgba(25, 0, 97, 0.7);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-default);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
  border-top: 3px solid var(--color-button-bg);
}

.article:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-button-bg), var(--color-cookie-bg));
  transition: width 0.4s ease;
  z-index: 2;
}

.article:hover:before {
  width: 100%;
}

.article:after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--color-cookie-bg);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease;
  box-shadow: var(--glow-primary);
}

.article:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 0, 160, 0.2);
}

.article:hover:after {
  opacity: 1;
  transform: scale(1);
}

.logo {
  filter: drop-shadow(0 0 10px rgba(255, 0, 160, 0.8));
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  padding: 10px;
  z-index: 1;
}

.logo:before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, transparent 20%, rgba(255, 0, 160, 0.2) 40%, rgba(255, 119, 0, 0.2) 60%, transparent 80%);
  z-index: -1;
  transform: rotate(30deg) translateX(-100%);
  animation: logoShine 6s infinite linear;
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 0 15px rgba(255, 0, 160, 0.9)) brightness(1.1);
}

@keyframes logoShine {
  0% {
    transform: rotate(30deg) translateX(-100%);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  40% {
    opacity: 0;
  }
  100% {
    transform: rotate(30deg) translateX(200%);
    opacity: 0;
  }
}

:root {
  /* ÐžÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð° - ÑÑ€ÐºÐ¸Ðµ ÑÐ¼Ð¾Ñ†Ð¸Ð¾Ð½Ð°Ð»ÑŒÐ½Ñ‹Ðµ Ñ†Ð²ÐµÑ‚Ð° */
  --color-bg-main: #0c0032; /* Ð“Ð»ÑƒÐ±Ð¾ÐºÐ¸Ð¹ ÑÐ¸Ð½Ð¸Ð¹ Ð´Ð»Ñ Ñ„Ð¾Ð½Ð° */
  --color-bg-secondary: #240090; /* ÐÐ°ÑÑ‹Ñ‰ÐµÐ½Ð½Ñ‹Ð¹ Ñ„Ð¸Ð¾Ð»ÐµÑ‚Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ Ð²Ñ‚Ð¾Ñ€Ð¸Ñ‡Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --color-dark: #3500d3; /* Ð¯Ñ€ÐºÐ¸Ð¹ Ð¸Ð½Ð´Ð¸Ð³Ð¾ Ð´Ð»Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð°ÑÑ‚Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --color-text-light: #fff; /* Ð‘ÐµÐ»Ñ‹Ð¹ Ð´Ð»Ñ Ñ‚ÐµÐºÑÑ‚Ð° Ð½Ð° Ñ‚ÐµÐ¼Ð½Ð¾Ð¼ Ñ„Ð¾Ð½Ðµ */
  --color-bg-content: #190061; /* Ð¢ÐµÐ¼Ð½Ð¾-Ñ„Ð¸Ð¾Ð»ÐµÑ‚Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚Ð½Ñ‹Ñ… Ð±Ð»Ð¾ÐºÐ¾Ð² */
  --color-cookie-bg: #ff00a0; /* Ð¯Ñ€ÐºÐ¸Ð¹ Ñ€Ð¾Ð·Ð¾Ð²Ñ‹Ð¹ Ð´Ð»Ñ Ð°ÐºÑ†ÐµÐ½Ñ‚Ð¾Ð² */
  --color-button-bg: #ff7700; /* ÐžÑ€Ð°Ð½Ð¶ÐµÐ²Ñ‹Ð¹ Ð´Ð»Ñ ÐºÐ½Ð¾Ð¿Ð¾Ðº Ð¸ Ð¸Ð½Ñ‚ÐµÑ€Ð°ÐºÑ‚Ð¸Ð²Ð½Ñ‹Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
  --border-radius: 15px; /* Ð£Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð²Ð°ÐµÐ¼ ÑÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð¸Ðµ Ð´Ð»Ñ Ð±Ð¾Ð»ÐµÐµ ÑÐ¾Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð²Ð¸Ð´Ð° */

  /* Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ðµ Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ñ‹Ðµ Ð´Ð»Ñ ÑÑ„Ñ„ÐµÐºÑ‚Ð¾Ð² */
  --glow-primary: 0 0 15px rgba(255, 0, 160, 0.7);
  --glow-secondary: 0 0 20px rgba(255, 119, 0, 0.6);
  --transition-default: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: var(--color-bg-main);
  background-image: radial-gradient(circle at 10% 20%, var(--color-bg-main) 0%, #000 90%);
  color: var(--color-text-light);
  position: relative;
  overflow-x: hidden;
}

body:before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233500d3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.container {
  background: linear-gradient(135deg, rgba(36, 0, 144, 0.4) 0%, rgba(53, 0, 211, 0.1) 100%);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-default);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.container:before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent);
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  z-index: -1;
}

.container:hover:before {
  left: 150%;
  transition: all 1.3s ease;
}

header {
  background: linear-gradient(90deg, var(--color-dark) 0%, #5000ff 100%);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-cookie-bg), var(--color-button-bg), var(--color-cookie-bg));
  background-size: 200% 100%;
  animation: headerGlow 3s infinite linear;
  z-index: 1;
}

@keyframes headerGlow {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

header h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 0, 160, 0.8), 0 0 20px rgba(255, 0, 160, 0.4);
  font-weight: 800;
  position: relative;
  display: inline-block;
}

header h1:after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  text-shadow: 0 0 20px var(--color-cookie-bg);
  animation: h1Glow 2s infinite alternate;
}

@keyframes h1Glow {
  0% {
    opacity: 0.5;
    filter: blur(10px);
    transform: scale(1.1);
  }
  100% {
    opacity: 0.2;
    filter: blur(20px);
    transform: scale(1.15);
  }
}

section {
  background-color: var(--color-bg-content);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--color-cookie-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

footer {
  background: linear-gradient(90deg, #240090 0%, var(--color-dark) 100%);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

footer a {
  position: relative;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-cookie-bg);
}

footer a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--color-cookie-bg);
  transition: width 0.3s ease;
}

footer a:hover:after {
  width: 100%;
}

.publicaciones {
  gap: 20px;
}

.publicacion {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, rgba(53, 0, 211, 0.7) 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: var(--transition-default);
  position: relative;
  z-index: 1;
}

.publicacion:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(255, 0, 160, 0.1),
    transparent 30%
  );
  animation: publicacionRotate 10s linear infinite;
  z-index: -1;
}

@keyframes publicacionRotate {
  100% {
    transform: rotate(1turn);
  }
}

.publicacion:after {
  content: '';
  position: absolute;
  inset: 3px;
  background: inherit;
  border-radius: calc(var(--border-radius) - 3px);
  z-index: -1;
}

.publicacion:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 160, 0.3);
}

.publicacion img {
  filter: saturate(1.3) contrast(1.1);
  transition: all 0.5s ease;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.publicacion:hover img {
  transform: scale(1.05) rotate(2deg);
  filter: saturate(1.5) contrast(1.2) brightness(1.1);
}

.resena {
  background: rgba(12, 0, 50, 0.6);
  border-radius: var(--border-radius);
  padding: 15px;
  border-left: 3px solid var(--color-cookie-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#cookie-popup {
  background: linear-gradient(135deg, var(--color-cookie-bg) 0%, #8b00ff 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: popupPulse 2s infinite alternate;
  transform-origin: center bottom;
}

@keyframes popupPulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 rgba(255, 0, 160, 0);
  }
  100% {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 160, 0.3);
  }
}

#cookie-popup button {
  background: linear-gradient(90deg, var(--color-button-bg) 0%, #ff9a00 100%);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#cookie-popup button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

#cookie-popup button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 119, 0, 0.5);
}

#cookie-popup button:hover:before {
  left: 100%;
}

a {
  color: var(--color-button-bg);
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-cookie-bg);
}

.articles {
  gap: 20px;
}

.article {
  background: rgba(25, 0, 97, 0.7);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-default);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
  border-top: 3px solid var(--color-button-bg);
}

.article:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-button-bg), var(--color-cookie-bg));
  transition: width 0.4s ease;
  z-index: 2;
}

.article:hover:before {
  width: 100%;
}

.article:after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--color-cookie-bg);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease;
  box-shadow: var(--glow-primary);
}

.article:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 0, 160, 0.2);
}

.article:hover:after {
  opacity: 1;
  transform: scale(1);
}

.logo {
  display: inline-block;
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 2.8em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
  background: linear-gradient(90deg, #ff00a0, #ff7700, #3500d3, #ff00a0);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  position: relative;
  margin: 20px auto;
  filter: drop-shadow(0 0 10px rgba(255, 0, 160, 0.8));
  transition: all 0.5s ease;
  text-align: center;
  transform-style: preserve-3d;
  perspective: 1000px;
  max-width: 90%;
  z-index: 1;
}

.logo:before, .logo:after {
  content: 'PLINKO';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #ff00a0, #ff7700, #3500d3, #ff00a0);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 15px 30px;
  z-index: -1;
}

.logo:before {
  filter: blur(10px);
  opacity: 0.7;
  animation: logoPulse 2s infinite alternate;
}

.logo:after {
  text-shadow: 0 0 20px rgba(255, 0, 160, 0.8);
  filter: blur(15px);
  opacity: 0.5;
  animation: logoMove 6s infinite linear;
}

.logo:hover {
  transform: scale(1.05) rotateY(10deg);
  filter: drop-shadow(0 0 15px rgba(255, 0, 160, 0.9)) brightness(1.1);
}

.logo:hover:before {
  animation: logoPulse 1s infinite alternate;
}

@keyframes logoMove {
  0% {
    background-position: 0% 50%;
    transform: translateZ(-5px);
  }
  50% {
    background-position: 100% 50%;
    transform: translateZ(5px);
  }
  100% {
    background-position: 0% 50%;
    transform: translateZ(-5px);
  }
}

@keyframes logoPulse {
  0% {
    opacity: 0.5;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Ð”Ð¾Ð±Ð°Ð²Ð»ÑÐµÐ¼ ÑÑ„Ñ„ÐµÐºÑ‚ Ð¿Ð¾Ð´Ð»Ð¾Ð¶ÐºÐ¸ Ð´Ð»Ñ Ð»Ð¾Ð³Ð¾Ñ‚Ð¸Ð¿Ð° */
.logo-container {
  position: relative;
  text-align: center;
  margin: auto;
  padding: 10px;
  overflow: hidden;
}

.logo-container:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(53, 0, 211, 0.2);
  border-radius: var(--border-radius);
  box-shadow: 0 0 30px rgba(255, 0, 160, 0.5) inset;
  transform: skewX(-5deg);
  z-index: -1;
}</pre></body></html>