*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

h3 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

@media (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.95rem;
  }
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

strong em, em strong,
b i, i b {
  font-weight: 700;
  font-style: italic;
}

small {
  font-size: 0.875em;
}

mark {
  background-color: rgba(0, 183, 235, 0.2);
  color: #ffffff;
  padding: 0.1em 0.3em;
  border-radius: 2px;
}

del, s {
  text-decoration: line-through;
  opacity: 0.7;
}

ins {
  text-decoration: underline;
  text-decoration-color: #00B7EB;
  text-underline-offset: 2px;
}

sub, sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: none;
}

code, kbd, samp {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9em;
}

kbd {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 3px;
  padding: 0.1em 0.4em;
  font-size: 0.85em;
}

var {
  font-style: italic;
  font-family: "Monaco", "Courier New", monospace;
}

a {
  color: #00B7EB;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #40c4ff;
}
a:focus {
  outline: 2px solid #00B7EB;
  outline-offset: 2px;
}

main section article a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
main section article a:hover {
  color: #00B7EB;
}
main section article a:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.blog-listing {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-article {
  margin-bottom: 8rem;
}

.news-layout {
  margin-bottom: 3rem;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
.news-layout:hover {
  transform: translateY(-10px) scale(1.02);
}
.news-layout {
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.1);
}

.news-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.news-image {
  flex-shrink: 0;
}
.news-image img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.news-title-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-title {
  margin: 0;
  font-size: 1.5rem;
}
.news-title a {
  color: white;
  text-decoration: none;
}
.news-title a:hover {
  color: #00B7EB;
}

.news-date {
  color: #888;
  font-size: 0.9rem;
}

.news-preview {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-tags {
  margin-bottom: 1rem;
}
.news-tags .tag {
  background: #00B7EB;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.news-footer {
  text-align: right;
}

.news-read-more {
  color: #00B7EB;
  text-decoration: none;
  font-weight: bold;
}
.news-read-more:hover {
  color: #80e1fc;
}

.blog-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .blog-container {
    grid-template-columns: 3fr 1fr;
    padding: 4rem 3rem;
  }
}

.news-single-layout {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .news-single-layout {
    padding: 4rem;
  }
}

.news-single-header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(0, 183, 235, 0.2);
  padding-bottom: 2.5rem;
  position: static !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-single-title {
  font-size: 2.5rem;
  margin: 0 0 0.75rem 0;
  color: #ffffff;
  line-height: 1.2;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .news-single-title {
    font-size: 3rem;
  }
}

.news-single-meta {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
  width: 100%;
}
.news-single-meta time {
  display: block;
  margin: 0;
}
.news-single-meta span {
  margin: 0 1rem;
}

.news-single-image {
  margin: 3rem 0 4rem 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.news-single-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 183, 235, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}
.news-single-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 183, 235, 0.25);
}

