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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  overflow-x: hidden;
  position: relative;
}

/* Experimental Navigation */
.nav-experimental {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 2px solid #ff00ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  gap: 40px;
}

.nav-logo-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.nav-logo-scaled {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px #00ff88);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 8px #00ff88); }
  50% { filter: drop-shadow(0 0 16px #ff00ff); }
}

.nav-accent {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4a148c, transparent);
}

.nav-list-experimental {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #e8e8e8;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00ff88);
  transition: width 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ff00ff;
  transform: skewX(-5deg);
}

.nav-button-experimental {
  background: linear-gradient(135deg, #ff00ff, #4a148c);
  color: #00ff88;
  border: none;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.nav-button-experimental::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00ff88;
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-button-experimental:hover::before {
  left: 0;
}

.nav-button-experimental:hover {
  color: #1a0033;
  transform: rotate(-2deg);
}

/* Hero Section - Asymmetrical */
.hero-experimental {
  margin-top: 80px;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #2d0052 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  padding: 60px 40px;
  gap: 30px;
}

.hero-logo-container {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-rotated {
  width: 280px;
  height: 280px;
  object-fit: contain;
  transform: rotate(-25deg) scaleX(1.3);
  filter: drop-shadow(-20px 20px 40px rgba(255, 0, 255, 0.3)) drop-shadow(10px -10px 40px rgba(0, 255, 136, 0.2));
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(-25deg) scaleX(1.3); }
  to { transform: rotate(-25deg) scaleX(1.3) rotateY(360deg); }
}

.hero-text-block-1 {
  grid-column: 5 / 13;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
}

.serif-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff00ff, #00ff88, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-accent-shape {
  grid-column: 5 / 9;
  grid-row: 3 / 5;
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 136, 0.05));
  clip-path: polygon(0% 0%, 100% 20%, 85% 100%, 0% 85%);
  border: 2px dashed #4a148c;
  transform: skewY(-10deg);
}

.hero-text-block-2 {
  grid-column: 1 / 5;
  grid-row: 4 / 6;
  display: flex;
  align-items: center;
}

.sans-text {
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 2px;
  color: #00ff88;
  text-transform: uppercase;
  line-height: 1.8;
}

.hero-floating-card {
  grid-column: 9 / 13;
  grid-row: 4 / 6;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(74, 20, 140, 0.2));
  border: 2px solid #ff00ff;
  padding: 40px;
  transform: rotate(3deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-floating-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(0, 255, 136, 0.3), transparent);
  transition: top 0.6s ease;
}

.hero-floating-card:hover::before {
  top: 100%;
}

.hero-floating-card:hover {
  transform: rotate(-3deg) translateY(-10px);
  border-color: #00ff88;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(255, 0, 255, 0.1));
  box-shadow: 0 20px 60px rgba(255, 0, 255, 0.2);
}

.card-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 24px;
  color: #e8e8e8;
  margin-bottom: 20px;
  line-height: 1.3;
}

.btn-experimental {
  background: linear-gradient(135deg, #00ff88, #4a148c);
  color: #1a0033;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.btn-experimental::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #ff00ff;
  transition: right 0.3s ease;
  z-index: -1;
}

.btn-experimental:hover::after {
  right: 0;
}

.btn-experimental:hover {
  color: #00ff88;
  transform: skewX(10deg);
}

/* Collections Section */
.collections-experimental {
  padding: 120px 40px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0033 50%, #0a0a0a 100%);
  position: relative;
}

.collections-grid-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.collections-title-area {
  position: relative;
  margin-bottom: 80px;
}

.section-title-experimental {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ff00ff;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 20px;
}

.title-accent {
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, #ff00ff, #00ff88, transparent);
  position: relative;
  animation: expand-accent 2s ease-in-out infinite;
}

@keyframes expand-accent {
  0%, 100% { width: 180px; }
  50% { width: 280px; }
}

.collections-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 30px;
  perspective: 1000px;
}

.collection-card {
  padding: 40px;
  border: 2px solid rgba(255, 0, 255, 0.3);
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateZ(0);
  overflow: hidden;
}

