/* ---------------- GLOBAL STYLES ---------------- */
@font-face {
  font-family: 'SF Pro Display';
  src: url('https://fonts.cdnfonts.com/s/15835/SFPRODISPLAYBLACKITALIC.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Main container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------------- MOBILE WARNING ---------------- */
#mobile-warning {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 300px;
  background: rgba(30, 30, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  z-index: 9999;
  color: #e0e0e0;
  display: none;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#mobile-warning .warning-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

#mobile-warning .warning-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

#mobile-warning .warning-header strong {
  font-weight: 600;
  font-size: 1.2rem;
}

/* ---------------- HERO HEADER ---------------- */
.hero-header {
  background: linear-gradient(140deg, #1a1a1a 0%, #5D26C1 100%);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/api/placeholder/1920/1080') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.hero-logo {
  display: flex;
  align-items: center;
}

.hero-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  font-family: 'SF Pro Display', sans-serif;
  letter-spacing: 0.5px;
}

/* ---------------- MOBILE NAVIGATION TOGGLE ---------------- */
/* This button is hidden by default; shown only on small screens */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

/* Standard navigation menu */
.hero-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.hero-menu li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.hero-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.hero-menu li a:hover {
  color: #fff;
}

.hero-menu li a:hover::after {
  width: 100%;
}

.hero-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-social a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.hero-social a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 0.6s;
}

.btn-primary {
  background: #b04ed1;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(178, 78, 221, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 133, 221, 0.6);
  background: #5e76ff;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 0.9s;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-stats .stat::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-stats .stat:last-child::after {
  display: none;
}

.hero-stats .stat strong {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: white;
}

.hero-stats .stat span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ---------------- SECTION BASE STYLES ---------------- */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  size: 40px;
  background: url('pofilhe.png') center/no-repeat;
  opacity: 0.02;
  z-index: 0;
}

.section-content {
  position: relative;
  z-index: 2;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #9D4EDD;
  border-radius: 5px;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------- WELCOME SECTION ---------------- */
#welcome {
  background: #1a1a1a;
  padding: 6rem 0;
}

#welcome .section-content p {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  color: #b0b0b0;
}

#welcome .video-container {
  width: 70%;
  max-width: 800px; /* Optional: limits container size on large screens */
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  aspect-ratio: 16 / 9;
}

#welcome .video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

#welcome iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------------- FEATURED WORK SECTION ---------------- */
#featured-work {
  background: #222222;
}

#featured-work p.subtitle {
  text-align: center;
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: #2a2a2a;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.card:hover {
  transform: translateY(-5px);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.card iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: 8px;
}

.card h3 {
  margin-top: 0.8rem;
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 700;
}

.card p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.card small.views {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  color: #9D4EDD;
}

/* ---------------- FUTURISTIC HIGHLIGHTS SECTION ---------------- */
#futuristic-highlights {
  background: #1a1a1a;
}

.futuristic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  grid-template-areas:
    "left rightTop"
    "left rightBottom";
  max-width: 1200px;
  margin: 3rem auto 0;
  height: 600px;
}

.futuristic-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.futuristic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(90, 78, 221, 0.103);
}

.futuristic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.futuristic-card:hover img {
  transform: scale(1.05);
}

.futuristic-card.left {
  grid-area: left;
  position: relative;
}

.futuristic-card.right-top {
  grid-area: rightTop;
}

.futuristic-card.right-bottom {
  grid-area: rightBottom;
}

.futuristic-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.futuristic-card:hover::after {
  opacity: 1;
}

/* ---------------- TESTIMONIALS SECTION ---------------- */
#testimonials {
  background: #222222;
}

.testimonials-container {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 1rem 0;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollTestimonials 60s linear infinite;
  will-change: transform;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 6 - 1.5rem * 6));
  }
}

.testimonial-card {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 78, 221, 0.3);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.068);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9D4EDD;
  padding: 3px;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  color: #e0e0e0;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.testimonial-card small {
  display: block;
  color: #b0b0b0;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.testimonial-card p {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
}

.testimonial-card p::before {
  content: '"';
  font-size: 3rem;
  color: rgba(157, 78, 221, 0.2);
  position: absolute;
  top: -1rem;
  left: -0.75rem;
  z-index: -1;
  font-family: serif;
}