.news-single-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  padding: 0 1rem;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.news-single-content h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem 0;
  color: #ffffff;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.news-single-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.news-single-content h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.25rem 0;
  color: #ffffff;
}
.news-single-content h4 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem 0;
  color: rgba(255, 255, 255, 0.9);
}
.news-single-content p {
  margin-bottom: 1.75rem;
  text-align: justify;
}
.news-single-content ul, .news-single-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.news-single-content ul li, .news-single-content ol li {
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.news-single-content a {
  color: #00B7EB;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.news-single-content a:hover {
  color: #40c4ff;
  border-bottom-color: #40c4ff;
}
.news-single-content blockquote {
  border-left: 4px solid #00bfff;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: #e0e0e0;
  background: rgba(0, 183, 235, 0.05);
  border-radius: 0 8px 8px 0;
}
.news-single-content code {
  background: rgba(0, 183, 235, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.95em;
  color: #40c4ff;
}
.news-single-content pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
}
.news-single-content pre code {
  background: none;
  padding: 0;
}

.news-single-tags {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(0, 183, 235, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.news-single-tags .tag {
  display: inline-block;
  background: rgba(0, 183, 235, 0.2);
  color: #00B7EB;
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.news-single-tags .tag:hover {
  background: rgba(0, 183, 235, 0.3);
  border-color: #00B7EB;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 183, 235, 0.3);
}

@media (max-width: 991px) {
  .blog-sidebar {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
  }
}

@media (max-width: 768px) {
  .blog-listing {
    padding: 1.5rem 1rem;
  }
  .news-layout {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .news-header {
    flex-direction: column;
    gap: 1rem;
  }
  .news-image {
    width: 100%;
  }
  .news-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
  }
  .news-title {
    font-size: 1.3rem;
  }
  .news-preview {
    font-size: 0.95rem;
  }
  .blog-container {
    padding: 1.5rem 1rem;
  }
  .news-single-layout {
    padding: 1.5rem 1rem;
    max-width: 100%;
    margin: 0;
  }
  .news-single-title {
    font-size: 1.75rem;
    line-height: 1.3;
    display: block;
    width: 100%;
  }
  .news-single-meta {
    font-size: 0.9rem;
    display: block;
    width: 100%;
  }
  .news-single-meta time {
    display: block;
  }
  .news-single-content {
    padding: 0;
    font-size: 1rem;
  }
  .news-single-content h2 {
    font-size: 1.5rem;
  }
  .news-single-content h3 {
    font-size: 1.25rem;
  }
  .news-single-content h4 {
    font-size: 1.1rem;
  }
  .news-single-content blockquote {
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
  }
  .news-single-content pre {
    padding: 1rem;
    margin: 1.5rem 0;
    max-width: 100%;
  }
  .news-single-content ul, .news-single-content ol {
    padding-left: 1.5rem;
  }
}
@media (max-width: 576px) {
  .blog-listing {
    padding: 1rem 0.75rem;
  }
  .news-layout {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0;
  }
  .news-layout:hover {
    transform: none;
  }
  .news-header {
    margin-bottom: 1rem;
  }
  .news-title {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .news-date {
    font-size: 0.85rem;
  }
  .news-preview {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .news-footer {
    text-align: left;
    margin-top: 1rem;
  }
  .news-read-more {
    font-size: 0.9rem;
  }
  .news-single-tags {
    text-align: left;
  }
  .news-single-tags .tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    margin: 0 0.3rem 0.5rem 0;
  }
  .blog-container {
    padding: 1rem 0.75rem;
  }
  .news-single-layout {
    padding: 1rem 0.75rem;
    border-radius: 0;
  }
  .news-single-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .news-single-title {
    font-size: 1.5rem;
    display: block;
    width: 100%;
  }
  .news-single-meta {
    display: block;
    width: 100%;
  }
  .news-single-meta time {
    display: block;
  }
  .news-single-image {
    margin: 2rem 0;
  }
  .news-single-image img {
    border-radius: 8px;
  }
  .news-single-content p {
    text-align: left;
  }
  .news-single-content blockquote {
    padding: 0.75rem 1rem;
    margin: 1rem 0;
  }
  .news-single-content pre {
    padding: 0.75rem;
    margin: 1rem 0;
  }
  .news-single-content ul, .news-single-content ol {
    padding-left: 1rem;
  }
  .news-single-tags {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
  .news-single-tags .tag {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}
ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 3rem;
}

li {
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  min-height: calc(100vh - 200px);
}

section {
  padding: 5rem 2rem;
}
section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 576px) {
  section {
    padding: 3rem 1rem;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }
}
@media (min-width: 768px) {
  section {
    padding: 5rem 3rem;
  }
}
@media (min-width: 992px) {
  section {
    padding: 6rem 5rem;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 7rem 8rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}
@media (min-width: 992px) {
  .container {
    padding: 0 5rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 8rem;
  }
}

button,
a[href^="#portfolio"],
a[href*=button] {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid #00bfff;
  border-radius: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
button::before,
a[href^="#portfolio"]::before,
a[href*=button]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00bfff;
  transition: left 0.3s ease;
  z-index: -1;
}
button:hover,
a[href^="#portfolio"]:hover,
a[href*=button]:hover {
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.5), inset 0 0 20px rgba(0, 191, 255, 0.1);
  transform: translateY(-2px);
}
button:hover::before,
a[href^="#portfolio"]:hover::before,
a[href*=button]:hover::before {
  left: 0;
}
button:active,
a[href^="#portfolio"]:active,
a[href*=button]:active {
  transform: translateY(0);
}

button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #00B7EB;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 183, 235, 0.2);
}
input:hover,
textarea:hover,
select:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

hr {
  border: none;
  height: 1px;
  background: #333333;
  margin: 4rem 0;
}

address {
  font-style: normal;
  line-height: 1.7;
}

main section article .news-single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 183, 235, 0.15);
}

header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
header h3 a {
  color: #ffffff;
  transition: color 0.3s ease;
}
header h3 a:hover {
  color: #00bfff;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}
header nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}
@media (max-width: 768px) {
  header nav {
    gap: 0;
  }
}
@media (max-width: 768px) {
  header nav > *:not(.nav-toggle):not(.nav-menu) {
    display: none;
  }
}
@media (max-width: 768px) {
  header .social-links {
    order: 3;
    width: 100%;
  }
}

nav .nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  nav .nav-toggle {
    display: flex;
  }
}
nav .nav-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: all 0.3s ease;
}
nav .nav-toggle .hamburger::before, nav .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}
nav .nav-toggle .hamburger::before {
  top: -8px;
}
nav .nav-toggle .hamburger::after {
  bottom: -8px;
}
nav .nav-toggle[aria-expanded=true] .hamburger {
  background: transparent;
}
nav .nav-toggle[aria-expanded=true] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
nav .nav-toggle[aria-expanded=true] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}
nav .nav-toggle:hover .hamburger, nav .nav-toggle:hover .hamburger::before, nav .nav-toggle:hover .hamburger::after {
  background: #00bfff;
}
nav .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
}
nav .nav-menu li {
  margin: 0;
}
nav .nav-menu li a {
  display: block;
  padding: 0.5rem 2rem;
  color: #cccccc;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
}
nav .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00bfff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
nav .nav-menu li a:hover {
  color: #00bfff;
  background: transparent;
}
nav .nav-menu li a:hover::after {
  width: 80%;
}
nav .nav-menu li[aria-current=page] a {
  color: #00bfff;
  background: transparent;
}
nav .nav-menu li[aria-current=page] a::after {
  width: 80%;
}
nav .nav-menu li ul {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.98);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 0;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
  min-width: 200px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  flex-direction: column;
  gap: 0;
}
nav .nav-menu li ul li {
  width: 100%;
}
nav .nav-menu li ul li a {
  padding: 1rem;
}
nav .nav-menu li:hover > ul, nav .nav-menu li:focus-within > ul {
  display: flex;
}
@media (max-width: 768px) {
  nav .nav-menu {
    display: none;
    flex-direction: column;
    width: calc(100vw - 2rem);
    position: fixed;
    top: 60px;
    left: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 0;
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.2);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  nav .nav-menu.active {
    display: flex;
    max-height: 500px;
    opacity: 1;
    padding: 2rem;
  }
  nav .nav-menu li {
    width: 100%;
  }
  nav .nav-menu li a {
    width: 100%;
    padding: 1rem 2rem;
  }
  nav .nav-menu li ul {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid #00bfff;
    margin-left: 2rem;
    margin-top: 0.5rem;
    padding-left: 2rem;
  }
  nav .nav-menu li:hover > ul, nav .nav-menu li:focus-within > ul {
    display: flex;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: transparent;
  border-color: #00bfff;
  color: #00bfff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

footer {
  background: #0a0a0a;
  color: #cccccc;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
  padding: 6rem 3rem 3rem;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  footer {
    padding: 6rem 3rem 3rem;
  }
}
@media (min-width: 992px) {
  footer {
    padding: 6rem 5rem 3rem;
  }
}
@media (min-width: 1200px) {
  footer {
    padding: 6rem 8rem 3rem;
  }
}
footer > section {
  padding: 0;
}
footer > section:nth-child(even) {
  background: transparent;
}
footer > section img {
  max-width: 150px;
  margin: 0 auto 2rem;
}
footer > section h4 {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.25rem;
}
footer > section p {
  color: #999999;
  font-size: 0.875rem;
  line-height: 1.7;
}
footer > section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer > section ul li {
  margin-bottom: 0.5rem;
}
footer > section ul li a {
  color: #999999;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
footer > section ul li a:hover {
  color: #00bfff;
  padding-left: 0.5rem;
}
footer > section address {
  color: #999999;
  font-size: 0.875rem;
  line-height: 1.8;
}
footer > section address br {
  margin-bottom: 0.5rem;
}
footer > section strong {
  color: #ffffff;
}
footer hr {
  grid-column: 1/-1;
  margin: 4rem 0 3rem;
  background: rgba(71, 85, 105, 0.3);
}
footer > p {
  grid-column: 1/-1;
  text-align: center;
  color: #999999;
  font-size: 0.875rem;
  margin: 0;
  padding-top: 2rem;
}
footer nav {
  grid-column: 1/-1;
  justify-content: center;
  margin-top: 1rem;
}
footer nav ul {
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer nav ul li {
  margin: 0;
}
footer nav ul li a {
  color: #999999;
  font-size: 0.875rem;
  padding: 0.5rem;
}
footer nav ul li a:hover {
  color: #00bfff;
}
footer .social-links {
  justify-content: center;
  margin-bottom: 2rem;
}
footer .social-links a {
  background: rgba(51, 65, 85, 0.5);
  color: #999999;
}
footer .social-links a:hover {
  background: #00B7EB;
  color: #ffffff;
}
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    padding: 4rem 2rem 2rem;
  }
  footer > section {
    text-align: center;
  }
  footer > section img {
    margin-left: auto;
    margin-right: auto;
  }
}

#showcase {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  color: #ffffff;
}
#showcase .showcase-content {
  position: relative;
  z-index: 2;
}
#showcase .showcase-content a {
  display: inline-block;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;
  font-size: 1rem;
  background: #00bfff;
  color: #000000;
  border-color: #00bfff;
  font-weight: 600;
  z-index: 10;
}
#showcase .showcase-content a:hover {
  background: rgb(209, 26, 209);
  color: #ffffff;
  border-color: #00B7EB;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
