/*
Theme Name: Custom Theme
Description: Custom WordPress theme
Author: Your Name
Version: 1.0
*/

/* Override Bootstrap defaults to preserve theme styling */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jura", sans-serif !important;
  background-color: #010714 !important;
  color: white !important;
  overflow-x: hidden;
  line-height: 1.2 !important;
}

/* Ensure main content doesn't get Bootstrap container styling */
.landing-page,
.hero-section,
section {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Typography */
.gradient-text {
  background: linear-gradient(90deg, #3984ff 0%, #41b6e6 49.479%, #ffed00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bold {
  font-weight: 700;
}

.regular-text {
  color: white;
}

/* Landing Page Container */
.landing-page {
  min-height: 100vh;
  position: relative;
  width: 100%;
}

/* Hero Section */
.hero-section {
  display: flex;
  position: relative;
  height: 100dvh;
  width: 100%;
  min-height: 820px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border-radius: 0 0 50vw 50vw;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 85%;
  background: rgba(45, 45, 45, 0.3);
  border-radius: 0 0 50% 50%;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, #010714 0%, #001122 50%, #010714 100%);
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 64, 64, 0.4);
  z-index: 4;
}

.hero-blue-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 924px;
  height: 779px;
  z-index: 4;
  opacity: 1;
}

.hero-blue-bg svg {
  width: 100%;
  height: 100%;
}

.hero-animated-bg {
  position: absolute;
  top: -145px;
  left: 50%;
  transform: translateX(-50%);
  width: 924px;
  height: 924px;
  z-index: 2;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(57, 132, 255, 0.4) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(65, 182, 230, 0.3) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at center,
      rgba(255, 237, 0, 0.2) 0%,
      transparent 60%
    );
  border-radius: 50%;
  transform: rotate(180deg);
  animation: heroRotation 20s linear infinite;
  filter: blur(1px);
}

/* Hero Starfield Canvas */
#heroStarfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: auto;
  cursor: pointer;
  border-radius: 0 0 50vw 50vw;
  background: linear-gradient(90deg, #1a2d66 0%, #1a3a5a 49.479%, #665c00 100%);
}

@media (max-width: 768px) {
  #heroStarfield {
    background: #1a3a5a;
    background: -webkit-linear-gradient(90deg, #1a2d66 0%, #1a3a5a 50%, #665c00 100%);
    background: -moz-linear-gradient(90deg, #1a2d66 0%, #1a3a5a 50%, #665c00 100%);
    background: linear-gradient(90deg, #1a2d66 0%, #1a3a5a 50%, #665c00 100%) !important;
  }
}

@media (max-width: 499px) {
  #heroStarfield {
    touch-action: pan-y;
    height: 90vh;
  }
}

@keyframes heroRotation {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(540deg);
  }
}

.hero-logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: auto;
  z-index: 10;
}

.hero-logo svg {
  width: 100%;
  height: 100%;
}

.hero-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 85%;
  max-width: 95%;
  opacity: 0;
  animation: fadeInUp 2s ease-out 1s forwards;
  pointer-events: none;
}

.hero-title {
  font-size: 68px;
  line-height: 1.02;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-buttons {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 24px;
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 2s ease-out 1.5s forwards;
  pointer-events: auto;
}

.hero-btn {
  width: 183px;
  height: 60px;
  padding: 15px 30px;
  border: none;
  border-radius: 100px;
  background: #ffed00;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #000000;
}

.hero-btn span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}

.hero-btn .send-icon {
  width: 12px;
  height: 12px;
  stroke: #000000;
  stroke-width: 2;
}

.hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  color: #000000;
}

.hero-btn:hover span {
  color: #000000;
}

.hero-btn:hover .send-icon {
  stroke: #000000;
}

.skip-intro {
  position: fixed;
  bottom: 20px;
  right: 32px;
  z-index: 9999;
  pointer-events: auto;
}

.skip-btn {
  background: black;
  border: 1px solid white;
  border-radius: 100px;
  padding: 16px 24px;
  color: white;
  font-family: "Jura", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.skip-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Startups Section */
.startups-section {
  background-color: #010714;
  position: relative;
  overflow: hidden;
  padding-left: 20px;
}

.startups-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 150px;
}

