@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Economica", sans-serif;
  background-color: #000000;
  color: #ffffff;
}

button {
  font-family: "Economica", sans-serif;
}

#fullpage {
  background-color: #000000;
}

.fp-section,
.fp-tableCell {
  height: 100% !important;
}

.navbar {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-logo {
  position: fixed;
  right: 20px;
  top: 30px;
  width: 120px;
  height: 120px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.navbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar-logo.active {
  opacity: 1;
  pointer-events: auto;
}

.logo-clone {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-clone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}
.nav-links.hidden {
  opacity: 0;
  pointer-events: none;
}
.nav-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  border-bottom-color: white;
}
.nav-links a.active {
  border-bottom-color: white;
}
.nav-links a[href] {
  padding: 5px 0;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown .nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown .nav-dropdown-toggle::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(-180deg);
}
.nav-dropdown .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  list-style: none;
  margin: 10px 0 0 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.nav-dropdown .nav-dropdown-menu li {
  margin: 0;
}
.nav-dropdown .nav-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #d0d0d0;
  text-decoration: none;
  font-size: 16px;
  border-bottom: none;
  transition: all 0.3s ease;
}
.nav-dropdown .nav-dropdown-menu li a:hover {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-bottom: none;
  padding-left: 25px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.i-block {
  display: inline-block;
}

.highlight-green {
  background-color: #008000;
  padding: 2px 6px;
  border-radius: 3px;
}

.page {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  min-height: 100% !important;
  height: auto !important;
}

.fp-overflow {
  height: 100%;
}

#page1 {
  background: #000000;
}
#page1 .page-content {
  padding: 0 40px;
  height: 100%;
}
#page1 .hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  height: 100%;
}
#page1 .hero-left {
  align-self: flex-start;
}
#page1 .hero-logo {
  margin-top: 20px;
  width: 600px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
#page1 .hero-text {
  flex: 1;
  text-align: left;
}
#page1 .hero-title {
  margin-top: 1vh;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#page1 .hero-subtitle {
  margin-top: 10vh;
  font-size: 1.8em;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#page1 .hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page1 .hero-video {
  width: 400px;
  height: auto;
  border-radius: 10px;
}

#page2 {
  background: #000000;
}
#page2 .page-content {
  padding: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page2 .page2-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1400px;
}
#page2 .page2-title {
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  max-width: 100%;
  width: 900px;
}
#page2 .page2-content-wrapper {
  display: flex;
  gap: 40px;
}
#page2 .page2-left {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
#page2 .page2-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#page2 .page2-left-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
#page2 .bullet-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
#page2 .bullet-point {
  font-size: 1.5em;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}
#page2 .bullet-content {
  font-size: 2em;
  line-height: 1.6;
  padding-left: 10px;
  text-indent: -10px;
}
#page2 .page2-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#page2 .page2-chart {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
#page2 .page2-description {
  font-size: 0.85em;
  line-height: 1.7;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#page3 {
  background: #000000;
  position: relative;
}
#page3 .page3-video-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page3 .page3-video-position {
  max-width: 960px;
}
#page3 .page3-video {
  position: relative;
  width: 100%;
  margin-top: -40%;
}
#page3 .page-content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page3 .page3-container {
  width: 100%;
  position: relative;
  top: 20%;
  transform: translateY(20%);
}
#page3 .page3-text {
  font-size: 1.53em;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#page4 {
  background: url("images/page4.png") right bottom/70% auto no-repeat;
  position: relative;
}
#page4 .page-content {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#page4 .page4-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
#page4 .page4-left {
  width: calc(100% - 120px);
  max-width: 1000px;
}
#page4 .page4-right {
  width: 100%;
  max-width: 800px;
}
#page4 .page4-title {
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
  color: #ffffff;
}
#page4 .page4-logo {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: contain;
}
#page4 .page4-description {
  font-size: 1.8em;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#page5 {
  background: #000000;
}
#page5 .page-content {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page5 .page5-container {
  display: flex;
  gap: 100px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}
#page5 .page5-left {
  width: 60%;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