#showcase .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: 0;
  opacity: 0.6;
  object-fit: cover;
}
@media (max-width: 576px) {
  #showcase {
    min-height: 350px;
  }
  #showcase > section {
    min-height: 350px;
    padding: 3rem 1rem;
  }
  #showcase h1 {
    font-size: 1.75rem;
  }
  #showcase h2 {
    font-size: 1.1rem;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  #showcase {
    min-height: 400px;
  }
  #showcase > section {
    min-height: 400px;
    padding: 4rem 1.5rem;
  }
  #showcase h1 {
    font-size: 2rem;
  }
  #showcase h2 {
    font-size: 1.25rem;
  }
}

#features {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  text-align: center;
}
#features > section {
  flex: 1 1 350px;
  min-width: 0;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#features > section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
#features > section h4 {
  color: #00bfff;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
#features > section p {
  margin-bottom: 2rem;
  color: #e0e0e0;
  line-height: 1.7;
}
#features > section a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 2rem;
  background: transparent;
  border: 2px solid #00bfff;
  color: #00bfff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
#features > section a:hover {
  background: #00bfff;
  color: #000000;
}
#features > a {
  flex: 1 1 100%;
  display: inline-block;
  margin: 3rem auto 4rem;
}
@media (max-width: 576px) {
  #features {
    gap: 1.5rem;
  }
  #features > section {
    flex: 1 1 100%;
    padding: 2rem;
  }
  #features > section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  #features > section p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  #features > section a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  #features > a {
    margin: 2rem auto 3rem;
  }
}

