
:root {
  --ultra_new_planetary_galaxy_tilt: 60deg;
  --ultra_new_planetary_planet_compensation: -60deg;
  --ultra_new_planetary_sun_compensation: -60deg;
  --ultra_new_planetary_galaxy_scale: 0.7;
  --ultra_new_planetary_galaxy_x: 0px;
  --ultra_new_planetary_galaxy_y: 0px;
  --ultra_new_planetary_scene_size: min(100vw, 80vh);
  --ultra_new_planetary_orbit_scale: 1;
  --ultra_new_planetary_planet_min_size: 44px;
}

.featured .group:has(#ultra_new_planetary_solar_system.home-page-planetary) {
  overflow: visible !important;
}

#ultra_new_planetary_solar_system.home-page-planetary {
  --ultra_new_planetary_galaxy_tilt: 0deg;
  --ultra_new_planetary_planet_compensation: 0deg;
  --ultra_new_planetary_sun_compensation: 0deg;
  --ultra_new_planetary_galaxy_x: 0px;
  --ultra_new_planetary_galaxy_y: 0px;
  position: absolute !important;
  top: 50% !important;
  right: -10% !important;
  width: 70% !important;
  height: 100% !important;
  transform: translateY(-50%) !important;
  z-index: 1 !important;
}

.ultra_new_planetary_system_wrapper {
  width: 100%;
  max-width: 1303px;
  margin: 0 auto;
  height: 708px;
  padding: 45px 71px;
  position: relative;
  background: linear-gradient(180deg, black 0%, #004E9F 100%);
  box-shadow: 6px 6px 10px rgba(123, 97, 255, 0.25);
  overflow: hidden;
  border-radius: 10px;
  outline: 1px #C6BBFE solid;
  outline-offset: -1px;
}

.ultra_new_planetary_system_container {
  width: 100%;
  height: 100%;
  position: relative;
}


.ultra_new_planetary_space_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0B1426 0%, #1E3A8A 100%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 813"><defs><radialGradient id="spaceGrad" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.3)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23spaceGrad)"/></svg>');
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

.ultra_new_planetary_stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.7), transparent);
  background-repeat: repeat;
  background-size: 600px 400px;
  animation: ultra_new_planetary_star_scroll 40s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes ultra_new_planetary_star_scroll {
  from { background-position: 0 0; }
  to { background-position: -800px 0; }
}


#ultra_new_planetary_solar_system {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  z-index: 3;
  cursor: grab;
  touch-action: pan-y;
  pointer-events: none;
}

#ultra_new_planetary_solar_system.home-page-planetary {
  pointer-events: none;
}

#ultra_new_planetary_solar_system.dragging {
  cursor: grabbing;
}

#ultra_new_planetary_scene {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

#ultra_new_planetary_galaxy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) 
             translate(var(--ultra_new_planetary_galaxy_x), var(--ultra_new_planetary_galaxy_y))
             scale(var(--ultra_new_planetary_galaxy_scale)) 
             rotateX(var(--ultra_new_planetary_galaxy_tilt));
  transform-style: preserve-3d;
  z-index: 5;
  transition: transform 0.1s ease-out;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.featured #ultra_new_planetary_galaxy {
  --ultra_new_planetary_galaxy_scale: 0.8;
  top: 50%;
  left: 125%;
}

@media (max-width: 768px) {
  .featured #ultra_new_planetary_galaxy {
    --ultra_new_planetary_galaxy_scale: 0.8;
    top: 50%;
    left: 139%;
  }
}

#ultra_new_planetary_sun_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(var(--ultra_new_planetary_sun_compensation));
  width: 97px;
  height: 95px;
  z-index: 10;
  pointer-events: none;
}

#ultra_new_planetary_sun_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  background: #FAF7DB;
  animation: ultra_new_planetary_sun_glow 3s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

#ultra_new_planetary_sun_image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: #FAF7DB;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  filter: blur(12.5px);
  box-shadow: 25px 25px 25px rgba(250, 247, 219, 0.3);
  z-index: -1;
  border: none !important;
  outline: none !important;
}