#page5 .page5-logo {
  width: 80%;
  max-width: 600px;
  object-fit: contain;
}
#page5 .page5-subtitle {
  font-size: 2.5em;
  line-height: 1.5;
  color: #e0e0e0;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#page5 .page5-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#page5 .page5-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
}
#page5 .page5-layers {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}
#page5 .layer-item {
  padding: 20px 25px 40px;
  position: relative;
}
#page5 .layer-item:hover:before {
  height: 10px !important;
}
#page5 .layer-item:hover:after {
  clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%) !important;
}
#page5 .layer-item:before {
  transition: all 0.3s ease;
  pointer-events: none;
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.2) 35%, rgba(255, 255, 255, 0.55) 60%, rgba(255, 255, 255, 0.85) 80%, rgba(255, 255, 255, 0.95) 100%);
  clip-path: polygon(80% 0%, 20% 0%, 0% 100%, 100% 100%);
}
#page5 .layer-item:after {
  transition: all 0.3s ease;
  pointer-events: none;
  content: "";
  position: absolute;
  bottom: 0.5px;
  left: 0;
  right: 0;
  height: 8px;
  background: #ffffff;
}
#page5 .layer-item:nth-child(1):before {
  height: 30px;
}
#page5 .layer-item:nth-child(1):after {
  clip-path: polygon(100% 0%, 0% 0%, 0.1% 100%, 99.9% 100%);
}
#page5 .layer-item:nth-child(2):before {
  height: 60px;
}
#page5 .layer-item:nth-child(2):after {
  clip-path: polygon(100% 0%, 0% 0%, 0.5% 100%, 99.5% 100%);
}
#page5 .layer-item:nth-child(3):before {
  height: 80px;
}
#page5 .layer-item:nth-child(3):after {
  clip-path: polygon(100% 0%, 0% 0%, 1% 100%, 99% 100%);
}
#page5 .layer-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}
#page5 .layer-content {
  font-size: 1.05em;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#page10 {
  background: #000000;
}
#page10 .page-content {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#page10 .page10-header {
  width: 100%;
  margin-bottom: 60px;
}
#page10 .page10-main-title {
  font-size: 3.2em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
#page10 .highlight-green-large {
  color: #008000;
  font-size: 1.5em;
}
#page10 .page10-timeline {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#page10 .timeline-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(to bottom, #fff 0px, #fff 3px, transparent 3px, transparent 6px);
  transform: translateX(-50%);
  z-index: 1;
}
#page10 .timeline-item {
  position: relative;
  display: flex;
  z-index: 2;
}
#page10 .timeline-item:nth-child(2n+1) {
  flex-direction: row-reverse;
}
#page10 .timeline-item.timeline-left {
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: calc(50% + 60px);
}
#page10 .timeline-item.timeline-left .timeline-content {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#page10 .timeline-item.timeline-left .timeline-time {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
#page10 .timeline-item.timeline-right {
  flex-direction: row;
  justify-content: flex-start;
  width: calc(50% + 60px);
  margin-left: calc(50% - 60px);
}
#page10 .timeline-item.timeline-right .timeline-content {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
#page10 .timeline-item.timeline-right .timeline-time {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#page10 .timeline-content {
  flex: 1;
  background-color: #008000;
  padding: 3px 5%;
  height: 3em;
  color: #ffffff;
}
#page10 .timeline-even .timeline-content {
  background-color: #ffffff;
  color: #000000;
}
#page10 .timeline-text {
  font-size: 1.15em;
  margin: 0;
  color: #ffffff;
}
#page10 .timeline-even .timeline-text {
  color: #000000;
}
#page10 .timeline-time {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 120px;
  background: #D9D9D9;
}
#page10 .time-text {
  font-size: 1.35em;
}
#page10 .timeline-odd .time-text {
  color: #4472C4;
}
#page10 .timeline-even .time-text {
  color: #595959;
}
#page10 .time-triangle {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #D9D9D9;
}

#page11 {
  background: #000000;
  position: relative;
}
#page11 .page-content {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#page11 .page11-header {
  width: 100%;
  text-align: right;
}
#page11 .page11-main-title {
  font-size: 3.2em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
}
#page11 .highlight-green-large {
  color: #008000;
  font-size: 1.5em;
}
#page11 .page11-timeline {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#page11 .timeline-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(to bottom, #fff 0px, #fff 3px, transparent 3px, transparent 6px);
  transform: translateX(-50%);
  z-index: 1;
}
#page11 .timeline-item {
  position: relative;
  display: flex;
  z-index: 2;
}
#page11 .timeline-item:nth-child(2n+1) {
  flex-direction: row-reverse;
}
#page11 .timeline-item.timeline-left {
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: calc(50% + 60px);
}
#page11 .timeline-item.timeline-left .timeline-content {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#page11 .timeline-item.timeline-left .timeline-time {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
#page11 .timeline-item.timeline-right {
  flex-direction: row;
  justify-content: flex-start;
  width: calc(50% + 60px);
  margin-left: calc(50% - 60px);
}
#page11 .timeline-item.timeline-right .timeline-content {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
#page11 .timeline-item.timeline-right .timeline-time {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#page11 .timeline-content {
  flex: 1;
  background-color: #008000;
  padding: 3px 5%;
  height: 3em;
  color: #ffffff;
}
#page11 .timeline-even .timeline-content {
  background-color: #ffffff;
  color: #000000;
}
#page11 .timeline-text {
  font-size: 1.15em;
  margin: 0;
  color: #ffffff;
}
#page11 .timeline-even .timeline-text {
  color: #000000;
}
#page11 .timeline-time {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 120px;
  background: #D9D9D9;
}
#page11 .time-text {
  font-size: 1.35em;
}
#page11 .timeline-odd .time-text {
  color: #4472C4;
}
#page11 .timeline-even .time-text {
  color: #595959;
}
#page11 .time-triangle {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #D9D9D9;
}