.startups-info {
  flex: 1;
  color: white;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

/* Special layout for first startups section */
#first-startups-section .startups-container {
  position: relative;
  justify-content: center;
}

#first-startups-section .startups-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#first-startups-section .startups-info {
  position: relative;
  z-index: 2;
  text-align: left;
}

.startups-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.startups-title {
  font-family: "Jura", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 80px;
  color: white;
}

.startups-stat {
  font-family: "Jura", sans-serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 80px;
}

.startups-description {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: white;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 50%;
}

.startups-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.yellow-dot {
  width: 8px;
  height: 8px;
  background-color: #ffed00;
  border-radius: 50%;
}

.startups-visual {
  position: absolute;
  top: 50%;
  right: calc((100vw - 100%) / 2 * -1);
  transform: translateY(-50%);
  width: 50vw;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 50px 0 50px 0;
  z-index: 1;
}

.yellow-dots {
  width: 100%;
  height: auto;
  max-width: 600px;
}

/* Statistics Section 1 */
.stats-section-1 {
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 120px;
}

.large-stat {
  text-align: center;
  width: 1084px;
}

.stat-number {
  font-size: 120px;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}

.stat-text {
  font-size: 80px;
  line-height: 1;
  color: white;
  font-weight: 400;
}

.map-center {
  position: absolute;
  left: 30px;
  top: 0;
  width: 1054px;
  height: 857px;
  background: radial-gradient(
      ellipse at 40% 45%,
      rgba(57, 132, 255, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 55%,
      rgba(65, 182, 230, 0.2) 0%,
      transparent 40%
    );
  opacity: 0.6;
  border-radius: 50px;
  position: relative;
}

.map-center::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(255, 237, 0, 0.4) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(57, 132, 255, 0.3) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(65, 182, 230, 0.3) 0%,
      transparent 25%
    );
  border-radius: 30px;
  filter: blur(0.5px);
}

.map-info {
  position: absolute;
  left: 6px;
  top: 50px;
  width: 524px;
  height: 738px;
}

.map-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 256px;
}

.map-stat {
  font-size: 96px;
  line-height: 1;
  margin-bottom: 273px;
}

.map-description {
  font-size: 48px;
  line-height: 1.2;
  color: white;
  margin-bottom: 149px;
}

