/* =============================================
   SWEETYCRAFT — style.css
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #05050a;
  --bg-card:    rgba(10, 10, 20, 0.7);
  --border:     rgba(124, 58, 237, 0.15);
  --border-hover: rgba(6, 182, 212, 0.4);
  --purple:     #a78bfa;
  --purple-dark:#7c3aed;
  --cyan:       #06b6d4;
  --cyan-light: #67e8f9;
  --pink:       #d946ef;
  --text:       #f8fafc;
  --text-muted: #94a3b8;
  --text-dark:  #475569;
  --font-pixel: 'Press Start 2P', monospace;
  --font-main:  'Outfit', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ---- BACKGROUND ANIMATED STARS ---- */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.background-glow-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-dark), #5b21b6);
  color: #fff;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(124, 58, 237, 0.55);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 5, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  filter: drop-shadow(0 0 8px var(--purple-dark));
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-accent {
  color: var(--purple);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.no-donate-badge {
  font-size: 9px;
  font-weight: 800;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 2px;
  vertical-align: middle;
}
.nav-discord-btn {
  background: rgba(88, 101, 242, 0.15) !important;
  color: #818cf8 !important;
  border: 1px solid rgba(88, 101, 242, 0.3) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-discord-btn:hover {
  background: #5865f2 !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: 
    linear-gradient(180deg, rgba(5, 5, 10, 0.3) 0%, rgba(5, 5, 10, 0.95) 100%),
    url('assets/hero_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.5;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(124, 58, 237, 0.2);
  top: -100px; left: 10%;
  animation: float-glow 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(6, 182, 212, 0.15);
  bottom: -50px; right: 10%;
  animation: float-glow 8s ease-in-out infinite alternate-reverse;
}
@keyframes float-glow {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-title {
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  color: #fff;
  text-shadow: 
    0 0 20px rgba(167, 139, 250, 0.4),
    0 0 60px rgba(167, 139, 250, 0.2);
  background: linear-gradient(180deg, #fff 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.highlight-cyan {
  color: var(--cyan-light);
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}
.hero-desc {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--text-muted);
  font-weight: 500;
  word-spacing: 1px;
  margin-bottom: 32px;
}
.star-sparkle {
  color: var(--purple);
  margin: 0 8px;
  display: inline-block;
  animation: twinkle 1.5s infinite alternate;
}
@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); }
}
.hero-cta-btn-wrapper {
  margin-bottom: 20px;
}
.btn-hero-apply {
  padding: 15px 36px;
  font-size: 16px;
  border-radius: 50px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-arrow {
  width: 14px; height: 14px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  opacity: 0.6;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ---- FEATURES ---- */
.features {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.features-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}
.feature-card-glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--glow-color) 20%, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover .feature-card-glow {
  opacity: 1;
}
.feature-icon-wrapper {
  color: var(--icon-color);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--icon-color) 60%, transparent));
}
.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- CONNECT SECTION ---- */
.connect {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.connect-card {
  background: rgba(10, 10, 20, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.1);
}
.connect-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pixel-art-side {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: transform var(--transition);
}
.connect-card:hover .pixel-art-side {
  transform: scale(1.05);
}
.enderman-svg, .sword-stand-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(217, 70, 239, 0.3));
}
.sword-stand-svg {
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.4));
}
.connect-center {
  flex: 1;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  z-index: 2;
}
.connect-header {
  font-size: 12px;
  font-family: var(--font-pixel);
  color: var(--purple);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.server-ips-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.ip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(124, 58, 237, 0.3);
  border-radius: 10px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.ip-row:hover {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.05);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}
.ip-row.copied {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.08) !important;
}
.ip-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.ip-val {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: #fff;
}
.copy-small-icon {
  color: var(--text-dark);
  transition: color var(--transition);
}
.ip-row:hover .copy-small-icon {
  color: var(--cyan-light);
}
.server-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.status-indicator {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-indicator 2s infinite;
}
@keyframes pulse-indicator {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}
.status-divider {
  opacity: 0.3;
}
.server-status-bar strong {
  color: #fff;
}
.btn-cta-apply {
  background: linear-gradient(135deg, var(--cyan), #0891b2);
  color: #000;
  border-radius: 8px;
  font-weight: 700;
  padding: 14px 40px;
  font-size: 15.5px;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.3);
}
.btn-cta-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.5);
  background: var(--cyan-light);
}

