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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
  background-attachment: fixed;
  color: #e8e8e8;
  min-height: 100vh;
}

/* Header Styles */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 20, 60, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  color: #888;
  font-size: 1.25rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.social-icon:hover {
  color: #dc143c;
  transform: translateY(-2px);
}

.nav {
  display: flex;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  color: #888;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-link:hover {
  color: #e8e8e8;
}

.nav-link.active {
  color: #e8e8e8;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #dc143c, transparent);
}

/* Main Content */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.logo-display {
  position: relative;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
}

.main-logo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
  animation: flicker 3s infinite alternate;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
  }
  5% {
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.4));
  }
  10% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.6));
  }
  15% {
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
  }
  20% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
  }
  50% {
    opacity: 0.95;
    filter: drop-shadow(0 0 11px rgba(220, 20, 60, 0.45));
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
  }

  .header-left {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .nav {
    position: static;
    transform: none;
    width: 100%;
    justify-content: space-around;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .logo-display {
    padding: 2rem;
  }
}