@keyframes ultra_new_planetary_sun_glow {
  0% { 
    box-shadow: 0 0 50px rgba(250, 247, 219, 0.8), 0 0 100px rgba(255, 239, 43, 0.4);
    border-radius: 50% !important;
  }
  100% { 
    box-shadow: 0 0 80px rgba(250, 247, 219, 1), 0 0 150px rgba(255, 239, 43, 0.6);
    border-radius: 50% !important;
  }
}

#ultra_new_planetary_sun_logo_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
}

#ultra_new_planetary_sun_logo {
  width: 60px;
  height: auto;
  filter: brightness(0);
  color: #000000;
}


.ultra_new_planetary_orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-left: calc(-0.5 * var(--orbit-size));
  margin-top: calc(-0.5 * var(--orbit-size));
  transform-style: preserve-3d;
  z-index: 5;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.ultra_new_planetary_orbit:nth-child(1) {
  
}

.ultra_new_planetary_orbit:nth-child(2) {
  
}

.ultra_new_planetary_orbit:nth-child(3) {
  
}

.ultra_new_planetary_orbit:nth-child(4) {
  
}

.ultra_new_planetary_orbit:nth-child(5) {
  
}

.ultra_new_planetary_orbit:nth-child(6) {
  
}


.ultra_new_planetary_planet_orientation {
  position: absolute;
  transform-style: preserve-3d;
  will-change: left, top;
  pointer-events: auto;
  z-index: 19;
  cursor: pointer;
}

.featured #ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_planet_orientation {
  left: 50% !important;
  top: 50% !important;
  pointer-events: none !important;
  will-change: transform;
}

.featured #ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_planet {
  pointer-events: auto;
}

#ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_orbit:nth-child(2) .ultra_new_planetary_planet_orientation {
  animation: orbit-rotation-1 80s linear infinite !important;
}

#ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_orbit:nth-child(3) .ultra_new_planetary_planet_orientation {
  animation: orbit-rotation-2 95s linear infinite !important;
}

#ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_orbit:nth-child(4) .ultra_new_planetary_planet_orientation {
  animation: orbit-rotation-3 110s linear infinite !important;
}

#ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_orbit:nth-child(5) .ultra_new_planetary_planet_orientation {
  animation: orbit-rotation-4 125s linear infinite !important;
}

#ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_orbit:nth-child(6) .ultra_new_planetary_planet_orientation {
  animation: orbit-rotation-5 140s linear infinite !important;
}

#ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_orbit:nth-child(7) .ultra_new_planetary_planet_orientation {
  animation: orbit-rotation-6 160s linear infinite !important;
}

@keyframes orbit-rotation-1 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes orbit-rotation-2 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg); }
}

@keyframes orbit-rotation-3 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(-360deg); }
}

@keyframes orbit-rotation-4 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(250px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(250px) rotate(-360deg); }
}

@keyframes orbit-rotation-5 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(300px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(300px) rotate(-360deg); }
}

@keyframes orbit-rotation-6 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(350px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(350px) rotate(-360deg); }
}





@media (max-width: 768px) {
  .ultra_new_planetary_progress_container {
    width: calc(var(--planet-size) * 1.2); 
  }
  
  .ultra_new_planetary_progress_bar_visual {
    height: 16px; 
  }
  
  .ultra_new_planetary_progress_percentage {
    font-size: 8px; 
  }
  
  .ultra_new_planetary_progress_planets::before {
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }
  
  .ultra_new_planetary_progress_planets::after {
    width: 4px;
    height: 4px;
    margin-top: -2px;
  }
  
  .ultra_new_planetary_progress_animation_container::before {
    width: 4px;
    height: 4px;
    margin-top: -2px;
  }
}

@media (max-width: 480px) {
  .ultra_new_planetary_progress_container {
    width: calc(var(--planet-size) * 1.3); 
  }
  
  .ultra_new_planetary_progress_bar_visual {
    height: 14px;
  }
  
  .ultra_new_planetary_progress_percentage {
    font-size: 7px;
  }
}


.ultra_new_planetary_planet {
  position: absolute;
  width: var(--computed-planet-size, clamp(var(--ultra_new_planetary_planet_min_size), var(--planet-size), 72px));
  height: var(--computed-planet-size, clamp(var(--ultra_new_planetary_planet_min_size), var(--planet-size), 72px));
  
  margin-left: calc(-0.5 * var(--computed-planet-size, var(--planet-size)));
  margin-top: calc(-0.5 * var(--computed-planet-size, var(--planet-size)));
  
  transform: rotateX(var(--ultra_new_planetary_planet_compensation));
  border-radius: 50% !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-style: preserve-3d;
  z-index: 20;
  transition: transform 0.3s ease;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  pointer-events: auto;
  opacity: 1 !important;
  visibility: visible !important;
  
  
  image-rendering: auto;
  image-rendering: smooth;
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast;
  
  
  filter: none;
  
  
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  
  
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
}

