:root {
  --blue-dark: #1e3a5f;
  --blue-medium: #2c5f8d;
  --blue-dark-85: rgba(30, 58, 95, 0.85);
  --blue-dark-70: rgba(30, 58, 95, 0.7);
  --blue-medium-75: rgba(44, 95, 141, 0.75);
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-30: rgba(245, 158, 11, 0.3);
  --amber-50: rgba(245, 158, 11, 0.5);
  --amber-40: rgba(245, 158, 11, 0.4);
  --amber-15: rgba(245, 158, 11, 0.15);
  --amber-20: rgba(245, 158, 11, 0.2);
  --violet-80: rgba(139, 92, 246, 0.8);
  --white: #fff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-05: rgba(255, 255, 255, 0.05);
  --black: #000;
  --dark-text: #2c3e50;
  --mobile-breakpoint: 768px;
  --tablet-breakpoint: 1024px;
  --desktop-breakpoint: 1200px;
  --spacing-xs: 4px;
  --spacing-small: 8px;
  --spacing-medium: 12px;
  --spacing-large: 16px;
  --spacing-xl: 20px;
  --spacing-2xl: 24px;
  --spacing-3xl: 32px;
  --spacing-4xl: 40px;
  --spacing-5xl: 80px;
  --font-size-xs: 12px;
  --font-size-sm: 13px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 22px;
  --font-size-3xl: 24px;
  --font-size-4xl: 28px;
  --font-size-5xl: 36px;
  --font-size-6xl: 48px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-modal: 1000;
}

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

body {
  margin: 0;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  text-align: center;
  color: var(--dark-text);
}

.home {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-medium) 50%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
  background-image: var(--home-bg-image, url("../assets/img/fwc-1.jpg"));
  background-size: cover;
  background-position: bottom center;
  background-attachment: fixed;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--blue-dark-85) 0%, var(--blue-medium-75) 50%, var(--blue-dark-85) 100%);
  pointer-events: none;
}

.hero-section {
  padding: 0;
  padding-top: 48px;
  padding-bottom: 180px;
  position: relative;
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-section .hero-text {
  flex: 1;
  max-width: 600px;
  padding-top: 36px;
}
.hero-section .hero-title {
  font-size: var(--font-size-6xl);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 15px 0;
  line-height: 1.2;
}
.hero-section .hero-image {
  position: absolute;
  right: 15px;
  top: -10px;
}
.hero-section .hero-image img {
  width: 260px;
  height: auto;
  display: block;
  -webkit-filter: drop-shadow(0 20px 40px var(--amber-40));
          filter: drop-shadow(0 20px 40px var(--amber-40));
}

.platforms-section {
  padding: 0 20px 80px;
  position: relative;
  z-index: 1;
}
.platforms-section .platforms-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.platform-card {
  background: var(--blue-dark-70);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--amber-20);
  border-radius: var(--radius-lg);
  padding: var(--spacing-medium);
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.platform-card:hover {
  background: var(--amber-15);
  border-color: var(--amber-50);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--amber-30);
}

.platform-logo {
  flex: 0 0 120px;
  height: 120px;
  background: var(--white-05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.platform-logo img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.platform-info {
  flex: 1;
  min-width: 0;
}

.platform-content {
  flex: 1;
  display: flex;
  gap: 8px;
  align-items: center;
}

.platform-name {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px 0;
  text-align: left;
}

.platform-subtitle {
  font-size: var(--font-size-md);
  color: var(--white-70);
  margin: 0 0 4px 0;
  text-align: left;
}

.platform-description {
  font-size: var(--font-size-base);
  color: var(--white-50);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.platform-arrow {
  flex: 0 0 24px;
  color: var(--white-40);
  transition: all 0.3s;
}
.platform-card:hover .platform-arrow {
  color: var(--violet-80);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .hero-section {
    padding-left: 42px;
    padding-right: 42px;
    padding-top: 60px;
    padding-bottom: 170px;
  }
  .hero-section .hero-text {
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
  }
  .hero-section .hero-title {
    font-size: 36px;
    text-align: left;
  }
  .hero-section .hero-image {
    position: absolute;
    right: 6%;
    top: -6px;
    z-index: 0;
  }
  .hero-section .hero-image img {
    width: 220px;
  }
  .platforms-section .platforms-grid {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 24px;
  }
  .hero-section .hero-title {
    font-size: 22px;
    margin-bottom: 2px;
    text-align: center;
  }
  .hero-section .hero-image {
    position: absolute;
    bottom: -55px;
    right: 1%;
  }
  .hero-section .hero-image img {
    width: 130px;
  }
  .platforms-section {
    padding: 16px 16px 60px;
  }
  .platforms-section .platform-card {
    padding: 16px;
    gap: 16px;
  }
  .platform-logo {
    flex: 0 0 100px;
    height: 60px;
  }
  .platform-name {
    font-size: 16px;
  }
  .platform-subtitle {
    font-size: 13px;
  }
  .platform-description {
    font-size: 12px;
  }
  .platform-arrow {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-title {
    font-size: 24px;
  }
  .hero-section .hero-image {
    flex: 0 0 200px;
  }
}

/*# sourceMappingURL=main.css.map */