#portfolio,
#text {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 3rem 0;
}
#portfolio article,
#text article {
  flex: 1 1 350px;
  min-width: 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#portfolio article:hover,
#text article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
#portfolio article a,
#text article a {
  display: block;
  position: relative;
  overflow: hidden;
  border: none;
}
#portfolio article img,
#text article img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border: none;
}
#portfolio article h4,
#text article h4 {
  background: linear-gradient(135deg, #00bfff 0%, rgb(0, 152.8, 204) 100%);
  color: #ffffff;
  padding: 2rem 3rem;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
#portfolio article p,
#text article p {
  padding: 0 2rem 2rem;
  color: #e0e0e0;
}
@media (max-width: 576px) {
  #portfolio,
  #text {
    gap: 1.5rem;
    margin: 2rem 0;
  }
  #portfolio article,
  #text article {
    flex: 1 1 100%;
  }
  #portfolio article img,
  #text article img {
    height: 200px;
  }
  #portfolio article h4,
  #text article h4 {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }
  #portfolio article p,
  #text article p {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
  }
}

#text article {
  padding: 4rem 2rem;
}
#text article h4 {
  background: linear-gradient(135deg, #00bfff 0%, rgb(0, 152.8, 204) 100%);
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 2rem;
  padding: 2rem 3rem;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
#text article p:first-of-type {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 3rem 0;
}
#text article p {
  padding: 0.5rem 2rem;
  color: #e0e0e0;
  font-size: 1rem;
}
#text article a {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 3rem;
}