.ultra_new_planetary_planet:hover {
  
  transform: scale(1.1) rotateX(var(--ultra_new_planetary_planet_compensation));
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
}

.ultra_new_planetary_planet.active {
  
  transform: scale(1.15) rotateX(var(--ultra_new_planetary_planet_compensation));
  filter: brightness(1.3) drop-shadow(0 0 30px rgba(255, 255, 255, 1));
  z-index: 21;
}


.ultra_new_planetary_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 9999;
  font-family: 'Unbounded', sans-serif;
}

.ultra_new_planetary_modal_backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
  backdrop-filter: blur(10px);
  z-index: 9998;
  pointer-events: auto;
  cursor: pointer;
}

.ultra_new_planetary_modal_close {
  position: absolute;
  top: 37px;
  right: 37px;
  width: 30px;
  height: 30.47px;
  background: #FFEF2B;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: black;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ultra_new_planetary_modal_close:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 239, 43, 0.5);
}

.ultra_new_planetary_modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 132px;
  z-index: 10001;
  pointer-events: none;
}

.ultra_new_planetary_modal_content > * {
  pointer-events: auto;
}

.ultra_new_planetary_modal_planet {
  width: 445px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ultra_new_planetary_modal_planet img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ultra_new_planetary_modal_card {
  width: 471px;
  padding: 28px 40px;
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ultra_new_planetary_modal_title {
  color: black;
  font-size: 20px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  line-height: 18px;
  margin: 0 0 16px 0;
  text-align: center;
}

.ultra_new_planetary_modal_rating_section {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.ultra_new_planetary_modal_rating {
  color: #004E9F;
  font-size: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
}

.ultra_new_planetary_modal_comments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ultra_new_planetary_modal_comment_icon {
  width: 16px;
  height: 15px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(199deg) brightness(104%) contrast(97%);
}

.ultra_new_planetary_modal_comments_text {
  color: #004E9F;
  font-size: 14px;
  font-family: 'Circe', sans-serif;
  font-weight: 400;
  line-height: 18px;
}

.ultra_new_planetary_modal_investment_btn {
  margin-bottom: 16px;
}

.ultra_new_planetary_modal_investment_btn button {
  width: 205px;
  padding: 9px 17px;
  border-radius: 5px;
  outline: 1px black solid;
  outline-offset: -0.5px;
  background: white;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
  text-align: center;
}

.ultra_new_planetary_modal_category_section {
  margin-bottom: 16px;
}

.ultra_new_planetary_modal_category {
  display: inline-block;
  padding: 9px 17px;
  background: #050505;
  border-radius: 5px;
  color: white;
  font-size: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
}


.ultra_new_planetary_modal_progress_container {
  width: 100%;
  height: 20px;
  margin-bottom: 16px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.ultra_new_planetary_modal_progress_bar_visual {
  width: 0%; 
  height: 100%;
  background: linear-gradient(90deg, #31D2C6 0%, #006EDF 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 0 5px rgb(255 255 255 / 50%),
    0 0 10px rgb(71 209 255 / 70%);
  transition: width 0.5s ease-in-out;
}

.ultra_new_planetary_modal_progress_animation_container {
  position: relative;
  width: 100%;
  height: 100%;
}

.ultra_new_planetary_modal_progress_planets {
  position: relative;
  width: 100%;
  height: 100%;
}

.ultra_new_planetary_modal_progress_planets::before,
.ultra_new_planetary_modal_progress_planets::after {
  content: '';
  position: absolute;
  top: 50%;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 70%);
  box-shadow: 0 0 8px rgb(255 255 255 / 80%);
  animation: ultra_new_planetary_modal_movePlanets 8s linear infinite;
}

.ultra_new_planetary_modal_progress_planets::before {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  left: 10%;
  animation-delay: 0s;
}

.ultra_new_planetary_modal_progress_planets::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  left: 60%;
  animation-delay: -4s;
}

.ultra_new_planetary_modal_progress_animation_container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 60%);
  box-shadow: 0 0 6px rgb(255 255 255 / 70%);
  animation: ultra_new_planetary_modal_movePlanets 10s linear infinite alternate;
  animation-delay: -2s;
}

@keyframes ultra_new_planetary_modal_movePlanets {
  0% {
    transform: translateX(0) translateY(-1px) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateX(20px) translateY(1px) scale(1.1);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-10px) translateY(0) scale(1);
    opacity: 0.8;
  }
  75% {
    transform: translateX(15px) translateY(-2px) scale(0.9);
    opacity: 1;
  }
  100% {
    transform: translateX(0) translateY(-1px) scale(1);
    opacity: 0.7;
  }
}

