:root {
  --primary-color: #000000;
  --secondary-color: #0DFDB1;
  --background: #000000;
  --text: #111;
  --text2: #d1d1d1;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
  width: 100%;
}

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(13, 253, 177, 0.5);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(13, 253, 177, 0.7);
        }

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #1a1a1a 0%, #232525 50%, #1a1a1a 100%);
  background-attachment: fixed;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Wrapper für Sticky Fix */
body > * {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ========================================
   GLOBALE PARTICLES
   ======================================== */

.global-particles-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.global-particles-bg .particle {
  position: absolute;
  background: radial-gradient(circle, rgba(13, 253, 177, 0.6), transparent);
  border-radius: 50%;
  filter: blur(3px);
  animation: float-particle 20s infinite ease-in-out;
}

.global-particles-bg .particle:nth-child(1) { width: 5px; height: 5px; top: 10%; left: 10%; animation-delay: 0s; }
.global-particles-bg .particle:nth-child(2) { width: 8px; height: 8px; top: 20%; left: 70%; animation-delay: 2s; }
.global-particles-bg .particle:nth-child(3) { width: 4px; height: 4px; top: 30%; left: 30%; animation-delay: 4s; }
.global-particles-bg .particle:nth-child(4) { width: 6px; height: 6px; top: 40%; left: 80%; animation-delay: 1s; }
.global-particles-bg .particle:nth-child(5) { width: 5px; height: 5px; top: 50%; left: 20%; animation-delay: 3s; }
.global-particles-bg .particle:nth-child(6) { width: 7px; height: 7px; top: 60%; left: 60%; animation-delay: 5s; }
.global-particles-bg .particle:nth-child(7) { width: 4px; height: 4px; top: 70%; left: 40%; animation-delay: 2.5s; }
.global-particles-bg .particle:nth-child(8) { width: 6px; height: 6px; top: 80%; left: 85%; animation-delay: 4.5s; }
.global-particles-bg .particle:nth-child(9) { width: 8px; height: 8px; top: 85%; left: 25%; animation-delay: 1.5s; }
.global-particles-bg .particle:nth-child(10) { width: 5px; height: 5px; top: 90%; left: 65%; animation-delay: 3.5s; }

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.8; }
  50% { transform: translate(40px, -100px); opacity: 1; }
  90% { opacity: 0.8; }
  100% { transform: translate(-20px, -150px); opacity: 0; }
}

/* Content über Particles */
.hero, .quick-stats-bar, .partyboxen-section, 
.truss-divider, .events-section, .wrapp, footer {
  position: relative;
  z-index: 1;
}

/* ========================================
   HERO SECTION (UNVERÄNDERT)
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-css {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider-css img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlider 15s infinite;
}

.hero-slider-css img:nth-child(1) { animation-delay: 0s; }
.hero-slider-css img:nth-child(2) { animation-delay: 5s; }
.hero-slider-css img:nth-child(3) { animation-delay: 10s; }

@keyframes fadeSlider {
  0%, 40%, 100% { opacity: 0; }
  10%, 30% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,253,177,0.2), transparent);
  filter: blur(60px);
  animation: float-shape 10s ease-in-out infinite;
}

.hero-shape:nth-child(1) { width: 300px; height: 300px; top: 20%; left: 10%; }
.hero-shape:nth-child(2) { width: 400px; height: 400px; bottom: 20%; right: 10%; animation-delay: 3s; }
.hero-shape:nth-child(3) { width: 250px; height: 250px; top: 50%; left: 50%; animation-delay: 6s; }

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(30px, -30px) scale(1.2); opacity: 0.6; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,253,177,0.1);
  border: 1px solid rgba(13,253,177,0.3);
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #0DFDB1;
  font-size: 14px;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #0DFDB1, #fff, #0DFDB1);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.cursor-blink {
  display: inline-block;
  animation: blink 0.8s steps(1) infinite;
  color: #0DFDB1;
  font-weight: bold;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.hero-btn {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  color: #000;
  box-shadow: 0 10px 30px rgba(13,253,177,0.3);
}

.hero-btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13,253,177,0.5);
}

.hero-btn.secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: #0DFDB1;
  transform: translateY(-5px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
  font-size: 20px;
  color: rgba(13,253,177,0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   QUICK STATS BAR
   ======================================== */

