.elementor-6393 .elementor-element.elementor-element-e8902db{--display:flex;}.elementor-6393 .elementor-element.elementor-element-e8902db.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-6393 .elementor-element.elementor-element-e8902db{--width:366px;}}/* Start custom CSS for html, class: .elementor-element-1cce7c6 */:root {
  --primary: #ff2a6d;
  --primary-dark: #c41e5a;
  --accent: #ff6b9d;
  --bg-dark: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.75);
  --glow: rgba(255, 42, 109, 0.35);
  --telegram-blue: #0088cc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

.bg {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 35%, rgba(255, 42, 109, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 45%),
    linear-gradient(160deg, #0a0a0f 0%, #111018 100%);
  animation: bgShift 12s ease-in-out infinite;
  z-index: -1;
}

@keyframes bgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.topbar {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 16px;
  z-index: 100;
  height: 52px;
  display: flex;
  align-items: center;
}

.topbar-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-btn {
  background: var(--telegram-blue);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.topbar-btn:hover {
  background: #0077b5;
  transform: translateY(-1px);
}

.telegram-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.container {
  width: 100%;
  padding: 0 16px 40px;
  text-align: center;
}

.hero { margin: 8px 0 12px; }

.title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: -1.5px;
  margin-bottom: 2px;
  background: linear-gradient(135deg, #fff, var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 2.5s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 42, 109, 0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5)); }
}

.description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dim);
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 0 8px;
}

.join-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  text-decoration: none;
  padding: 24px 56px;
  border-radius: 14px;
  margin: 26px 0 14px;
  width: 100%;
  max-width: 420px;
  animation: pulseBounce 2s ease-in-out infinite;
}

@keyframes pulseBounce {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px var(--glow);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 6px 26px rgba(255, 42, 109, 0.5);
  }
}

.join-btn:hover {
  box-shadow: 0 8px 28px rgba(255, 42, 109, 0.55);
}

.gif-section { margin: 0; }

.gif-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.gif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 1 / 1;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
}

.gif-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gif-img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

@media (max-width: 480px) {
  .title { font-size: 2.4rem; }
  .description { font-size: 1.15rem; }
  .join-btn { 
    font-size: 1.75rem; 
    padding: 22px 48px;
    max-width: 100%;
    margin: 22px 0 12px;
  }
  .gif-box { max-width: 100%; }
  .gif-grid { gap: 1.5px; }
  .topbar-btn { font-size: 0.95rem; padding: 7px 14px; }
  .telegram-logo { width: 30px; height: 30px; }
  .container { padding: 0 12px 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}/* End custom CSS */