#pricing {
  text-align: center;
}
#pricing h2, #pricing p {
  text-align: center;
  margin-bottom: 2rem;
}
#pricing .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
#pricing .container > h2, #pricing .container > p {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 2rem;
}
#pricing .container > h2 {
  margin-top: 0;
}
#pricing article {
  flex: 1 1 280px;
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#pricing article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
#pricing article h4 {
  background: linear-gradient(135deg, #00bfff 0%, rgb(0, 152.8, 204) 100%);
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 2rem;
  padding: 2rem 3rem;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
#pricing article p:first-of-type {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 3rem 0;
  padding: 0;
}
#pricing article p:first-of-type sup {
  font-size: 1.5rem;
  color: #e0e0e0;
}
#pricing article > p:not(:first-of-type) {
  padding: 1rem 2rem;
  color: #e0e0e0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  margin: 0;
}
#pricing article > p:not(:first-of-type):last-of-type {
  border-bottom: none;
}
#pricing article a {
  display: inline-block;
  align-self: end;
  margin-top: 3rem;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid #00bfff;
  color: #00bfff;
  text-decoration: none;
  font-weight: 600;
}
#pricing article a:hover {
  background: #00bfff;
  color: #000000;
}
@media (max-width: 576px) {
  #pricing article {
    flex: 1 1 100%;
    padding: 2rem;
  }
  #pricing article h4 {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }
  #pricing article p:first-of-type {
    font-size: 2rem;
  }
  #pricing article p {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  #pricing article a {
    margin-top: 2rem;
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
  }
}

#team {
  text-align: left;
}
#team .container > section {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "image header" "content content" "social social";
  gap: 0.5rem 1rem;
  width: 100%;
  margin: 1rem 0;
  padding: 1rem 2rem;
  background: #0a0a0a;
  border: 1px solid rgba(71, 85, 105, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
#team .container > section img {
  grid-area: image;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00bfff;
  object-fit: cover;
  align-self: start;
}
#team .container > section > h4 {
  grid-area: header;
  color: #f5f5f5;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
  align-self: center;
}
#team .container > section > p:first-of-type {
  grid-area: header;
  color: #00bfff;
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0.25rem 0 0 0;
  line-height: 1.3;
  align-self: end;
}
#team .container > section hr {
  display: none;
}
#team .container > section > p:not(:first-of-type) {
  grid-area: content;
  color: #e0e0e0;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}