.quick-stats-bar {
  background: rgba(13,253,177,0.05);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(13,253,177,0.2);
  border-bottom: 1px solid rgba(13,253,177,0.2);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.quick-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.quick-stat:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  box-shadow: 0 10px 25px rgba(13,253,177,0.3);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-content strong {
  font-size: 24px;
  color: white;
  font-weight: 900;
  line-height: 1;
}

.stat-content span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   PARTYBOXEN SECTION
   ======================================== */

.partyboxen-section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  box-shadow: 0 10px 25px rgba(255,107,107,0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
}

.partyboxen-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partyboxen-text {
  color: white;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(13,253,177,0.3);
  transform: translateX(10px);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
}

.feature-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.feature-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.cta-box {
  background: rgba(13,253,177,0.05);
  border: 1px solid rgba(13,253,177,0.2);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.cta-box p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
}

.cta-button {
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  color: #000;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(13,253,177,0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13,253,177,0.5);
}

.info-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid #0DFDB1;
  border-radius: 8px;
}

.info-notice i {
  color: #0DFDB1;
  font-size: 18px;
}

.info-notice small {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.5;
}

.partyboxen-image {
  position: relative;
  text-align: center;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,253,177,0.3), transparent);
  filter: blur(80px);
}

.partyboxen-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.partyboxen-image:hover img {
  transform: scale(1.05);
}

.image-badge {
  z-index: 2;
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(255,215,0,0.3);
}

/* ========================================
   TRUSS DIVIDER
   ======================================== */

.truss-divider {
  position: relative;
  height: 250px;
  overflow: hidden;
  width: 100%;
  margin: 100px 0;
}

.truss-line {
  position: absolute;
  width: 200%;
  height: 100px;
  overflow: hidden;
  left: -50%;
}

.truss-top {
  top: 15%;
  opacity: 0.5;
  transform: rotate(-2.5deg);
}

.truss-bottom {
  bottom: 15%;
  transform: rotate(2.5deg);
}

.truss-bg-scroll {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 400%;
  background: url('img/trussbabe.png') repeat-x;
  background-size: auto 100%;
}

.truss-bottom .truss-bg-scroll {
  animation: trussScrollLeft 60s linear infinite;
}

.truss-top .truss-bg-scroll {
  animation: trussScrollRight 45s linear infinite;
}

@keyframes trussScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

@keyframes trussScrollRight {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .truss-divider {
    height: 150px;
    margin: 50px 0;
  }
  
  .truss-line {
    height: 60px;
  }
}

/* ========================================
   EVENTS SECTION - KOMPLETT NEU
   ======================================== */

.events-section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.events-container {
  width: 100%;
}

/* Events Hero */
.events-hero {
  text-align: center;
  margin-bottom: 80px;
}

.events-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.events-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Badges */
.events-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.event-badge {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-badge:hover {
  transform: translateY(-3px);
}

.event-badge.badge-primary {
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  color: white;
  border-color: #0DFDB1;
}

.event-badge.badge-secondary {
  background: rgba(255,255,255,0.05);
  color: white;
}

.event-badge.badge-accent {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  border-color: #FF6B6B;
}

/* Stats - KOMPLETT NEU OHNE KREISE */
.events-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.event-stat-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(13,253,177,0.3);
  border-radius: 20px;
  padding: 40px 50px;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 200px;
}

.event-stat-card:hover {
  transform: translateY(-10px);
  border-color: #0DFDB1;
  box-shadow: 0 20px 40px rgba(13,253,177,0.3);
}

.stat-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #0DFDB1;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Event Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.event-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13,253,177,0.2);
  border-color: rgba(13,253,177,0.5);
}

.event-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

.event-card-badge.premium {
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  color: white;
}

.event-card-badge.popular {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
}

.event-card-badge.business {
  background: linear-gradient(135deg, #4158D0, #C850C0);
  color: white;
}

.event-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.1);
}

.event-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s;
}

.event-card:hover .event-card-overlay {
  opacity: 1;
}

.event-card-content {
  padding: 30px;
  color: white;
}

.event-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: white;
}

.event-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
}

.event-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.event-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.event-card-features span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-card-features i {
  color: #0DFDB1;
}

.event-card-btn {
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.event-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13,253,177,0.4);
}

/* Featured Project */
.featured-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 80px 0;
  padding: 60px;
  background: rgba(255,255,255,0.03);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}

.featured-content {
  color: white;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: white;
}

.featured-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
}

.featured-stats-mini {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.mini-stat strong {
  font-size: 24px;
  color: #0DFDB1;
  font-weight: 900;
  display: block;
}

.mini-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.featured-btn {
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.featured-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13,253,177,0.5);
}

.featured-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Events CTA */
.events-cta {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-radius: 30px;
  padding: 60px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 80px;
}

.cta-icon-big {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 35px;
  color: white;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  color: white;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(13,253,177,0.5);
}

.cta-btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: #0DFDB1;
  transform: translateY(-3px);
}

/* ========================================
   PRODUKTE SECTION (REVEAL)
   ======================================== */

.wrapp {
  position: relative;
  width: 100%;
  height: auto;
  padding: 100px 40px;
  z-index: 1;
  background: transparent;
  max-width: 1600px;
  margin: 0 auto;
}