.ultra_new_planetary_modal_progress_percentage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #fff;
  font-size: 12px;
  z-index: 3;
  text-shadow: 0 1px 2px rgb(0 0 0 / 60%);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 5px;
  box-sizing: border-box;
}

.ultra_new_planetary_modal_description {
  color: black;
  font-size: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.ultra_new_planetary_modal_financing_section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ultra_new_planetary_modal_funding_goal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ultra_new_planetary_modal_funding_label {
  color: #004E9F;
  font-size: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: 0.08px;
}

.ultra_new_planetary_modal_funding_amount {
  color: #31D2C6;
  font-size: 25px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  line-height: 35px;
}

.ultra_new_planetary_modal_valuation {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 50px;
  outline: 1px #004E9F solid;
  outline-offset: -1px;
}

.ultra_new_planetary_modal_valuation_icon {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(199deg) brightness(104%) contrast(97%);
}

.ultra_new_planetary_modal_valuation_label,
.ultra_new_planetary_modal_valuation_amount {
  color: #004E9F;
  font-size: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: 0.08px;
}

.ultra_new_planetary_modal_actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.ultra_new_planetary_modal_details_btn {
  padding: 12px 35px;
  background: linear-gradient(0deg, #004E9F 0%, #006EDF 100%);
  border: none;
  border-radius: 10px;
  color: #F5F5F5;
  font-size: 16px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ultra_new_planetary_modal_details_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 78, 159, 0.4);
}

.ultra_new_planetary_modal_investors_info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px 8px 0;
}

.ultra_new_planetary_modal_investor_icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(31%) sepia(8%) saturate(748%) hue-rotate(202deg) brightness(94%) contrast(86%);
}

.ultra_new_planetary_modal_investors_text {
  color: #4E4F51;
  font-size: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
}