#team .container > section ul {
  grid-area: social;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
#team .container > section ul li {
  margin: 0;
  flex-shrink: 0;
}
#team .container > section ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 0.5rem;
  border-radius: 14px;
  background: rgba(51, 65, 85, 0.5);
  color: #cccccc;
  font-size: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}
#team .container > section ul li a:hover {
  background: #00B7EB;
  color: #ffffff;
}
@media (max-width: 768px) {
  #team .container > section {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "header" "content" "social";
    gap: 1rem;
  }
  #team .container > section img {
    justify-self: center;
  }
  #team .container > section h4, #team .container > section p:first-of-type {
    text-align: center;
  }
  #team .container > section ul {
    justify-content: center;
  }
}

#contact {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
#contact form {
  flex: 1 1 500px;
  background: #0a0a0a;
  padding: 4rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
#contact form h3 {
  color: #00bfff;
  margin-bottom: 3rem;
}
#contact form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
  font-weight: 500;
}
#contact form input,
#contact form textarea,
#contact form select {
  margin-bottom: 2rem;
  background: #1a1a1a;
  border-color: #333333;
  color: #f5f5f5;
}
#contact form input:focus,
#contact form textarea:focus,
#contact form select:focus {
  border-color: #00bfff;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}
#contact form input::placeholder,
#contact form textarea::placeholder,
#contact form select::placeholder {
  color: #999999;
}
#contact form textarea {
  min-height: 120px;
  resize: vertical;
}
#contact form button[type=submit],
#contact form input[type=submit] {
  width: 100%;
  cursor: pointer;
  border: none;
}
#contact aside {
  flex: 1 1 300px;
  padding: 3rem;
}
#contact aside h3 {
  color: #00bfff;
  margin-bottom: 3rem;
}
#contact aside p {
  margin-bottom: 2rem;
  color: #e0e0e0;
}
#contact aside address {
  background: rgba(51, 65, 85, 0.3);
  padding: 2rem;
  border-left: 3px solid #00bfff;
  border-radius: 0;
  margin-bottom: 2rem;
  color: #cccccc;
}
@media (max-width: 768px) {
  #contact {
    flex-direction: column;
  }
  #contact form,
  #contact aside {
    flex: 1 1 100%;
  }
}
@media (max-width: 576px) {
  #contact form {
    padding: 2rem;
  }
  #contact form h3 {
    font-size: 1.25rem;
  }
  #contact form input,
  #contact form textarea,
  #contact form select {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  #contact aside {
    padding: 2rem;
  }
  #contact aside h3 {
    font-size: 1.25rem;
  }
  #contact aside p {
    font-size: 0.875rem;
  }
}

#gxdch-service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  #gxdch-service-container {
    grid-template-columns: 1fr;
  }
}

.card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
  background: linear-gradient(135deg, #00bfff 0%, rgb(0, 152.8, 204) 100%);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  text-align: center;
  letter-spacing: 0.5px;
}

.participant-result {
  padding: 1rem 1.5rem;
  background: rgba(30, 41, 59, 0.5);
  color: #ffffff;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.participant-result:contains("Compliant") {
  color: #4ade80;
}
.participant-result:contains("Invalid") {
  color: #f87171;
}

