/* ===== CSS Variables ===== */
:root {
  --primary: #e31e24;
  --primary-dark: #c41a1f;
  --primary-light: #ff3b41;
  --primary-foreground: #ffffff;
  --background: #fafafa;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --radius: 0.375rem;
  --transition: 0.3s ease;
}

/* ===== Base Styles ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.hidden {
  display: none !important;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: #f5f5f5;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--muted);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all var(--transition);
  color: inherit;
}

.btn-icon:hover {
  background: rgba(255,255,255,0.2);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-lg);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-content {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-image {
    width: 3rem;
    height: 3rem;
  }
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .logo-name {
    font-size: 1.25rem;
  }
}

.logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .logo-subtitle {
    font-size: 0.875rem;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    gap: 0.5rem;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-link:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instagram-link,
.share-btn {
  display: none;
}

@media (min-width: 640px) {
  .instagram-link,
  .share-btn {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 4rem 0 0 0;
  background: var(--primary);
  z-index: 40;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-link.instagram {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 90vh;
  background: var(--primary);
  color: var(--primary-foreground);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 50%, rgba(227,30,36,0.8) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: white;
  filter: blur(60px);
}

.hero-shape.shape-1 {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  animation: fluid1 8s ease-in-out infinite;
}

.hero-shape.shape-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  animation: fluid2 10s ease-in-out infinite;
}

.hero-shape.shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 20rem;
  animation: fluid3 12s ease-in-out infinite;
}

@keyframes fluid1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes fluid2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(0.9); }
}

@keyframes fluid3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
  position: relative;
  padding: 3rem 0 5rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 5rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: 70vh;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-text {
  order: 2;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    order: 1;
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-line {
  display: block;
}

.hero-title-line.italic {
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-buttons .btn {
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.hero-stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.7;
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.3);
}

.hero-image-wrapper {
  order: 1;
  display: flex;
  justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    order: 2;
    justify-content: flex-end;
  }
}

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

.hero-image-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(16px);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-image {
  position: relative;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .hero-image {
    width: 20rem;
    height: 20rem;
  }
}

@media (min-width: 1024px) {
  .hero-image {
    width: 24rem;
    height: 24rem;
  }
}

@media (min-width: 1280px) {
  .hero-image {
    width: 28rem;
    height: 28rem;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.1);
}

.hero-badge-position {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: white;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 1.125rem;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  animation: bounce 2s infinite;
}

.scroll-down:hover {
  color: white;
}

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

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== Einblicke Section ===== */
.einblicke {
  padding: 4rem 0;
  background: var(--muted);
  overflow: hidden;
}