.collection-card-1 { grid-column: 1; grid-row: 1; transform: rotate(-2deg); }
.collection-card-2 { grid-column: 2; grid-row: 1 / 3; transform: rotate(1deg); }
.collection-card-3 { grid-column: 3; grid-row: 1; transform: rotate(-3deg); }
.collection-card-4 { grid-column: 1 / 3; grid-row: 2; transform: rotate(2deg); }
.collection-card-5 { grid-column: 3; grid-row: 2 / 4; transform: rotate(-1deg); }
.collection-card-6 { grid-column: 1 / 3; grid-row: 3; transform: rotate(1.5deg); }

.collection-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), transparent);
  transition: top 0.5s ease;
}

.collection-card:hover::before {
  top: 100%;
}

.collection-card:hover {
  transform: rotate(0deg) scale(1.05) skewY(-3deg);
  border-color: #00ff88;
  box-shadow: 0 30px 80px rgba(255, 0, 255, 0.4), inset 0 0 30px rgba(0, 255, 136, 0.1);
  filter: brightness(1.15);
}

.collection-number {
  font-size: 48px;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
}

.collection-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.collection-count {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 15px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}

.collection-description {
  font-size: 14px;
  font-style: italic;
  opacity: 0.7;
  line-height: 1.5;
}

/* Events Section */
.events-experimental {
  padding: 120px 40px;
  background: linear-gradient(45deg, #1a0033 0%, #0a0a0a 50%, #2d0052 100%);
  position: relative;
}

.events-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.events-title {
  margin-bottom: 80px;
  color: #00ff88;
}

.events-scattered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  perspective: 1200px;
}

.event-tile {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(74, 20, 140, 0.15));
  border: 2px dashed rgba(0, 255, 136, 0.4);
  padding: 35px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.event-tile-1 { transform: rotateY(-5deg) rotateX(3deg); }
.event-tile-2 { transform: rotateY(0deg) rotateX(0deg); }
.event-tile-3 { transform: rotateY(5deg) rotateX(3deg); }

.event-tile:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(255, 0, 255, 0.2));
  border: 2px dashed #ff00ff;
  transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 0, 255, 0.3);
}

.event-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: #00ff88;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.event-tile h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ff00ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-tile p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  font-style: italic;
}

/* Membership Section */
.membership-experimental {
  padding: 120px 40px;
  background: linear-gradient(180deg, #1a0033 0%, #0a0a0a 50%, #2d0052 100%);
  position: relative;
}

.membership-container {
  max-width: 1400px;
  margin: 0 auto;
}

.membership-title {
  margin-bottom: 80px;
  color: #ff00ff;
}

.membership-asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.plan {
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.2), rgba(255, 0, 255, 0.05));
  border: 2px solid rgba(0, 255, 136, 0.3);
  padding: 45px 35px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0) rotateZ(0deg);
}

.plan-1 { transform: translateX(30px) rotateZ(-2deg); }
.plan-3 { transform: translateX(-30px) rotateZ(2deg); }

.plan::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.plan:hover {
  transform: translateX(0) rotateZ(0deg) scale(1.05);
  border-color: #ff00ff;
  box-shadow: 0 30px 80px rgba(255, 0, 255, 0.3), 0 0 30px rgba(0, 255, 136, 0.2);
}

.plan:hover::after {
  opacity: 1;
}

.plan-featured {
  transform: scale(1.08) rotateZ(0deg);
  border: 2px solid #ff00ff;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(74, 20, 140, 0.25));
  box-shadow: 0 20px 60px rgba(255, 0, 255, 0.25);
}

.plan-marker {
  font-size: 28px;
  color: #00ff88;
  margin-bottom: 15px;
  font-weight: 700;
  animation: float-marker 3s ease-in-out infinite;
}

@keyframes float-marker {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.plan h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #e8e8e8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  color: #ff00ff;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  font-size: 13px;
  color: #999;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 0, 255, 0.1);
  transition: all 0.3s ease;
}

.plan-features li:hover {
  color: #00ff88;
  padding-left: 10px;
  border-bottom-color: #00ff88;
}

.btn-plan {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 136, 0.05));
  color: #e8e8e8;
  border: 2px solid #4a148c;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-plan::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff00ff, #00ff88);
  transition: top 0.4s ease;
  z-index: -1;
}

.btn-plan:hover::before {
  top: 0;
}

.btn-plan:hover {
  color: #1a0033;
  border-color: #00ff88;
  transform: skewY(-2deg);
}