.card-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.card-table tr:first-child th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  color: #ffffff;
  background: rgba(30, 41, 59, 0.5);
  border-bottom: 2px solid rgba(148, 163, 184, 0.3);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-table tr:first-child th:first-child {
  padding-left: 1.5rem;
}
.card-table tr:first-child th:last-child {
  padding-right: 1.5rem;
}
.card-table td {
  padding: 1rem 1.5rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 0.95rem;
}
.card-table td:first-child {
  font-weight: 600;
  color: #00bfff;
  padding-left: 1.5rem;
}
.card-table td:nth-child(2) {
  color: rgba(226, 232, 240, 0.8);
  font-family: monospace;
}
.card-table td:last-child {
  padding-right: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.card-table td:last-child:contains("UP") {
  color: #4ade80;
}
.card-table td:last-child:contains("DOWN") {
  color: #f87171;
}
.card-table td:last-child:contains("N/A") {
  color: #fbbf24;
}
.card-table tr:last-child td {
  border-bottom: none;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge.status-up {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}
.status-badge.status-down {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.3);
}
.status-badge.status-na {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

@media (max-width: 768px) {
  .card-table {
    font-size: 0.9rem;
  }
  .card-table td, .card-table th {
    padding: 0.75rem 1rem;
  }
  .card-header {
    font-size: 1.1rem;
    padding: 1rem;
  }
}
.blog-preview-section .blog-preview-footer {
  text-align: center;
  padding-top: 2rem;
}
.blog-preview-section .blog-preview-footer .view-all-link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.blog-preview-section .blog-preview-footer .view-all-link:hover {
  background: #0056b3;
}

#join-ecosystem {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}
#join-ecosystem .ecosystem-wrapper {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem;
}
#join-ecosystem .ecosystem-form {
  background: #0a0a0a;
  padding: 4rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
#join-ecosystem .ecosystem-form h2 {
  color: #00bfff;
  margin-bottom: 2rem;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
#join-ecosystem .ecosystem-form p.form-description {
  color: #e0e0e0;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.7;
}
#join-ecosystem .ecosystem-form .form-field {
  margin-bottom: 2rem;
}
#join-ecosystem .ecosystem-form .form-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
  font-weight: 500;
  font-size: 1rem;
}
#join-ecosystem .ecosystem-form .form-field label.required::after {
  content: "*";
  color: #00bfff;
  margin-left: 4px;
}
#join-ecosystem .ecosystem-form .form-field input[type=text],
#join-ecosystem .ecosystem-form .form-field input[type=email] {
  width: 100%;
  padding: 1rem;
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 0;
  color: #f5f5f5;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  transition: all 0.3s ease;
}
#join-ecosystem .ecosystem-form .form-field input[type=text]:focus,
#join-ecosystem .ecosystem-form .form-field input[type=email]:focus {
  outline: none;
  border-color: #00bfff;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}