@media (max-width: 1200px) {
  .ultra_new_planetary_modal_content {
    gap: 50px;
  }
  
  .ultra_new_planetary_modal_planet {
    width: 350px;
    height: 330px;
  }
  
  .ultra_new_planetary_modal_card {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .ultra_new_planetary_modal_content {
    flex-direction: column;
    gap: 30px;
  }
  
  .ultra_new_planetary_modal_planet {
    width: 250px;
    height: 250px;
  }
  
  .ultra_new_planetary_modal_card {
    width: 320px;
    padding: 20px 25px;
  }
  
  .ultra_new_planetary_modal_progress_container {
    width: 270px;
  }
  
  .ultra_new_planetary_modal_progress_percentage {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .ultra_new_planetary_modal_content {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
  
  .ultra_new_planetary_modal_planet {
    width: 200px;
    height: 200px;
  }
  
  .ultra_new_planetary_modal_card {
    width: 280px;
    padding: 15px 20px;
  }
  
  .ultra_new_planetary_modal_title {
    font-size: 16px;
  }
  
  .ultra_new_planetary_modal_rating {
    font-size: 10px;
  }
  
  .ultra_new_planetary_modal_comments_text {
    font-size: 12px;
  }
  
  .ultra_new_planetary_modal_investment_btn button {
    width: 180px;
    padding: 7px 14px;
    font-size: 10px;
  }
  
  .ultra_new_planetary_modal_category {
    padding: 7px 14px;
    font-size: 10px;
  }
  
  .ultra_new_planetary_modal_progress_container {
    width: 240px;
    height: 16px;
  }
  
  .ultra_new_planetary_modal_progress_percentage {
    font-size: 9px;
  }
  
  .ultra_new_planetary_modal_description {
    font-size: 10px;
  }
  
  .ultra_new_planetary_modal_funding_amount {
    font-size: 20px;
    line-height: 28px;
  }
  
  .ultra_new_planetary_modal_valuation_amount {
    font-size: 10px;
  }
  
  .ultra_new_planetary_modal_details_btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .ultra_new_planetary_modal_investors_text {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .ultra_new_planetary_modal_content {
    gap: 15px;
    padding: 0 10px;
  }
  
  .ultra_new_planetary_modal_planet {
    width: 180px;
    height: 180px;
  }
  
  .ultra_new_planetary_modal_card {
    width: 250px;
    padding: 12px 15px;
  }
  
  .ultra_new_planetary_modal_title {
    font-size: 14px;
  }
  
  .ultra_new_planetary_modal_rating {
    font-size: 9px;
  }
  
  .ultra_new_planetary_modal_comments_text {
    font-size: 11px;
  }
  
  .ultra_new_planetary_modal_investment_btn button {
    width: 160px;
    padding: 6px 12px;
    font-size: 9px;
  }
  
  .ultra_new_planetary_modal_category {
    padding: 6px 12px;
    font-size: 9px;
  }
  
  .ultra_new_planetary_modal_progress_container {
    width: 220px;
    height: 14px;
  }
  
  .ultra_new_planetary_modal_progress_percentage {
    font-size: 8px;
  }
  
  .ultra_new_planetary_modal_description {
    font-size: 9px;
  }
  
  .ultra_new_planetary_modal_funding_amount {
    font-size: 18px;
    line-height: 24px;
  }
  
  .ultra_new_planetary_modal_valuation_amount {
    font-size: 9px;
  }
  
  .ultra_new_planetary_modal_details_btn {
    padding: 8px 20px;
    font-size: 12px;
  }
  
  .ultra_new_planetary_modal_investors_text {
    font-size: 9px;
  }
}


.ultra_new_planetary_all_startups_button {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #FFEF2B 0%, #FFD700 100%);
  border: none;
  border-radius: 25px;
  color: black;
  font-size: 14px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(255, 239, 43, 0.3);
}

.ultra_new_planetary_all_startups_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 239, 43, 0.4);
  background: linear-gradient(135deg, #FFD700 0%, #FFEF2B 100%);
}





#ultra_new_planetary_galaxy_selector {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 120px;
  z-index: 100;
  overflow: visible; 
}




.ultra_new_planetary_categories_container {
  position: absolute;
  
  width: 805px; 
  height: 100px;
  left: 50%;
  top: 0;
  transform: translateX(-50%); 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px; 
  scroll-behavior: smooth; 
}

.ultra_new_planetary_categories_container {
  overflow-x: auto !important;
  overflow-y: visible !important;
  white-space: nowrap !important;
  scrollbar-width: none !important;
  
  padding: 20px 30px;
}
.ultra_new_planetary_categories_container::-webkit-scrollbar {
  display: none;
}

.ultra_new_planetary_category_item.category-all {
  position: relative !important;
  order: -1; 
  margin-right: 0;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0;
  z-index: 200;
  background: none;
}


.ultra_new_planetary_category_item.category-all.selected .ultra_new_planetary_category_bg {
  width: 135px;
  height: 55px;
  object-fit: cover;
}


.ultra_new_planetary_category_item {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-right: 0; 
  flex: 0 0 auto;
  width: 55px;
  height: 55px;
  overflow: visible !important;
}


.ultra_new_planetary_category_item .ultra_new_planetary_category_bg,
.ultra_new_planetary_category_item .ultra_new_planetary_category_icon {
  transition: all 0.3s ease;
}


.ultra_new_planetary_category_item.selected {
  z-index: 104;
  width: 105px !important;
  height: 55px !important;
  overflow: visible !important;
}


.ultra_new_planetary_category_item.selected .ultra_new_planetary_category_bg {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
}


.ultra_new_planetary_category_item.selected .ultra_new_planetary_category_icon {
  width: 85% !important;
  height: 85% !important;
}


.ultra_new_planetary_category_item.category-all.selected {
  width: 70px !important;
  height: 40px !important;
}




.ultra_new_planetary_category_bg,
.ultra_new_planetary_category_icon {
  transition: all 0.3s ease;
}


.ultra_new_planetary_category_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  left: 0;
  top: 0;
  /* Используем WebP для оптимизации */
  background-image: url('/static/accounts/images/planetary_system/categories/category_bg.webp');
  background-size: cover;
  background-position: center;
}


.ultra_new_planetary_category_icon {
  position: relative;
  width: 80%;
  height: 80%;
  object-fit: contain;
  z-index: 2;
}


.ultra_new_planetary_nav_arrow {
  position: absolute;
  top: 35px;
  width: 31.17px;
  height: 31.17px;
  background: #FFEF2B;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 101;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 239, 43, 0.3);
}

.ultra_new_planetary_nav_left {
  left: 1px; 
}

.ultra_new_planetary_nav_right {
  right: 1px; 
}

.ultra_new_planetary_nav_arrow:hover {
  background: #FFF65C;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 239, 43, 0.5);
}





.ultra_new_planetary_nav_left_icon {
  width: 14px;
  height: 14px;
  background: url('../images/planetary_system/chevron_left.svg') center/contain no-repeat;
  clip-path: none;
}


.ultra_new_planetary_nav_right_icon {
  width: 14px;
  height: 14px;
  background: url('../images/planetary_system/chevron_right.svg') center/contain no-repeat;
  clip-path: none;
}


.ultra_new_planetary_selected_label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 95px;
  background: #050505;
  border-radius: 20px;
  padding: 9px 17px;
  color: white;
  font-size: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
  word-wrap: break-word;
  text-align: center;
  pointer-events: none;
  z-index: 102;
}