/* ---- NEWS SECTION ---- */
.news-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.news-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.news-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.news-header-icon {
  color: var(--purple);
}
.news-section-header h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.all-news-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan-light);
  transition: color var(--transition);
}
.all-news-link:hover {
  color: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
}
.news-img-container {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.news-image-mock {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition);
}
.news-card:hover .news-image-mock {
  transform: scale(1.05);
}
.end-bg {
  background-image: url('assets/news_end.webp');
  background-size: cover;
  background-position: center;
}
.house-bg {
  background-image: url('assets/news_house.webp');
  background-size: cover;
  background-position: center;
}
.opening-bg {
  background-image: url('assets/news_opening.webp');
  background-size: cover;
  background-position: center;
}
.news-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  color: #fff;
}
.badge-update { background: #7c3aed; }
.badge-new { background: #06b6d4; }
.badge-event { background: #10b981; }

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-size: 12px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.news-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.news-card-link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--purple);
  align-self: flex-start;
  transition: color var(--transition);
}
.news-card-link:hover {
  color: var(--cyan-light);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #020205;
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.3fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer-col-nav h4, .footer-col-discord h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-menu {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.footer-menu a {
  text-decoration: none;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-menu a:hover {
  color: #fff;
}
.footer-col-discord p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.btn-footer-discord {
  background: #5865f2;
  color: #fff;
  width: 100%;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}
.btn-footer-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dark);
  flex-wrap: wrap;
  gap: 16px;
}
.love-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.heart-icon {
  color: #ec4899;
}

/* ---- MODALS ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: #0b0b14;
  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  width: 90%;
  max-width: 520px;
  padding: 40px;
  position: relative;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-close-btn {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.modal-close-btn:hover {
  color: #fff;
}
.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.modal-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}
.apply-methods-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apply-card {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: all var(--transition);
}
.apply-tg {
  background: rgba(0, 136, 204, 0.04);
  color: #0088cc;
}
.apply-tg:hover {
  border-color: #0088cc;
  background: rgba(0, 136, 204, 0.08);
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.15);
  transform: translateY(-2px);
}
.apply-discord {
  background: rgba(88, 101, 242, 0.04);
  color: #5865f2;
}
.apply-discord:hover {
  border-color: #5865f2;
  background: rgba(88, 101, 242, 0.08);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.15);
  transform: translateY(-2px);
}
.apply-icon {
  flex-shrink: 0;
}
.apply-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.apply-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.apply-username {
  font-size: 11px;
  font-family: var(--font-pixel);
  opacity: 0.6;
}
.apply-card:hover .apply-username {
  opacity: 1;
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 14px;
  color: #fff;
  backdrop-filter: blur(20px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  opacity: 0;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5, 5, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    gap: 8px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-hamburger {
    display: flex;
  }
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .connect-card {
    padding: 30px 20px;
    flex-direction: column;
    gap: 30px;
  }
  .pixel-art-side {
    display: none;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card:last-child {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .features-row {
    grid-template-columns: 1fr;
  }
}

/* ---- Scroll Animation Classes ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}

/* ---- TOPS PREVIEW SECTION ---- */
.tops-preview-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.tops-preview-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.tops-preview-card:hover {
  border-color: var(--border-hover);
}
.tops-preview-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 70% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.tops-preview-content {
  flex: 1;
}
.tops-preview-eyebrow {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.tops-preview-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.tops-preview-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.tops-preview-art {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cup-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 768px) {
  .tops-preview-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 32px 24px;
    gap: 32px;
  }
  .tops-preview-art {
    width: 120px;
    height: 120px;
  }
}
