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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone-sized container - centered on desktop */
.phone-container {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000;
}

/* Video Background */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Content Container */
.content {
  position: relative;
  z-index: 2;
  padding: 60px 20px 40px;
  padding-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Profile Section */
.profile {
  text-align: center;
  margin-bottom: 35px;
}

.profile-pic {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.name {
  color: white;
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 22px;
  font-weight: 400;
  margin-top: 12px;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.7),
    0 0 10px rgba(0, 0, 0, 0.3);
}

.bio {
  color: white;
  font-size: 14px;
  margin-top: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-icon-wrapper {
  position: relative;
  width: 55px;
  height: 55px;
}

.social-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 55px;
  height: 55px;
  background: #111;
  clip-path: polygon(
    50% 0%, 61% 15%, 80% 5%, 75% 25%, 98% 30%,
    82% 45%, 95% 65%, 75% 65%, 80% 90%, 55% 75%,
    50% 100%, 40% 78%, 20% 90%, 28% 65%, 5% 65%,
    18% 45%, 2% 30%, 25% 25%, 20% 5%, 39% 15%
  );
  z-index: 0;
  transition: top 0.2s, left 0.2s;
}

.social-icon-wrapper:hover::before {
  top: 6px;
  left: 6px;
}

.social-icon {
  width: 55px;
  height: 55px;
  background: #E8D5A3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 26px;
  text-decoration: none;
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
  clip-path: polygon(
    50% 0%, 61% 15%, 80% 5%, 75% 25%, 98% 30%,
    82% 45%, 95% 65%, 75% 65%, 80% 90%, 55% 75%,
    50% 100%, 40% 78%, 20% 90%, 28% 65%, 5% 65%,
    18% 45%, 2% 30%, 25% 25%, 20% 5%, 39% 15%
  );
}

.social-icon-wrapper:hover .social-icon {
  transform: translate(-2px, -2px);
}

/* Link Buttons */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Link button wrapper for starburst shadow */
.link-btn-wrapper {
  position: relative;
  width: 100%;
}

.link-btn-wrapper::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  background: #111;
  clip-path: polygon(
    0% 15%, 2% 0%, 12% 10%, 22% 0%, 32% 8%, 42% 0%, 52% 8%, 62% 0%, 72% 8%, 82% 0%, 92% 10%, 100% 0%, 100% 15%,
    98% 30%, 100% 50%, 98% 70%, 100% 85%, 100% 100%, 92% 90%, 82% 100%, 72% 92%, 62% 100%, 52% 92%, 42% 100%, 32% 92%, 22% 100%, 12% 90%, 2% 100%, 0% 85%,
    2% 70%, 0% 50%, 2% 30%
  );
  z-index: 0;
  transition: top 0.2s, left 0.2s;
}

.link-btn-wrapper:hover::before {
  top: 7px;
  left: 7px;
}

.link-btn {
  display: flex;
  align-items: center;
  background: #E8D5A3;
  padding: 18px 22px;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
  clip-path: polygon(
    0% 15%, 2% 0%, 12% 10%, 22% 0%, 32% 8%, 42% 0%, 52% 8%, 62% 0%, 72% 8%, 82% 0%, 92% 10%, 100% 0%, 100% 15%,
    98% 30%, 100% 50%, 98% 70%, 100% 85%, 100% 100%, 92% 90%, 82% 100%, 72% 92%, 62% 100%, 52% 92%, 42% 100%, 32% 92%, 22% 100%, 12% 90%, 2% 100%, 0% 85%,
    2% 70%, 0% 50%, 2% 30%
  );
}

.link-btn-wrapper:hover .link-btn {
  transform: translate(-2px, -2px);
}

/* Hide shadow on podcast dropdown wrapper - shadow handled separately */
.link-btn-wrapper.podcast-dropdown::before {
  display: none;
}

/* Inner wrapper for podcast button shadow */
.podcast-btn-inner {
  position: relative;
  width: 100%;
}

.podcast-btn-inner::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  background: #111;
  clip-path: polygon(
    0% 15%, 2% 0%, 12% 10%, 22% 0%, 32% 8%, 42% 0%, 52% 8%, 62% 0%, 72% 8%, 82% 0%, 92% 10%, 100% 0%, 100% 15%,
    98% 30%, 100% 50%, 98% 70%, 100% 85%, 100% 100%, 92% 90%, 82% 100%, 72% 92%, 62% 100%, 52% 92%, 42% 100%, 32% 92%, 22% 100%, 12% 90%, 2% 100%, 0% 85%,
    2% 70%, 0% 50%, 2% 30%
  );
  z-index: 0;
  transition: top 0.2s, left 0.2s;
}

.podcast-btn-inner:hover::before {
  top: 7px;
  left: 7px;
}

.podcast-btn-inner:hover .link-btn {
  transform: translate(-2px, -2px);
}

/* Podcast platforms dropdown */
.podcast-platforms {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 15px 0;
  margin-top: 10px;
  position: relative;
  z-index: 10;
}

.podcast-platforms.active {
  display: flex;
}

.platform-icon-wrapper {
  position: relative;
  width: 45px;
  height: 45px;
}

.platform-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 45px;
  height: 45px;
  background: #111;
  clip-path: polygon(
    50% 0%, 61% 15%, 80% 5%, 75% 25%, 98% 30%,
    82% 45%, 95% 65%, 75% 65%, 80% 90%, 55% 75%,
    50% 100%, 40% 78%, 20% 90%, 28% 65%, 5% 65%,
    18% 45%, 2% 30%, 25% 25%, 20% 5%, 39% 15%
  );
  z-index: 0;
  transition: top 0.2s, left 0.2s;
}

.platform-icon-wrapper:hover::before {
  top: 5px;
  left: 5px;
}

.platform-icon {
  width: 45px;
  height: 45px;
  background: #E8D5A3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
  clip-path: polygon(
    50% 0%, 61% 15%, 80% 5%, 75% 25%, 98% 30%,
    82% 45%, 95% 65%, 75% 65%, 80% 90%, 55% 75%,
    50% 100%, 40% 78%, 20% 90%, 28% 65%, 5% 65%,
    18% 45%, 2% 30%, 25% 25%, 20% 5%, 39% 15%
  );
}

.platform-icon-wrapper:hover .platform-icon {
  transform: translate(-2px, -2px);
}

.link-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
  flex-shrink: 0;
}

.link-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.link-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.link-subtitle {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

/* Desktop - show phone outline */
@media (min-width: 500px) {
  body {
    padding: 20px;
  }

  .phone-container {
    min-height: calc(100vh - 40px);
    max-height: 900px;
    border-radius: 40px;
    box-shadow: 0 0 0 12px #1a1a1a, 0 20px 60px rgba(0, 0, 0, 0.5);
  }
}