@media (max-width: 1400px) {
  .ultra_new_planetary_system_wrapper {
    max-width: 100%;
    padding: 30px 40px;
  }
  
  #ultra_new_planetary_scene {
    width: var(--ultra_new_planetary_scene_size);
    height: var(--ultra_new_planetary_scene_size);
  }
}

@media (max-width: 1200px) {
  .ultra_new_planetary_system_wrapper {
    padding: 25px 30px;
  }
  
  .ultra_new_planetary_modal_content {
    gap: 40px;
  }
  
  .ultra_new_planetary_modal_planet {
    width: 300px;
    height: 280px;
  }
  
  .ultra_new_planetary_modal_card {
    width: 350px;
    padding: 25px 30px;
  }
}

@media (max-width: 768px) {
  .ultra_new_planetary_system_wrapper {
    height: 500px;
    padding: 20px;
  }

  #ultra_new_planetary_scene {
    width: var(--ultra_new_planetary_scene_size);
    height: var(--ultra_new_planetary_scene_size);
  }

  
  .ultra_new_planetary_planet {}
  .ultra_new_planetary_orbit {}
  #ultra_new_planetary_sun_image {}

  .ultra_new_planetary_all_startups_button {
    top: 10px;
    left: 10px;
    padding: 8px 16px;
    font-size: 12px;
  }



  #ultra_new_planetary_galaxy_selector {
    width: 350px;
    height: 80px;
    bottom: 5px;
  }
  
  .ultra_new_planetary_categories_container {
    width: 330px; 
    height: 50px;
    gap: 3px; 
    padding-left: 4px;
  }
  
  .ultra_new_planetary_category_item {
    width: 40px !important;
    height: 40px !important;
  }

  .ultra_new_planetary_category_item.selected {
    width: 70px !important;
    height: 37px !important;
  }

  .ultra_new_planetary_nav_arrow {
    width: 25px;
    height: 25px;
    top: 25px;
  }

  .ultra_new_planetary_nav_left {
    left: 1px;
  }

  .ultra_new_planetary_nav_right {
    right: 1px;
  }

  .ultra_new_planetary_nav_arrow_icon {
    width: 6px;
    height: 10px;
  }

  .ultra_new_planetary_selected_label {
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
    font-size: 10px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .ultra_new_planetary_system_wrapper {
    height: 400px;
    padding: 15px;
  }

  #ultra_new_planetary_scene {
    width: var(--ultra_new_planetary_scene_size);
    height: var(--ultra_new_planetary_scene_size);
  }

  
  .ultra_new_planetary_planet {}
  .ultra_new_planetary_orbit {}
  #ultra_new_planetary_sun_image {}

  .ultra_new_planetary_all_startups_button {
    top: 5px;
    left: 5px;
    padding: 6px 12px;
    font-size: 10px;
  }



  #ultra_new_planetary_galaxy_selector {
    width: 280px;
    height: 70px;
    bottom: 3px;
  }
  
  .ultra_new_planetary_categories_container {
    width: 260px; 
    height: 45px;
    gap: 2px; 
    padding-left: 3px;
  }
  
  .ultra_new_planetary_category_item {
    width: 35px !important;
    height: 35px !important;
  }

  .ultra_new_planetary_category_item.selected {
    width: 60px !important;
    height: 31px !important;
  }

  .ultra_new_planetary_nav_arrow {
    width: 20px;
    height: 20px;
    top: 20px;
  }

  .ultra_new_planetary_nav_arrow_icon {
    width: 5px;
    height: 8px;
  }

  .ultra_new_planetary_selected_label {
    top: 58px;
    font-size: 9px;
    padding: 5px 10px;
  }
}