#join-ecosystem .ecosystem-form .form-field input[type=text]::placeholder,
#join-ecosystem .ecosystem-form .form-field input[type=email]::placeholder {
  color: #999999;
}
#join-ecosystem .ecosystem-form .form-field input[type=text]:hover,
#join-ecosystem .ecosystem-form .form-field input[type=email]:hover {
  border-color: #4a4a4a;
}
#join-ecosystem .ecosystem-form .form-field-checkbox {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
#join-ecosystem .ecosystem-form .form-field-checkbox input[type=checkbox] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #00bfff;
  cursor: pointer;
  flex-shrink: 0;
}
#join-ecosystem .ecosystem-form .form-field-checkbox input[type=checkbox]:focus {
  outline: 2px solid #00bfff;
  outline-offset: 2px;
}
#join-ecosystem .ecosystem-form .form-field-checkbox label {
  color: #e0e0e0;
  font-size: 0.875rem;
  line-height: 1.6;
  cursor: pointer;
  user-select: none;
}
#join-ecosystem .ecosystem-form .form-field-checkbox label a {
  color: #00bfff;
  text-decoration: none;
  transition: color 0.2s ease;
}
#join-ecosystem .ecosystem-form .form-field-checkbox label a:hover {
  color: #40c4ff;
  text-decoration: underline;
}
#join-ecosystem .ecosystem-form .form-field-checkbox label strong {
  color: #f5f5f5;
  font-weight: 600;
}
#join-ecosystem .ecosystem-form button[type=submit] {
  width: 100%;
}
#join-ecosystem .form-message {
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 0;
  text-align: center;
  font-size: 0.875rem;
  animation: slideDown 0.3s ease;
}
#join-ecosystem .form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}
#join-ecosystem .form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  #join-ecosystem .ecosystem-wrapper {
    padding: 3rem;
  }
  #join-ecosystem .ecosystem-form {
    padding: 3rem;
  }
  #join-ecosystem .ecosystem-form h2 {
    font-size: 1.5rem;
  }
  #join-ecosystem .ecosystem-form p.form-description {
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  #join-ecosystem {
    min-height: auto;
  }
  #join-ecosystem .ecosystem-wrapper {
    padding: 2rem;
  }
  #join-ecosystem .ecosystem-form {
    padding: 2rem;
  }
  #join-ecosystem .ecosystem-form h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  #join-ecosystem .ecosystem-form p.form-description {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
  #join-ecosystem .ecosystem-form .form-field {
    margin-bottom: 1rem;
  }
  #join-ecosystem .ecosystem-form .form-field label {
    font-size: 0.875rem;
  }
  #join-ecosystem .ecosystem-form .form-field input[type=text],
  #join-ecosystem .ecosystem-form .form-field input[type=email] {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  #join-ecosystem .ecosystem-form .form-field-checkbox {
    margin-bottom: 2rem;
  }
  #join-ecosystem .ecosystem-form .form-field-checkbox label {
    font-size: 0.813rem;
  }
  #join-ecosystem .ecosystem-form button[type=submit] {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

dialog {
  background: #0a0a0a;
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 0;
  padding: 4rem;
  max-width: 900px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}
dialog h1, dialog h2 {
  color: #00bfff;
  margin-bottom: 3rem;
}
dialog img {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin: 3rem 0;
  border: 1px solid rgba(71, 85, 105, 0.3);
}
dialog video {
  width: 100%;
  border-radius: 0;
  margin: 3rem 0;
  border: 1px solid rgba(71, 85, 105, 0.3);
}
dialog p {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 2rem;
}
dialog a {
  color: #00bfff;
}
dialog a:hover {
  color: #40c4ff;
}
dialog dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  margin: 4rem 0;
  padding: 3rem;
  background: rgba(51, 65, 85, 0.3);
  border-radius: 0;
  border-left: 3px solid #00bfff;
}
dialog dl dt {
  color: #e0e0e0;
  font-weight: 600;
}
dialog dl dt::after {
  content: "";
}
dialog dl dd {
  color: #e0e0e0;
  margin: 0;
}
dialog dl dd a {
  color: #00bfff;
  text-decoration: underline;
}
dialog dl dd a:hover {
  color: #40c4ff;
}
dialog button[type=button] {
  margin-top: 3rem;
  width: 100%;
  padding: 2rem;
  background: transparent;
  border: 1px solid #333333;
  color: #e0e0e0;
  cursor: pointer;
  font-weight: 500;
}
dialog button[type=button]:hover {
  background: rgba(51, 65, 85, 0.5);
  border-color: #00bfff;
  color: #00bfff;
}
dialog::-webkit-scrollbar {
  width: 10px;
}
dialog::-webkit-scrollbar-track {
  background: rgba(51, 65, 85, 0.3);
  border-radius: 5px;
}
dialog::-webkit-scrollbar-thumb {
  background: #00bfff;
  border-radius: 5px;
}
dialog::-webkit-scrollbar-thumb:hover {
  background: #40c4ff;
}
@media (max-width: 768px) {
  dialog {
    width: 95vw;
    padding: 3rem;
  }
  dialog dl {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  dialog dl dt {
    font-weight: 600;
    margin-top: 1rem;
  }
  dialog dl dt:first-child {
    margin-top: 0;
  }
}

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