#page9 {
  background: #000000;
}
#page9 .page-content {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#page9 .page9-header {
  width: 100%;
  margin-bottom: 20px;
}
#page9 .page9-main-title {
  font-size: 4.8em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
#page9 .highlight-green-large {
  color: #008000;
}
#page9 .page9-container {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1400px;
  align-items: center;
}
#page9 .page9-left {
  flex: 0 0 400px;
}
#page9 .page9-text {
  font-size: 1.37em;
  line-height: 1.4;
}
#page9 .page9-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page9 .page9-video {
  width: 100%;
  height: auto;
}

#page8 {
  background: url("images/page8-bg.png") no-repeat right 100%/60% auto #000000;
  position: relative;
  overflow: hidden;
}
#page8 .page-content {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
#page8 .page8-header {
  width: 100%;
  margin-bottom: 20px;
}
#page8 .page8-main-title {
  font-size: 4.5em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
#page8 .page8-container {
  display: flex;
  gap: 80px;
  width: 100%;
  max-width: 1400px;
  align-items: flex-start;
}
#page8 .page8-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#page8 .page8-right {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page8 .distribution-tables {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
#page8 .distribution-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#page8 .table-cell {
  font-size: 1.25em;
}
#page8 .chart-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  transform: translate(20%, -10%);
}
#page8 .pie-chart {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

#page7 {
  background: #000000;
}
#page7 .page-content {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#page7 .page7-header {
  width: 100%;
  margin-bottom: 20px;
}
#page7 .page7-main-title {
  font-size: 3.2em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
#page7 .highlight-green-large {
  color: #008000;
  font-size: 1.5em;
}
#page7 .page7-container {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  align-items: flex-start;
}
#page7 .page7-left,
#page7 .page7-right {
  flex: 1;
  line-height: 1;
}
#page7 .token-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#page7 .token-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#page7 .token-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
#page7 .token-label {
  background-color: #008000;
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: bold;
  display: inline-block;
  width: fit-content;
}
#page7 .token-text {
  font-size: 0.85em;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#page7 .token-bullet {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
#page7 .bullet-dot {
  font-size: 1.5em;
  color: #008000;
  flex-shrink: 0;
}
#page7 .bullet-text {
  font-size: 1em;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#page7 .token-image {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  transform: translateY(-10%);
}
#page7 .token-video {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: auto;
}

#page6 {
  background: #000000;
}
#page6 .page-content {
  position: relative;
  padding: 60px 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page6 .page-content:before {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  font-size: 30vw;
  margin: auto;
  content: "TEAMS";
  color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-text-stroke: 1px #5B9BD5;
}
#page6 .team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1200px;
}
#page6 .team-member {
  display: flex;
  gap: 25px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}
#page6 .team-member:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}
#page6 .member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 999em;
  object-fit: cover;
  flex-shrink: 0;
}
#page6 .member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#page6 .member-description {
  font-size: 1.15em;
  line-height: 1.15;
  color: #d0d0d0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#page6 .member-name {
  font-weight: bold;
  color: #ffffff;
}

.footer {
  background: #000000;
  border-top: 1px solid #ffffff;
  padding: 40px;
  position: relative;
  z-index: 100;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-left {
  display: flex;
  gap: 20px;
}

.footer-link-group {
  display: flex;
}

.footer-link-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1em;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-link-btn:hover {
  color: #22c55e;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.footer-social {
  display: flex;
  gap: 30px;
}

.social-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1em;
  transition: all 0.3s ease;
}
.social-link:hover {
  color: #22c55e;
}

.footer-copyright {
  color: #999999;
  font-size: 0.9em;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  background-color: #1a1a1a;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.5em;
}

.modal-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 4em;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover {
  color: #22c55e;
}

.modal-body {
  padding: 25px;
  color: #d0d0d0;
  font-size: 1em;
  line-height: 1.8;
  overflow-y: auto;
  flex: 1;
}
.modal-body .align-right {
  text-align: right;
}
.modal-body h1 {
  font-size: 1.8em;
  color: #ffffff;
  margin: 0 0 15px 0;
  border-bottom: 2px solid #22c55e;
  padding-bottom: 10px;
  display: none;
}
.modal-body h2 {
  font-size: 1.3em;
  color: #22c55e;
  margin: 20px 0 10px 0;
}
.modal-body h3 {
  font-size: 1.1em;
  color: #a0d995;
  margin: 15px 0 8px 0;
}
.modal-body p {
  margin: 10px 0;
  color: #d0d0d0;
}
.modal-body ul {
  margin: 10px 0;
  padding-left: 20px;
}
.modal-body li {
  margin: 8px 0;
  color: #d0d0d0;
}
.modal-body strong {
  color: #22c55e;
  font-weight: 600;
}
.modal-body::-webkit-scrollbar {
  width: 8px;
}
.modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: #1ea853;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.fp-watermark {
  transform: translate(100vw);
}

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