.btn-plan-primary {
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.2), rgba(255, 0, 255, 0.15));
  border-color: #ff00ff;
  color: #00ff88;
}

.btn-plan-primary:hover {
  color: #1a0033;
}

/* Contact Section */
.contact-experimental {
  padding: 120px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #2d0052 100%);
  position: relative;
  overflow: hidden;
}

.contact-grid-experimental {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact-block {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(74, 20, 140, 0.1));
  border-left: 4px solid #ff00ff;
  padding: 40px;
  transition: all 0.4s ease;
  transform: translateY(0);
}

.contact-block-1 { transform: rotate(-1deg); }
.contact-block-3 { transform: rotate(1deg); }

.contact-block:hover {
  transform: rotate(0deg) translateY(-10px);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 0, 255, 0.15));
  border-left-color: #00ff88;
  box-shadow: 0 20px 50px rgba(255, 0, 255, 0.2);
}

.contact-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #ff00ff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.contact-block p {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
}

.contact-link {
  color: #00ff88;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff00ff;
  transition: width 0.3s ease;
}

.contact-link:hover::after {
  width: 100%;
}

.contact-link:hover {
  color: #ff00ff;
}

.contact-accent-block {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 255, 0.1), transparent);
  border-radius: 50%;
  z-index: 0;
  animation: pulse-contact 4s ease-in-out infinite;
}

@keyframes pulse-contact {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

/* Modal */
.modal-experimental {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-box-experimental {
  background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
  border: 2px solid #ff00ff;
  padding: 60px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 60px rgba(255, 0, 255, 0.4), inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.modal-close-experimental {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff00ff, #4a148c);
  border: none;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #00ff88;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-experimental:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #00ff88, #4a148c);
  color: #1a0033;
}

.modal-box-experimental h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #ff00ff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.modal-box-experimental form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-box-experimental input,
.modal-box-experimental select {
  background: rgba(10, 10, 10, 0.6);
  border: 2px solid rgba(0, 255, 136, 0.3);
  color: #e8e8e8;
  padding: 14px;
  font-family: inherit;
  font-size: 13px;
  transition: all 0.3s ease;
}

.modal-box-experimental input::placeholder,
.modal-box-experimental select::placeholder {
  color: #666;
}

.modal-box-experimental input:focus,
.modal-box-experimental select:focus {
  outline: none;
  border-color: #ff00ff;
  background: rgba(10, 10, 10, 0.8);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.modal-box-experimental button {
  background: linear-gradient(135deg, #ff00ff, #4a148c);
  color: #00ff88;
  border: none;
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modal-box-experimental button::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #00ff88;
  transition: right 0.3s ease;
  z-index: -1;
}

.modal-box-experimental button:hover::after {
  right: 0;
}

.modal-box-experimental button:hover {
  color: #1a0033;
  transform: skewX(-3deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-experimental {
    padding: 0 20px;
    gap: 20px;
  }

  .nav-logo-wrapper {
    width: 50px;
    height: 50px;
  }

  .nav-list-experimental {
    gap: 20px;
    font-size: 10px;
  }

  .nav-button-experimental {
    padding: 8px 15px;
    font-size: 10px;
  }

  .hero-experimental {
    padding: 40px 20px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .hero-logo-container {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .hero-logo-rotated {
    width: 150px;
    height: 150px;
  }

  .hero-text-block-1 {
    grid-column: 3 / 7;
    grid-row: 1 / 2;
  }

  .serif-title {
    font-size: 32px;
  }

  .hero-accent-shape {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
  }

  .hero-text-block-2 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .hero-floating-card {
    grid-column: 5 / 7;
    grid-row: 2 / 4;
    padding: 25px;
  }

  .collections-asymmetric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-card-2 { grid-column: 2; grid-row: 1 / 2; }
  .collection-card-5 { grid-column: 2; grid-row: 2 / 3; }
  .collection-card-6 { grid-column: 1 / 3; grid-row: 3; }

  .events-scattered {
    grid-template-columns: 1fr;
  }

  .membership-asymmetric-layout {
    grid-template-columns: 1fr;
  }

  .plan { transform: translateX(0) rotateZ(0deg); }

  .contact-grid-experimental {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-accent-block {
    display: none;
  }
}
