.elementor-3953 .elementor-element.elementor-element-5cfcd7a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8bd0ed3 *//* thotworld.com - Final Ultra-Light Landing Page */
/* Poppins Font | CSS-Only Animations | Mobile-First | Hot Aesthetic */

: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);
}

* { 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;
}

/* ===== Lightweight Animated Background ===== */
.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 - SHORTER & BALANCED ===== */
.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: 10px 20px; /* SHORTER */
  z-index: 100;
}

.topbar-content {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.35rem; /* BIGGER */
}

.logo {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.telegram-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block; /* Ensures proper alignment */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ===== Main Container ===== */
.container {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 24px 40px;
  text-align: center;
}

/* ===== Hero Text - BIGGER ===== */
.hero { margin: 20px 0 16px; }

.title {
  font-family: 'Poppins', sans-serif;
  font-size: 5.6rem; /* BIGGER */
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 12px;
  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: 2.1rem; /* BIGGER */
  font-weight: 400;
  color: var(--text-dim);
  max-width: 95%;
  margin: 0 auto;
}

/* ===== Animated Arrow Guide ===== */
.arrow-guide {
  display: flex;
  justify-content: center;
  margin: 14px 0 8px;
  animation: bounce 1.4s ease-in-out infinite;
}

.arrow {
  width: 28px;
  height: 28px;
  color: var(--accent);
  opacity: 0.9;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== Join Button - BIGGER TEXT ===== */
.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; /* BIGGER */
  text-decoration: none;
  padding: 24px 56px;
  border-radius: 14px;
  margin: 14px 0 26px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 20px var(--glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulseBtn 2s infinite;
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 42, 109, 0.5);
}

@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 4px 20px var(--glow); }
  50% { box-shadow: 0 4px 26px rgba(255, 42, 109, 0.45); }
}

/* ===== Square GIF Section ===== */
.gif-section { margin: 0; }

.gif-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px;
}

.gif-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.gif-placeholder:hover {
  background: rgba(255, 42, 109, 0.08);
  color: var(--accent);
}

.gif-hint {
  text-align: center;
  line-height: 1.4;
}

.gif-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ===== Mobile Optimizations ===== */
@media (max-width: 480px) {
  .title { font-size: 4.4rem; }
  .description { font-size: 1.75rem; }
  .arrow { width: 24px; height: 24px; }
  .join-btn { 
    font-size: 1.75rem; 
    padding: 22px 48px;
    max-width: 380px;
    margin: 12px 0 22px;
  }
  .gif-placeholder { padding: 12px; }
  .topbar-content { font-size: 1.2rem; }
  .telegram-logo { width: 30px; height: 30px; }
}

/* ===== Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}/* End custom CSS */