/* ---------------- CONTACT ME SECTION ---------------- */
#contact-me {
  background: #1a1a1a;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  width: 90%;
  max-width: 700px;
  margin: 3rem auto 0;
  background: rgba(40, 40, 40, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.cta {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #e0e0e0;
  font-weight: 500;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-links a {
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-links a i {
  font-size: 1.2rem;
}

.contact-links a[href*="instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.contact-links a[href*="instagram"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 39, 100, 0.4);
}

.contact-links a[href*="wa.me"] {
  background-color: #25D366;
  color: white;
}

.contact-links a[href*="wa.me"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ---------------- FOOTER ---------------- */
footer {
  text-align: center;
  padding: 2.5rem 0;
  background: #121212;
  font-size: 0.95rem;
  color: #808080;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.3), transparent);
}

/* ---------------- RESPONSIVE STYLES ---------------- */
@media (max-width: 1100px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .futuristic-grid {
    height: 500px;
  }
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 2.5rem;
  }
  
  .hero-stats .stat strong {
    font-size: 2rem;
  }
  
  .section h2 {
    font-size: 2.2rem;
  }
  
  #welcome .video-container {
    width: 90%;
  }
  
  .futuristic-grid {
    height: 400px;
  }
}

@media (max-width: 768px) and (min-width: 429px) {
  .hero-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .hero-stats .stat strong {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .futuristic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.5fr 0.5fr;
    grid-template-areas:
      "left"
      "rightTop"
      "rightBottom";
    height: auto;
    gap: 1rem;
  }
  
  .futuristic-card.left {
    aspect-ratio: 16/9;
  }
  
  .futuristic-card.right-top,
  .futuristic-card.right-bottom {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 600px) and (min-width: 429px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .hero-stats .stat::after {
    display: none;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- MOBILE STYLES (428px and below) ---------------- */
@media (max-width: 428px) {
  /* Container adjustments */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    margin: 0;
    box-sizing: border-box;
  }
  
  /* Fix the hero header positioning: use 100% instead of 100vw */
  .hero-header {
    width: 100%;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Align the navigation container properly */
  .hero-nav {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    margin: 0;
    position: relative;
  }
  
  /* Adjust main hero content */
  .hero-main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem;
    position: relative;
    box-sizing: border-box;
  }
  
  .hero-content {
    transform: none;
    animation: none;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    position: relative;
  }
  
  .hero-content h1,
  .hero-content p,
  .hero-cta,
  .hero-stats {
    transform: none;
    animation: none;
    opacity: 1;
  }
  
  /* Prevent body overflow */
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  /* ---------------- Mobile Navigation Toggle and Menu ---------------- */
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
  }
  
  /* Hide the desktop menu by default on mobile */
  .hero-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  
  /* Show menu when toggled */
  .hero-menu.active {
    display: flex;
  }
  
  .hero-menu li {
    width: 100%;
    margin: 0.5rem 0;
  }
  
  /* Adjust social links and alignment */
  .hero-logo,
  .hero-logo-text {
    text-align: center;
    width: 100%;
  }
  
  .hero-social {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .hero-main {
    padding: 2rem 1rem;
    text-align: center;
  }
}

/* ---------------- iPhone SE and Very Small Screens ---------------- */
@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-stats .stat strong {
    font-size: 1.4rem;
  }
  
  .section h2 {
    font-size: 1.6rem;
  }
  
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ---------------- Center-Aligned Header Fix for Mobile ---------------- */
@media (max-width: 428px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    overflow-x: hidden;
  }
  
  .hero-header {
    width: 100%;
    overflow-x: hidden;
  }
  
  .hero-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    width: 100%;
  }
  
  .hero-logo,
  .hero-logo-text {
    text-align: center;
  }
  
  .hero-menu li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .hero-social {
    justify-content: center;
    width: 100%;
  }
  
  .hero-main {
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
}
  
/* ---------------- Price Notice Styles ---------------- */
.price-notice {
  width: 70%;
  max-width: 600px;
  margin: 3rem auto 1rem;
  background: #ffffff24;
  backdrop-filter: blur(10px);
  border: 0.1px solid #535353;
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(92, 92, 92, 0.18);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards 0.3s;
  cursor: pointer;
}

.price-notice-content {
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.price-notice-icon {
  font-size: 2rem;
  animation: pulse 1s infinite;
  flex-shrink: 0;
}

.price-notice-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-weight: 700;
}

.price-notice-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
  margin-bottom: 0.8rem;
}

.price-notice-text p:last-child {
  margin-bottom: 0;
}

.highlight {
  color: #43aeff;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4e59d1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.price-notice:hover .highlight::after {
  transform: scaleX(1);
}

.price-notice-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(221, 78, 78, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-notice:hover .price-notice-hover {
  opacity: 1;
  transform: translateY(0);
}

.price-notice-hover p {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive style for the notice */
@media (max-width: 768px) and (min-width: 429px) {
  .price-notice-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .price-notice-icon {
    margin-bottom: 1rem;
  }
}

/* Portfolio credit styles */
.portfolio-credit {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #b0b0b0;
}

.portfolio-credit a {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-credit a:hover {
  text-decoration: underline;
}