@media (min-width: 768px) {
  .einblicke {
    padding: 6rem 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: black;
  box-shadow: var(--shadow-lg);
  transform: rotate(var(--rotation, 0deg));
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 10;
}

.gallery-item.large {
  grid-column: span 1;
  grid-row: span 1;
}

@media (min-width: 768px) {
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item.wide {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .gallery-item.wide {
    grid-column: span 2;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

@media (min-width: 768px) {
  .gallery-item img {
    min-height: 250px;
  }

  .gallery-item.large img {
    min-height: 100%;
  }
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .gallery-overlay {
    padding: 1.5rem;
  }
}

.gallery-overlay h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .gallery-overlay h3 {
    font-size: 1.25rem;
  }
}

.gallery-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .gallery-overlay p {
    font-size: 1rem;
  }
}

/* ===== Topics Section ===== */
.topics {
  padding: 4rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .topics {
    padding: 6rem 0;
  }
}

.topics-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.topics-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.topics-shape.shape-1 {
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(227,30,36,0.05);
  animation: fluid1 8s ease-in-out infinite;
}

.topics-shape.shape-2 {
  bottom: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(227,30,36,0.05);
  animation: fluid3 12s ease-in-out infinite;
}

.topics-slider-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.slider-btn {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  flex-shrink: 0;
  z-index: 10;
  transition: all var(--transition);
}

@media (min-width: 768px) {
  .slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.slider-btn:hover:not(:disabled) {
  background: var(--muted);
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.topics-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.topics-slider::-webkit-scrollbar {
  display: none;
}

.topic-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

@media (min-width: 768px) {
  .topic-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (min-width: 1024px) {
  .topic-card {
    flex: 0 0 calc(33.333% - 0.75rem);
  }
}

.topic-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  background: rgba(227,30,36,0.5);
  border-radius: 9999px;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.topic-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-left: 0.75rem;
  transition: transform var(--transition);
}

.topic-card:hover .topic-icon {
  transform: scale(1.05);
}

[data-color="blue"] .topic-icon { background: rgba(59,130,246,0.1); color: #3b82f6; }
[data-color="orange"] .topic-icon { background: rgba(249,115,22,0.1); color: #f97316; }
[data-color="emerald"] .topic-icon { background: rgba(16,185,129,0.1); color: #10b981; }
[data-color="purple"] .topic-icon { background: rgba(168,85,247,0.1); color: #a855f7; }
[data-color="cyan"] .topic-icon { background: rgba(6,182,212,0.1); color: #06b6d4; }
[data-color="amber"] .topic-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
[data-color="rose"] .topic-icon { background: rgba(244,63,94,0.1); color: #f43f5e; }
[data-color="indigo"] .topic-icon { background: rgba(99,102,241,0.1); color: #6366f1; }
[data-color="teal"] .topic-icon { background: rgba(20,184,166,0.1); color: #14b8a6; }
[data-color="green"] .topic-icon { background: rgba(34,197,94,0.1); color: #22c55e; }
[data-color="slate"] .topic-icon { background: rgba(100,116,139,0.1); color: #64748b; }
[data-color="pink"] .topic-icon { background: rgba(236,72,153,0.1); color: #ec4899; }
[data-color="sky"] .topic-icon { background: rgba(14,165,233,0.1); color: #0ea5e9; }
[data-color="violet"] .topic-icon { background: rgba(139,92,246,0.1); color: #8b5cf6; }

.topic-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  margin-left: 0.75rem;
}

.topic-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-left: 0.75rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(115,115,115,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  width: 1.5rem;
  background: var(--primary);
}

.slider-dot:hover:not(.active) {
  background: rgba(115,115,115,0.5);
}

/* ===== Polls Section ===== */
.polls {
  padding: 4rem 0;
  background: var(--muted);
}

@media (min-width: 1024px) {
  .polls {
    padding: 6rem 0;
  }
}

.polls-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .polls-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.poll-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.poll-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.poll-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--muted);
  border: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition);
}

.poll-option:hover:not(.voted) {
  border-color: var(--primary);
  background: rgba(227,30,36,0.05);
}

.poll-option-text {
  position: relative;
  z-index: 1;
  font-weight: 500;
  color: var(--foreground);
}

.poll-option-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(227,30,36,0.15);
  transition: width 0.5s ease;
}

.poll-option-percent {
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.poll-option.voted {
  cursor: default;
}

.poll-option.selected {
  border-color: var(--primary);
}

.poll-option.selected .poll-option-text {
  color: var(--primary);
}

.poll-votes {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* ===== Instagram Section ===== */
.instagram-section {
  padding: 4rem 0;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .instagram-section {
    padding: 6rem 0;
  }
}

.instagram-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.instagram-shape {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(168,85,247,0.1);
  border-radius: 50%;
  filter: blur(60px);
  animation: fluid3 12s ease-in-out infinite;
}

.instagram-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .instagram-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.instagram-embed-container {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.instagram-embed-container h3 {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.instagram-media {
  background: white;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 1px rgba(0,0,0,0.5), 0 1px 10px rgba(0,0,0,0.15);
  margin: 1px;
  max-width: 540px;
  min-width: 326px;
  padding: 0;
  width: calc(100% - 2px);
  margin: 0 auto;
}

.instagram-placeholder {
  padding: 2rem;
  text-align: center;
}

.instagram-placeholder a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

.instagram-profile-card {
  display: block;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-radius: var(--radius);
  padding: 2rem;
  color: white;
  text-align: center;
  transition: transform var(--transition);
  height: 100%;
}

.instagram-profile-card:hover {
  transform: translateY(-4px);
}

.instagram-profile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  justify-content: center;
}

.instagram-profile-image {
  position: relative;
}

.instagram-profile-image img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.3);
}

@media (min-width: 1024px) {
  .instagram-profile-image img {
    width: 7rem;
    height: 7rem;
  }
}

.instagram-badge {
  position: absolute;
  bottom: -0.25rem;
  right: -0.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

@media (min-width: 1024px) {
  .instagram-badge {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.instagram-profile-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .instagram-profile-card h3 {
    font-size: 1.5rem;
  }
}

.instagram-profile-card p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.instagram-btn {
  background: white;
  color: #fd1d1d;
  padding: 0.875rem 2rem;
}

.instagram-btn:hover {
  background: rgba(255,255,255,0.9);
}

.instagram-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 2rem;
}

/* ===== Countdown Section ===== */
.countdown {
  padding: 2rem 0 3rem;
  background: var(--muted);
}

@media (min-width: 768px) {
  .countdown {
    padding: 3rem 0;
  }
}

.countdown-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(227,30,36,0.2);
  text-align: center;
}

@media (min-width: 768px) {
  .countdown-card {
    padding: 2rem;
  }
}

.countdown-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.countdown-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .countdown-title {
    font-size: 1.25rem;
  }
}

.countdown-timer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .countdown-timer {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .countdown-timer {
    gap: 1.5rem;
  }
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .countdown-value {
    width: 5rem;
    height: 5rem;
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .countdown-value {
    width: 6rem;
    height: 6rem;
    font-size: 2.25rem;
  }
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .countdown-label {
    font-size: 0.875rem;
  }
}

.countdown-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(115,115,115,0.5);
  align-self: flex-start;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .countdown-separator {
    font-size: 1.875rem;
    margin-top: 1.5rem;
  }
}

.desktop-only {
  display: none;
}

@media (min-width: 640px) {
  .desktop-only {
    display: block;
  }
}

.countdown-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Contact Section ===== */
.contact {
  padding: 4rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .contact {
    padding: 6rem 0;
  }
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(227,30,36,0.05);
  border-radius: 50%;
  filter: blur(60px);
  animation: fluid1 8s ease-in-out infinite;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info .section-title {
  text-align: left;
}

.contact-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(227,30,36,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item h4 {
  font-weight: 600;
  color: var(--foreground);
}

.contact-item a {
  color: var(--primary);
  transition: text-decoration var(--transition);
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-privacy {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(227,30,36,0.05);
  border-radius: var(--radius);
}

.contact-privacy h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-privacy p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-privacy a {
  color: var(--primary);
}

.contact-privacy a:hover {
  text-decoration: underline;
}

.contact-form-container {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .contact-form-container {
    padding: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--background);
  color: var(--foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
}

.form-group textarea {
  resize: none;
  min-height: 8rem;
}

.captcha-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.captcha-question {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: monospace;
  color: var(--foreground);
}

.captcha-container input {
  width: 6rem;
  text-align: center;
  font-family: monospace;
  font-size: 1.125rem;
}

.captcha-refresh {
  padding: 0.5rem;
  color: var(--muted-foreground);
  transition: color var(--transition);
}

.captcha-refresh:hover {
  color: var(--foreground);
}

.contact-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #22c55e;
}

.contact-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-success p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ===== Links Section ===== */
.links-section {
  padding: 4rem 0;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .links-section {
    padding: 6rem 0;
  }
}

.links-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.links-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.links-shape.shape-1 {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(227,30,36,0.05);
  animation: fluid1 8s ease-in-out infinite;
}

.links-shape.shape-2 {
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(227,30,36,0.05);
  animation: fluid2 10s ease-in-out infinite;
}

.links-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.links-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-column-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.links-column-title svg {
  color: var(--primary);
}

.link-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.link-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.link-icon.blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
.link-icon.red { background: rgba(227,30,36,0.1); color: var(--primary); }
.link-icon.green { background: rgba(34,197,94,0.1); color: #22c55e; }
.link-icon.amber { background: rgba(245,158,11,0.1); color: #f59e0b; }

.link-content h4 {
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.link-card:hover .link-content h4 {
  color: var(--primary);
}

.link-content h4 svg {
  opacity: 0;
  transition: opacity var(--transition);
}

.link-card:hover .link-content h4 svg {
  opacity: 1;
}

.link-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.announcement-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.announcement-card.important {
  border-left: 4px solid var(--primary);
}

.announcement-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.announcement-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(227,30,36,0.1);
  color: var(--primary);
}

.announcement-content {
  flex: 1;
}

.announcement-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.announcement-header h4 {
  font-weight: 600;
  color: var(--foreground);
}

.announcement-date {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgba(227,30,36,0.1);
  color: var(--primary);
}

.announcement-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Footer ===== */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-about h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-date {
  margin-top: 1rem;
  font-weight: 600;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-icons a:hover {
  background: rgba(255,255,255,0.2);
}

.spd-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.spd-link:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer-legal a:hover {
  opacity: 1;
}

/* ===== Share Modal ===== */
.share-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}

.share-modal-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 24rem;
  width: 100%;
  position: relative;
}

.share-modal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.share-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--muted);
  color: var(--foreground);
  font-weight: 500;
  transition: background var(--transition);
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.share-option:hover {
  background: var(--border);
}

.share-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.5rem;
  color: var(--muted-foreground);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.share-close:hover {
  background: var(--muted);
  color: var(--foreground);
}

/* ===== Animations ===== */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Utilities ===== */
@media (max-width: 767px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-desktop {
    display: none;
  }
}
