/* Predict2Play Landing Page - Custom Styles */
/* Matches web app: purple/blue gradient theme */

/* CSS Variables */
:root {
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* ============================================
   BASE STYLES
   ============================================ */

.body {
  font-family: var(--font-sans) !important;
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #831843 100%) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ============================================
   LEFT SIDE - iPhone Frame
   ============================================ */

.leftcontent {
  background: #0f0f1a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100vh !important;
}

.phone-container {
  padding: 2rem;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: #0a0a0a;
  border-radius: 45px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #333,
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    inset 0 0 0 2px #1a1a1a;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  background: #000;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================
   RIGHT SIDE - Content Area
   ============================================ */

.rightcontent {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #831843 100%) !important;
  padding: 40px !important;
  min-height: 100vh !important;
}

.content {
  padding: 0 !important;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.name {
  font-family: var(--font-sans) !important;
  font-weight: 800 !important;
  font-size: 2.5rem !important;
  background: linear-gradient(135deg, #c4b5fd, #93c5fd) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.2 !important;
}

.tagline,
.tagline .bold-text {
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  font-size: 1.25rem !important;
  color: #c4b5fd !important;
  margin-bottom: 1.5rem !important;
}

.bio {
  font-family: var(--font-sans) !important;
  color: #e9d5ff !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}

.bio p {
  margin-bottom: 1.25rem !important;
}

.bio strong {
  color: #fff !important;
  font-weight: 600 !important;
}

.bio h2 {
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-top: 1.75rem !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* ============================================
   LINKS SECTION
   ============================================ */

.links {
  margin-top: 2.5rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.links .w-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 2rem !important;
}

.links .column {
  flex: 1 !important;
  min-width: 120px !important;
  padding: 0 !important;
}

.links .text-block,
.links h3 {
  font-family: var(--font-sans) !important;
  color: #a78bfa !important;
  font-weight: 600 !important;
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 0.75rem !important;
}

.links .list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.links .list li {
  margin-bottom: 0.5rem !important;
}

.links .list a:not(.store-badge) {
  font-family: var(--font-sans) !important;
  color: #d8b4fe !important;
  font-weight: 400 !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.links .list a:not(.store-badge):hover {
  color: #fff !important;
}

/* Store badges */
.store-badge {
  display: block !important;
  margin: 0.35rem 0 !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.store-badge:hover {
  transform: translateY(-2px) !important;
  opacity: 0.85 !important;
}

.badge-image {
  height: 38px !important;
  width: auto !important;
  display: block !important;
}

/* ============================================
   CREDIT/FOOTER
   ============================================ */

.credit {
  margin-top: 2rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.credit,
.credit a {
  font-family: var(--font-sans) !important;
  color: rgba(167, 139, 250, 0.5) !important;
  font-size: 0.65rem !important;
}

.credit a:hover {
  color: #a78bfa !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 991px) {
  .leftcontent {
    min-height: 550px !important;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
    border-radius: 40px;
    padding: 10px;
  }

  .phone-notch {
    width: 85px;
    height: 24px;
    top: 10px;
    border-radius: 0 0 14px 14px;
  }

  .phone-screen {
    border-radius: 32px;
  }

  .content {
    padding: 2rem 1.5rem !important;
  }

  .name {
    font-size: 2rem !important;
  }
}

@media screen and (max-width: 767px) {
  .leftcontent {
    min-height: 450px !important;
  }

  .phone-container {
    padding: 1.5rem;
  }

  .phone-frame {
    width: 200px;
    height: 420px;
    border-radius: 35px;
    padding: 8px;
  }

  .phone-notch {
    width: 70px;
    height: 20px;
    top: 8px;
    border-radius: 0 0 12px 12px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .name {
    font-size: 1.75rem !important;
  }

  .tagline,
  .tagline .bold-text {
    font-size: 1rem !important;
  }

  .links .w-row {
    gap: 1.5rem !important;
  }

  .badge-image {
    height: 34px !important;
  }
}

@media screen and (max-width: 479px) {
  .leftcontent {
    min-height: 380px !important;
  }

  .phone-frame {
    width: 170px;
    height: 360px;
    border-radius: 30px;
    padding: 6px;
  }

  .phone-notch {
    width: 60px;
    height: 18px;
    top: 6px;
    border-radius: 0 0 10px 10px;
  }

  .phone-screen {
    border-radius: 25px;
  }

  .content {
    padding: 1.5rem 1rem !important;
  }

  .name {
    font-size: 1.5rem !important;
  }

  .links .column {
    min-width: 100% !important;
  }
}