.rv_title {
  margin-top: 0;
  margin-bottom: 80px;
  font-size: 40px;
  text-transform: uppercase;
  color: var(--text2);
  text-align: center;
}

.rv_title span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--secondary-color);
}

.reveal {
  padding: 50px 0;
  padding-top: 0;
}

.reveal__img {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 150px;
  width: 100%;
  height: auto;
  padding-bottom: 100px;
}

.reveal__img-item {
  position: relative;
  width: calc(50% - 75px);
  height: auto;
  padding-left: 53px;
  overflow: hidden;
  margin-bottom: 80px;
}

.reveal__img-item:nth-child(even) {
  transform: translateY(150px);
}

.reveal__img-num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 40px;
  color: var(--text2);
  writing-mode: vertical-lr;
  transform: scale(-1, -1);
}

.reveal__img-inner,
.reveal__img-bl {
  width: 100%;
  height: 550px;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.reveal__img-inner {
  background: transparent;
}

.reveal__img-bl {
  overflow: hidden;
}

.reveal__img-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.reveal__img-info {
  padding-top: 20px;
  color: var(--text2);
}

.reveal__img-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  color: white;
}

.reveal__img-artikelnummer {
  font-size: 12px;
  margin-bottom: 1px;
  opacity: 0.5;
}

.reveal__img-price {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.reveal__img-desc {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.reveal__label {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    z-index: 10;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.reveal__label.sale {
    background: linear-gradient(135deg, #ff4040, #ff6060);
    color: white;
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.reveal__label.neu {
    background: linear-gradient(135deg, #0DFDB1, #0ac799);
    color: #000;
    animation: labelPulse 2s ease-in-out infinite;
}

.reveal__label.neu i {
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reveal__label.beliebt {
    background: linear-gradient(135deg, #ff4500, #ff6347, #ff8c00);
    background-size: 200% 200%;
    color: white;
    animation: fireFlicker 0.8s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    25% { 
        background-position: 50% 50%;
        filter: brightness(1.2);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(0.9);
    }
    75% { 
        background-position: 50% 50%;
        filter: brightness(1.1);
    }
}

.reveal__label.beliebt i {
    animation: flameShake 0.5s ease-in-out infinite;
}

@keyframes flameShake {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-2px) scale(1.1); }
    50% { transform: translateY(0) scale(0.95); }
    75% { transform: translateY(-1px) scale(1.05); }
}

.reveal__label.preishammer {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    animation: electricShock 1.2s ease-in-out infinite;
}

@keyframes electricShock {
    0%, 90%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    92% { 
        transform: scale(1.15) rotate(2deg);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    }
    94% { 
        transform: scale(0.95) rotate(-2deg);
    }
    96% { 
        transform: scale(1.1) rotate(1deg);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.9), 0 0 50px rgba(255, 215, 0, 0.5);
    }
    98% { 
        transform: scale(1.05) rotate(-1deg);
    }
}

.reveal__label.preishammer i {
    animation: boltZap 1.2s ease-in-out infinite;
}

@keyframes boltZap {
    0%, 90%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    92%, 96% { 
        transform: scale(1.3);
        filter: brightness(2) drop-shadow(0 0 5px #ffd700);
    }
    94%, 98% { 
        transform: scale(0.9);
        filter: brightness(0.8);
    }
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta-button {
  display: inline-flex;
  padding: 20px 50px;
  background: linear-gradient(135deg, #0DFDB1, #0AD89A);
  color: #000;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(13,253,177,0.4);
  align-items: center;
  gap: 15px;
}

.final-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13,253,177,0.6);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .partyboxen-content,
  .featured-project {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .partyboxen-image {
    order: -1;
  }
  
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {

  .hero-cta {
    flex-direction: column;
    margin-bottom: 80px;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .quick-stats-bar {
    gap: 30px;
  }
  
  .quick-stat {
    width: calc(50% - 15px);
  }
  
  .events-stats {
    gap: 20px;
  }

  .event-stat-card {
    min-width: 150px;
    padding: 30px 40px;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }

  .featured-project {
    padding: 40px 30px;
  }

  .cta-buttons-group {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .reveal__img {
    flex-direction: column;
    row-gap: 60px;
  }

  .reveal__img-item {
    width: 100%;
    padding-left: 40px;
    transform: none !important;
    margin-bottom: 60px;
  }

  .reveal__img-inner,
  .reveal__img-bl {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .quick-stat {
    width: 100%;
  }

  .events-badges {
    gap: 10px;
  }

  .event-badge {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .event-stat-card {
    width: 100%;
  }

  .featured-stats-mini {
    flex-direction: column;
    gap: 15px;
  }

  .final-cta-button {
    padding: 15px 30px;
    font-size: 14px;
  }
}