.map-indicator {
  width: 187px;
  height: 9px;
  background: linear-gradient(90deg, #3984ff 0%, #41b6e6 49.479%, #ffed00 100%);
  border-radius: 4.5px;
}

.map-dots {
  position: absolute;
  right: 0;
  top: 113px;
  width: 1054px;
  height: 857px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA1NCIgaGVpZ2h0PSI4NTciIHZpZXdCb3g9IjAgMCAxMDU0IDg1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSI1MjciIGN5PSI0MjgiIHI9IjQiIGZpbGw9IiNmZmVkMDAiLz48L3N2Zz4=")
    no-repeat center;
  background-size: contain;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.map-info-2 {
  position: absolute;
  left: 5px;
  top: 129px;
  width: 482px;
  height: 465px;
}

.map-dots-pattern {
  position: relative;
  width: 200px;
}

/* Hide extra startups-dots on desktop (shown only on mobile/tablet) */
.startups-info .startups-dots {
  display: none;
}

.dot {
  position: absolute;
  width: 9.42px;
  height: 9.42px;
  background: #ffed00;
  border-radius: 50%;
}

.dot:nth-child(1) {
  left: 0;
  top: 0;
}
.dot:nth-child(2) {
  left: 25px;
  top: 30px;
}
.dot:nth-child(3) {
  left: 50px;
  top: 0;
}
.dot:nth-child(4) {
  left: 75px;
  top: 30px;
}
.dot:nth-child(5) {
  left: 100px;
  top: 0;
}
.dot:nth-child(6) {
  left: 125px;
  top: 30px;
}
.dot:nth-child(7) {
  left: 150px;
  top: 0;
}
.dot:nth-child(8) {
  left: 175px;
  top: 30px;
}

.circle-accent {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid #ffed00;
  border-radius: 50%;
  background: rgba(255, 237, 0, 0.2);
}

.circle-accent:nth-child(9) {
  left: 14px;
  top: 19px;
}
.circle-accent:nth-child(10) {
  left: 88px;
  top: -11px;
}
.circle-accent:nth-child(11) {
  left: 164px;
  top: 19px;
}

.map-dots-pulse {
  position: absolute;
  right: 0;
  top: 0;
  width: 1054px;
  height: 857px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA1NCIgaGVpZ2h0PSI4NTciIHZpZXdCb3g9IjAgMCAxMDU0IDg1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSI1MjciIGN5PSI0MjgiIHI9IjgiIGZpbGw9IiNmZmVkMDAiIG9wYWNpdHk9IjAuOCIvPjwvc3ZnPg==")
    no-repeat center;
  background-size: contain;
  animation: pulseFast 1.5s ease-in-out infinite;
}

@keyframes pulseFast {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Circle Stats Section */
.circle-stats {
  height: 1194px;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url("./images/circle_europe_2023.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.circle-outer-wrapper {
  width: 1000px;
  height: 1000px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
}

.circle-container {
  width: 800px;
  height: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-arc {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
}

.circle-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at center,
      transparent 30%,
      rgba(57, 132, 255, 0.1) 35%,
      transparent 45%
    ),
    radial-gradient(
      circle at center,
      transparent 45%,
      rgba(65, 182, 230, 0.08) 50%,
      transparent 60%
    ),
    radial-gradient(
      circle at center,
      transparent 60%,
      rgba(255, 237, 0, 0.05) 65%,
      transparent 75%
    );
  border-radius: 50%;
  z-index: 1;
}

.circle-container::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  z-index: 2;
}

.year-label {
  font-size: 42px;
  line-height: 1.2;
  color: white;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.circle-text {
  font-size: 42px;
  line-height: 1.2;
  color: white;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

.circle-stat {
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 80%;
}

/* Global AI Section */
.global-ai-section {
  height: 140dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.global-ai-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 140dvh;
  background-image: url("./images/global_ai_circle.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.global-text {
  position: relative;
  z-index: 2;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #010714;
  text-align: center;
  width: 600px;
  height: 600px;
  background: rgba(255, 237, 0, 0.9);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  box-sizing: border-box;
}

/* Network Section */
.network-section {
  height: 1553px;
  position: relative;
  padding: 0 92.5px;
}

.network-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 732px;
  background: radial-gradient(circle at 8% 15%, #41b6e6 12px, transparent 12px),
    radial-gradient(circle at 18% 35%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 32% 25%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 45% 45%, #41b6e6 12px, transparent 12px),
    radial-gradient(circle at 58% 20%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 72% 40%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 85% 30%, #41b6e6 12px, transparent 12px),
    radial-gradient(circle at 95% 18%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 12% 55%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 25% 60%, #41b6e6 12px, transparent 12px),
    radial-gradient(circle at 40% 75%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 65% 65%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 78% 70%, #41b6e6 12px, transparent 12px),
    radial-gradient(circle at 90% 55%, #41b6e6 8px, transparent 8px),
    radial-gradient(circle at 5% 75%, #41b6e6 12px, transparent 12px);
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}

.network-constellation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 732px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.network-constellation.visible {
  opacity: 1;
}

.network-constellation svg {
  width: 100%;
  height: 100%;
}

.network-constellation line {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.network-constellation.visible line:nth-child(1) {
  animation: line-fade-in 0.8s ease-out 0.1s forwards;
}
.network-constellation.visible line:nth-child(2) {
  animation: line-fade-in 0.8s ease-out 0.2s forwards;
}
.network-constellation.visible line:nth-child(3) {
  animation: line-fade-in 0.8s ease-out 0.3s forwards;
}
.network-constellation.visible line:nth-child(4) {
  animation: line-fade-in 0.8s ease-out 0.4s forwards;
}
.network-constellation.visible line:nth-child(5) {
  animation: line-fade-in 0.8s ease-out 0.5s forwards;
}
.network-constellation.visible line:nth-child(6) {
  animation: line-fade-in 0.8s ease-out 0.6s forwards;
}
.network-constellation.visible line:nth-child(7) {
  animation: line-fade-in 0.8s ease-out 0.7s forwards;
}
.network-constellation.visible line:nth-child(8) {
  animation: line-fade-in 0.8s ease-out 0.8s forwards;
}
.network-constellation.visible line:nth-child(9) {
  animation: line-fade-in 0.8s ease-out 0.9s forwards;
}
.network-constellation.visible line:nth-child(10) {
  animation: line-fade-in 0.8s ease-out 1s forwards;
}
.network-constellation.visible line:nth-child(11) {
  animation: line-fade-in 0.8s ease-out 1.1s forwards;
}
.network-constellation.visible line:nth-child(12) {
  animation: line-fade-in 0.8s ease-out 1.2s forwards;
}
.network-constellation.visible line:nth-child(13) {
  animation: line-fade-in 0.8s ease-out 0.3s forwards;
}
.network-constellation.visible line:nth-child(14) {
  animation: line-fade-in 0.8s ease-out 0.6s forwards;
}
.network-constellation.visible line:nth-child(15) {
  animation: line-fade-in 0.8s ease-out 0.9s forwards;
}
.network-constellation.visible line:nth-child(16) {
  animation: line-fade-in 0.8s ease-out 1.2s forwards;
}
.network-constellation.visible line:nth-child(17) {
  animation: line-fade-in 0.8s ease-out 1.5s forwards;
}
.network-constellation.visible line:nth-child(18) {
  animation: line-fade-in 0.8s ease-out 1.8s forwards;
}
.network-constellation.visible line:nth-child(19) {
  animation: line-fade-in 0.8s ease-out 0.8s forwards;
}
.network-constellation.visible line:nth-child(20) {
  animation: line-fade-in 0.8s ease-out 1.4s forwards;
}

@keyframes line-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}

.network-info {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.network-stat {
  font-size: 80px;
  line-height: 1;
  text-align: center;
  margin-bottom: 60px;
}

.network-info .startups-dots {
  margin-bottom: 60px;
}

.network-description {
  font-size: 48px;
  line-height: 1.2;
  color: white;
  text-align: center;
  max-width: 825px;
  margin-bottom: 147px;
}

/* Offer Section */
.offer-section {
  margin-top: 200px;
  margin-bottom: 200px;
  position: relative;
  padding: 0 47px;
}

.offer-section .startups-dots {
  margin-bottom: 40px;
}

.offer-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-indicator {
  width: 187px;
  height: 9px;
  background: linear-gradient(90deg, #3984ff 0%, #41b6e6 49.479%, #ffed00 100%);
  border-radius: 4.5px;
  margin-bottom: 127px;
}

.offer-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-align: center;
  margin-bottom: 60px;
}

.offer-main-title {
  font-size: 80px;
  text-align: center;
  height: inherit;
}

.offer-scroll-text {
  margin-top: 200px;
  width: 100%;
  text-align: center;
  z-index: 10;
  background-image: url("./images/grafic.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}

.scroll-reveal-text {
  font-family: "Jura", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  position: relative;
  z-index: 20;
}

.text-part {
  color: #444444;
  transition: color 0.6s ease;
}

.text-part.revealed {
  color: white;
}

/* Cards Section */
.cards-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 41px;
  padding-bottom: 115px;
}

.card {
  width: 614px;
  height: 720px;
  background: #010714;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(50px);
  transition: height 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}

.card:hover {
  height: 780px;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-icon {
  position: absolute;
  top: 43px;
  left: 38px;
  width: 135px;
  height: 142px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 20px rgba(65, 182, 230, 0.3));
  transition: filter 0.3s ease;
}

.card:hover .card-icon {
  filter: drop-shadow(0 0 30px rgba(65, 182, 230, 0.6));
}

.research-icon {
  background-image: url("./images/card_1_logo.svg");
}

.industry-icon {
  background-image: url("./images/card_2_logo.svg");
}

.card-content {
  position: absolute;
  bottom: 80px;
  left: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: all 0.3s ease;
}

.card-title {
  position: absolute;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 20px;
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  left: 0;
  right: 0;
  bottom: 140px;
}

.card:hover .card-title {
  bottom: 300px;
}

.card:not(:hover) .card-title {
  bottom: 140px;
}

.card-description {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
}

.card:hover .card-description {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-description h4 {
  font-family: "Jura", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.card-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-description li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: white;
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.card-description li::before {
  content: "•";
  color: #ffed00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.card-btn {
  width: 183px;
  height: 60px;
  border: none;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-default {
  background: #ffed00;
  padding: 15px 30px;
  color: #ffffff;
  position: relative;
  line-height: 24px;
}

.card-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  background: radial-gradient(
    43.6% 43.6% at 49.98% 100.45%,
    #41b6e6 0%,
    #0047bb 55%,
    #003399 100%
  );
  color: white;
}

.card-btn span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  margin-right: 4px;
  color: #000000;
}

.send-icon {
  width: 12px;
  height: 12px;
  stroke: #ffed00;
  color: #000000;
}

.card-btn:hover span {
  color: #ffffff;
}

.card-btn:hover .send-icon {
  color: #ffed00;
}

/* Footer */
.footer-section {
  min-height: 223px;
  background: linear-gradient(
    0deg,
    rgba(0, 71, 187, 0.4) 0.11%,
    rgba(65, 182, 230, 0) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 58px 100px;
  margin-top: 100px;
}

.footer-content {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 0 20px;
}

.footer-logo {
  width: 181px;
  height: 36px;
}

.footer-text {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: white;
  flex: 1;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 0 32px;
}

.footer-link {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #41b6e6;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffed00;
  text-decoration: underline;
}

.footer-link-separator {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: white;
  user-select: none;
}

/* Mobile-First Responsive Design */
@media (max-width: 499px) {
  /* Mobile base styles */
  body {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Hero Section Mobile */
  .hero-section {
    height: 100vh;
    min-height: 600px;
    border-radius: 0 0 200px 200px;
    overflow: visible;
    background-color: transparent;
  }

  .hero-section::before {
    width: 95%;
    height: 67.5%; /* 75% of 90vh = 67.5% of 100vh */
    border-radius: 0 0 200px 200px;
  }

  /* Hero overlay elements should be 90vh on mobile */
  .hero-bg-overlay {
    height: 90vh;
    background-color: transparent;
  }

  .hero-blue-bg {
    height: 90vh;
    top: 0;
  }

  .hero-animated-bg {
    height: 90vh;
    top: 0;
  }

  .hero-logo {
    top: 25px;
    width: 154px;
    height: 67px;
  }

  .hero-logo svg {
    width: 100%;
    height: 100%;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.02;
    width: 100%;
    text-align: center;
  }

  .hero-text {
    top: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-btn {
    width: 160px;
    height: 50px;
    padding: 12px 24px;
    font-size: 11px;
  }

  .skip-intro {
    bottom: 32px;
    right: 32px;
  }

  .skip-btn {
    padding: 16px 24px;
    font-size: 14px;
  }

  /* Statistics sections mobile */
  .startups-section {
    padding: 30px 0;
    min-height: auto;
  }

  .startups-container {
    flex-direction: column;
    gap: 30px;
    padding: 0;
    min-height: auto;
    text-align: left;
    margin: 25px 0;
  }

  .startups-info {
    padding: 10px;
    order: 2;
    text-align: center;
    width: 100%;
  }

  /* Ensure all startups sections have centered text on mobile */
  .startups-section .startups-info {
    text-align: center;
    width: 100%;
    padding: 10px;
  }

  .startups-visual {
    order: 1;
    position: static;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: end;
    transform: none;
    right: auto;
    top: auto;
  }

  .startups-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .startups-stat {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 32px;
  }

  .startups-description {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .yellow-dots {
    max-width: 340px;
    width: 100%;
  }

  /* Large stats mobile */
  .stats-section-1 {
    height: auto;
    padding: 60px 24px;
    margin-top: 0;
  }

  .large-stat {
    width: 100%;
  }

  .stat-number {
    font-size: 112px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .map-dots-pattern {
    margin: 0 auto;
  }

  .stat-text {
    font-size: 64px;
    line-height: 1;
  }

  /* Circle stats mobile */
  .circle-stats {
    height: auto;
    padding: 10px 24px;
    margin: 2rem 0;
  }

  .circle-outer-wrapper {
    width: 100%;
    max-width: 450px;
    height: 360px;
  }

  .circle-container {
    width: 100%;
    max-width: 400px;
    height: 360px;
  }

  .year-label {
    font-size: 20px;
    margin-bottom: 20px;
    top: 1%;
  }

  .circle-text {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .circle-stat {
    font-size: 22px;
  }

  /* Network section mobile */
  .network-section {
    height: auto;
    padding: 60px 24px;
    position: relative;
  }

  .network-section::before {
    height: 300px;
    position: relative;
    z-index: 1;
    background: radial-gradient(
        circle at 8% 15%,
        #41b6e6 16px,
        transparent 16px
      ),
      radial-gradient(circle at 18% 35%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 32% 25%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 45% 45%, #41b6e6 16px, transparent 16px),
      radial-gradient(circle at 58% 20%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 72% 40%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 85% 30%, #41b6e6 16px, transparent 16px),
      radial-gradient(circle at 95% 18%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 12% 55%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 25% 60%, #41b6e6 16px, transparent 16px),
      radial-gradient(circle at 40% 75%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 65% 65%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 78% 70%, #41b6e6 16px, transparent 16px),
      radial-gradient(circle at 90% 55%, #41b6e6 12px, transparent 12px),
      radial-gradient(circle at 5% 75%, #41b6e6 16px, transparent 16px);
    background-size: 100% 100%;
  }

  .network-constellation {
    height: 300px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
  }

  /* Mobile constellation enhancements */
  .network-constellation svg line {
    stroke-width: 0.5 !important;
    opacity: 0.8 !important;
  }

  .network-info {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    margin-top: 0;
    z-index: 10;
    position: relative;
    left: 0;
  }

  .network-stat {
    font-size: 72px;
    margin-bottom: 30px;
  }

  .network-description {
    font-size: 32px;
    max-width: 100%;
    margin-bottom: 50px;
  }

  /* Global AI section mobile */
  .global-ai-section {
    height: 1200px;
    margin: 50px 0;
    padding: 0px 24px;
  }

  .global-text {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 350px;
    font-size: 28px;
  }

  /* Offer section mobile */
  .offer-section {
    height: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px 24px;
  }

  .offer-header {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    margin-bottom: 60px;
  }

  .offer-title {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .offer-main-title {
    font-size: 48px;
  }

  .offer-scroll-text {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    background: none;
    margin-bottom: 60px;
  }

  .scroll-reveal-text {
    font-size: 22px;
    text-align: center;
  }

  /* Cards section mobile */
  .cards-section {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px 60px;
    align-items: center;
  }

  .card {
    width: 336px;
    height: auto;
    min-height: 800px;
    margin: 0;
    padding-bottom: 24px;
  }

  .card:hover {
    height: auto;
  }

  .card-icon {
    width: 83px;
    height: 82px;
    top: 43px;
    left: 24px;
  }

  .card-title {
    font-size: 40px;
    line-height: 1.02;
    position: static;
    margin: 130px 0px 32px 0px;
    padding: 0;
    padding-top: 20px;
    max-width: 80%;
  }

  .card:hover .card-title {
    position: static;
  }

  .card:not(:hover) .card-title {
    position: static;
  }

  .card-content {
    position: static;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .card-description {
    opacity: 1;
    transform: translateY(0);
    max-height: none;
    margin-bottom: 0;
  }

  .card-description h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .card-btn {
    width: 183px;
    height: 60px;
    background: radial-gradient(
      43.6% 43.6% at 49.98% 100.45%,
      #41b6e6 0%,
      #0047bb 55%,
      #003399 100%
    ) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
  }

  .card-btn span {
    color: #ffffff !important;
  }

  .card-btn .send-icon {
    color: #ffed00 !important;
  }

  /* Footer mobile */
  .footer-section {
    height: auto;
    padding: 58px 24px;
    margin-top: 50px;
    background: linear-gradient(
      0deg,
      rgba(0, 71, 187, 0.4) 0.11%,
      rgba(65, 182, 230, 0) 100%
    );
  }

  .footer-content {
    width: 100%;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    align-items: flex-start;
  }

  .footer-logo {
    width: 181px;
    height: 36px;
  }

  .footer-text {
    font-size: 12px;
    line-height: 1.6;
  }

  /* Indicators mobile */
  .map-indicator,
  .offer-indicator {
    width: 187px;
    height: 9px;
  }

  /* Dots pattern mobile */
  .startups-dots {
    gap: 8px;
    justify-content: center;
    display: flex !important;
    width: auto;
    margin: 0 auto;
  }

  /* Hide map-dots-pattern on mobile, show startups-dots instead */
  .map-dots-pattern {
    display: none;
  }

  .yellow-dot {
    width: 6px;
    height: 6px;
  }

  /* Animation adjustments for mobile */
  .hero-pattern {
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .offer-scroll-text .text-container {
    padding: 0 20px;
  }

  .network-section::before,
  .network-constellation {
    display: none;
  }
}

/* Tablet styles */

@media (min-width: 500px) and (max-width: 768px) {
  .hero-logo {
    top: 25px;
    width: auto;
    height: 90px;
  }
  .hero-logo svg {
    width: auto;
    height: 100%;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-buttons {
    gap: 16px;
    top: 75%;
  }
  .hero-btn {
    width: 150px;
    height: 50px;
  }
  .stat-number,
  .stat-text {
    font-size: 60px;
  }
  .startups-stat {
    font-size: 60px;
  }
  .startups-description {
    font-size: 36px;
    text-align: center;
    display: inline-block;
  }
  .circle-text,
  .circle-stat {
    font-size: 36px;
  }
  .network-stat {
    font-size: 60px;
  }
  .offer-main-title {
    font-size: 60px;
  }
  .cards-section {
    flex-direction: column;
    gap: 40px;
    padding: 50px 40px;
    align-items: center;
  }
  .card {
    width: 500px;
    height: 600px;
  }
  .card-title {
    font-size: 40px;
  }

  .network-section::before,
  .network-constellation {
    display: none;
  }

  .network-section {
    height: 500px;
    padding: 60px 40px;
    position: relative;
  }

  /* Hide map-dots-pattern on tablet, show startups-dots instead */
  .map-dots-pattern {
    display: none;
  }

  .scroll-reveal-text {
    font-size: 40px;
    text-align: center;
  }

  .global-ai-section {
    margin-top: 200px;
    margin-bottom: 300px;
  }

  .footer-content {
    width: 100%;
  }
}

/* Desktop styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-logo {
    top: 20px;
    width: 200px;
  }
  .hero-title {
    font-size: 46px;
  }
  .hero-buttons {
    gap: 20px;
  }
  .hero-btn {
    width: 170px;
    height: 55px;
  }
  .stat-number,
  .stat-text {
    font-size: 60px;
  }
  .startups-stat {
    font-size: 60px;
  }
  .circle-text,
  .circle-stat {
    font-size: 36px;
  }
  .network-stat {
    font-size: 60px;
  }
  .offer-main-title {
    font-size: 60px;
  }
  .cards-section {
    flex-direction: row;
    gap: 30px;
  }
  .card {
    width: 500px;
    height: 650px;
  }

  .scroll-reveal-text {
    font-size: 40px;
    text-align: center;
  }

  /* Hide map-dots-pattern on tablet, show startups-dots instead */
  .map-dots-pattern {
    display: none;
  }

  .global-ai-section {
    margin-top: 200px;
    margin-bottom: 300px;
  }

  .network-section::before,
  .network-constellation {
    display: none;
  }

    .network-section {
        padding: 60px 40px;
        position: relative;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-title {
    font-size: 56px;
  }
  .hero-buttons {
    gap: 20px;
  }
  .hero-btn {
    width: 170px;
    height: 55px;
  }
  .stat-number,
  .stat-text {
    font-size: 96px;
  }
  .startups-stat {
    font-size: 96px;
  }
  .circle-text,
  .circle-stat {
    font-size: 36px;
  }
  .network-stat {
    font-size: 96px;
  }
  .offer-main-title {
    font-size: 96px;
  }
  .cards-section {
    flex-direction: row;
    gap: 30px;
  }
  .card {
    width: 500px;
    height: 650px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-logo {
    top: 40px;
  }
  .hero-title {
    font-size: 55px;
  }
  .stat-number,
  .stat-text {
    font-size: 80px;
  }
  .offer-main-title {
    font-size: 100px;
  }
  .network-stat {
    font-size: 100px;
  }

  .global-ai-section {
    margin-top: 300px;
    margin-bottom: 400px;
  }

  .offer-section {
    height: 1400px;
  }
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  overflow: hidden;
}

.newsletter-container {
  position: relative;
  background: linear-gradient(
    288deg,
    #41b6e6 -19.23%,
    #0047bb 37.9%,
    #039 100%
  );
  padding: 58px 100px;
  max-width: 1269px;
  margin: 0 auto;
  z-index: 2;
  border-radius: 20px;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.newsletter-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-title-column {
  justify-content: center;
}

.newsletter-form-column {
  justify-content: center;
  gap: 24px;
}

.newsletter-button-column {
  justify-content: center;
  align-items: flex-end;
}

.newsletter-title {
  font-family: "Jura", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.02;
  color: white;
  margin: 0;
}

.newsletter-input {
  position: relative;
}

.newsletter-input input {
  width: 404px;
  height: 60px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-family: "Jura", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: white;
  outline: none;
}

.newsletter-input input::placeholder {
  color: white;
  opacity: 1;
}

.newsletter-input input:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  width: 183px;
  height: 60px;
  padding: 15px 30px;
  border: none;
  border-radius: 100px;
  background: #ffed00;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.newsletter-btn span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  color: #fff899;
}

.newsletter-terms {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.terms-checkbox {
  position: relative;
}

.checkbox-wrapper {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.check-icon {
  width: 12px;
  height: 9px;
  stroke: #41b6e6;
  stroke-width: 2;
}

.terms-text, .privacy-text {
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 20.8px;
  letter-spacing: -0.0866px;
  color: white;
  margin: 0;
}

.privacy-text a {
  text-decoration: underline;
  color: white;
}

/* Newsletter Responsive Styles */
@media (max-width: 800px) {
  .startups-container {
    margin: 0;
  }
  .newsletter-section {
    padding: 30px 20px;
  }

  .newsletter-container {
    padding: 58px;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .newsletter-title {
    font-size: 32px;
  }

  .newsletter-title-column,
  .newsletter-form-column,
  .newsletter-button-column {
    align-items: center;
  }

  .newsletter-input input {
    width: 100%;
    max-width: 350px;
  }

  .newsletter-btn {
    width: 100%;
    max-width: 200px;
  }

  .newsletter-terms {
    justify-content: center;
  }

  .network-section::before,
  .network-constellation {
    display: none;
  }

  .network-section {
    padding: 60px 20px;
    position: relative;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .newsletter-section {
    padding: 40px 50px;
  }

  .newsletter-title {
    font-size: 40px;
  }

  .newsletter-content {
    gap: 30px;
  }

  .newsletter-input input {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .startups-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    flex-direction: column;
    display: flex;
  }

  .startups-title {
    font-size: 36px;
  }

  .startups-stat {
    font-size: 48px;
  }

  /* Mobile layout for first startups section */
  #first-startups-section .startups-container {
    flex-direction: column;
    display: flex;
  }

  #first-startups-section .startups-visual {
    position: static;
    order: 1;
    transform: none;
    margin-bottom: 20px;
    padding: 0;
  }

  #first-startups-section .startups-info {
    position: static;
    order: 2;
    text-align: center;
  }

  /* Mobile layout for second startups section */

  #second-startups-section .startups-container {
    flex-direction: column;
    display: flex;
  }

  #second-startups-section .startups-visual {
    position: static;
    order: 1;
    transform: none;
    margin-bottom: 20px;
    padding: 0;
  }

  #second-startups-section .startups-info {
    position: static;
    order: 2;
    text-align: center;
  }

  .stats-section-1 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.bde-div-13-130.bde-div {
    display: none;
}

/* Custom Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  pointer-events: none;
}

.toast {
  position: relative;
  padding: 16px 20px;
  margin-bottom: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 300px;
  max-width: 400px;
  pointer-events: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: white;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(100%);
  opacity: 0;
}

.toast-error {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(153, 27, 27, 0.9));
  border-color: rgba(248, 113, 113, 0.3);
}

.toast-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(21, 128, 61, 0.9));
  border-color: rgba(74, 222, 128, 0.3);
}

.toast-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(180, 83, 9, 0.9));
  border-color: rgba(251, 191, 36, 0.3);
}

.toast-info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.9));
  border-color: rgba(96, 165, 250, 0.3);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.toast-message {
  flex: 1;
  font-weight: 500;
}

.toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  font-size: 16px;
  line-height: 1;
}

.toast-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .toast {
    min-width: auto;
    max-width: none;
    transform: translateY(-100%);
  }

  .toast.show {
    transform: translateY(0);
  }

  .toast.hide {
    transform: translateY(-100%);
  }
}