@media (max-width: 360px) {
  .ultra_new_planetary_system_wrapper {
    height: 350px;
    padding: 10px;
  }

  #ultra_new_planetary_scene {
    width: var(--ultra_new_planetary_scene_size);
    height: var(--ultra_new_planetary_scene_size);
  }

  
  .ultra_new_planetary_planet {}
  .ultra_new_planetary_orbit {}
  #ultra_new_planetary_sun_image {}

  .ultra_new_planetary_all_startups_button {
    top: 3px;
    left: 3px;
    padding: 5px 10px;
    font-size: 9px;
  }



  #ultra_new_planetary_galaxy_selector {
    width: 250px;
    height: 60px;
    bottom: 2px;
  }
  
  .ultra_new_planetary_categories_container {
    width: 230px; 
    height: 40px;
    gap: 1px; 
    padding-left: 2px;
  }
  
  .ultra_new_planetary_category_item {
    width: 30px !important;
    height: 30px !important;
  }

  .ultra_new_planetary_category_item.selected {
    width: 52px !important;
    height: 27px !important;
  }

  .ultra_new_planetary_nav_arrow {
    width: 18px;
    height: 18px;
    top: 18px;
  }

  .ultra_new_planetary_nav_arrow_icon {
    width: 4px;
    height: 7px;
  }

  .ultra_new_planetary_selected_label {
    top: 52px;
    font-size: 8px;
    padding: 4px 8px;
  }
}

@media (max-width: 390px) {
  .ultra_new_planetary_orbit:nth-of-type(n+5) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ultra_new_planetary_stars {
    animation: none;
  }
  .ultra_new_planetary_planet_orientation {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  #ultra_new_planetary_solar_system.home-page-planetary {
    --ultra_new_planetary_galaxy_scale: 0.8;
    right: -100px !important;
    width: 90% !important;
    height: 90% !important;
  }
  
  #ultra_new_planetary_solar_system.home-page-planetary #ultra_new_planetary_galaxy {
    --ultra_new_planetary_galaxy_scale: 0.75;
  }
  
  #ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_orbit {
    border: none !important;
  }
  
  .ultra_new_planetary_planet {
    z-index: 20 !important;
  }
  
  .ultra_new_planetary_planet_orientation {
    z-index: 19 !important;
  }
}

@media (max-width: 480px) {
  #ultra_new_planetary_solar_system.home-page-planetary {
    --ultra_new_planetary_galaxy_scale: 0.65;
    right: -80px !important;
    width: 100% !important;
    height: 85% !important;
  }
  
  #ultra_new_planetary_solar_system.home-page-planetary #ultra_new_planetary_galaxy {
    --ultra_new_planetary_galaxy_scale: 0.6;
  }
  
  #ultra_new_planetary_solar_system.home-page-planetary .ultra_new_planetary_orbit {
    pointer-events: none;
  }
}

@media (max-width: 360px) {
  #ultra_new_planetary_solar_system.home-page-planetary {
    --ultra_new_planetary_galaxy_scale: 0.55;
    right: -60px !important;
    width: 100% !important;
    height: 80% !important;
  }
  
  #ultra_new_planetary_solar_system.home-page-planetary #ultra_new_planetary_galaxy {
    --ultra_new_planetary_galaxy_scale: 0.5;
  }
}




