<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> :root {
      --primary-bg: #1e1e2e;
      --secondary-bg: #2b2b3d;
      --accent: #4e54c8;
      --highlight: #ffc107;
      --text-light: #f0f0f0;
      --text-muted: #8f94fb;
    }
   section{
      
      margin-bottom: 0 !important;
      box-shadow : none !important;
    }
    body {
      font-family: 'Poppins', sans-serif;
      padding: 0;
      background: linear-gradient(to bottom right, var(--primary-bg), var(--secondary-bg));
      color: var(--text-light);
      overflow-x: hidden;
      line-height: 1.6;
      position: relative;
    }
    h1, h2, p { margin: 0; padding: 0; }
    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    .text-center { text-align: center;
    margin-bottom: 10px !important; }
    .btn {
      display: inline-block;
      padding: 0.8rem 1.5rem;
      background: var(--accent);
      color: #fff;
      border: none;
      font-size: 20px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s ease;
    }
    .btn:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(78,84,200,0.6);
    }

    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background: var(--accent);
      width: 0%;
      z-index: 1000;
      transition: width 0.25s ease;
    }
 
    .logo-placeholder {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 100px;
      z-index: 1100;
    }
    .logo-placeholder img {
      width:250px;
    }
  
    

    #particles-js {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: -1;
    }
    
    /* HERO / HEADER */
    header.header {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--text-light);
      overflow: hidden;
      padding: 0 20px;
    }
    
   
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    header.header .content {
      position: relative;
      z-index: 1;
      animation: fadeIn 1s ease-in-out;
    }
    
    header.header h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    
    header.header p {
      font-size: 1.3rem;
      color: var(--text-muted);
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    }
    
    header.header .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 20px;
    }
    
    header.header .hero-note {
      font-size: 1rem;
      color: var(--text-muted);
      margin-top: 10px;
    }
    
    /* Ãconos del header */
    header.header .header-icons {
      position: absolute;
      bottom: 40px;
      display: flex;
      gap: 25px;
      font-size: 1.8rem;
      color: var(--highlight);
      z-index: 1;
    }
    
    header.header .header-icons i {
      transition: transform 0.3s ease;
    }
    
    header.header .header-icons i:hover {
      transform: scale(1.3);
    }
    
    /* ---------- SECTION: COMMUNICATION ---------- */
    section#communication {
      padding: 40px 20px;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      margin-bottom: 40px;
      animation: slideInFromLeft 1s ease;
    }
    section#communication h2 {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 10px;
    }
    section#communication p {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 30px;
    }
    .comm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .comm-card {
      background: var(--secondary-bg);
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.4);
      transition: transform 0.3s ease;
    }
    .comm-card:hover { transform: translateY(-5px); }
    .comm-card h3 {
      font-size: 1.5rem;
      color: var(--highlight);
      margin-bottom: 10px;
    }
    li ,ul {
      list-style: none;
      padding: 0;
    }
    .comm-card ul li {
      margin-bottom: 8px;
      position: relative;
    }
  
    .comm-card .description {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 10px;
    }
    /* ---------- SECTION: STORAGE ---------- */
    section#storage {
      padding: 40px 20px;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      margin-bottom: 40px;
      animation: slideInFromRight 1s ease;
    }
    section#storage h2 {
      font-size: 2rem;
      color: var(--highlight);
      margin-bottom: 10px;
    }
    section#storage p {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .storage-overview {
      background: var(--primary-bg);
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      margin-bottom: 20px;
      animation: slideInFromLeft 1s ease;
    }
    .storage-overview h3 {
      font-size: 1.8rem;
      color: var(--highlight);
      margin-bottom: 10px;
    }
    .progress-bar {
      background: var(--primary-bg);
      height: 24px;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      margin: 15px 0;
    }
    .progress-bar .fill {
      height: 100%;
      width: 70%;
      background: linear-gradient(90deg, var(--accent), var(--text-muted));
      box-shadow: 0 4px 10px rgba(78,84,200,0.6);
      transition: width 0.6s ease;
    }
    .storage-details {
      text-align: center;
      font-size: 1rem;
      color: var(--text-muted);
      font-weight: 600;
    }
    .file-explorer {
      background: rgba(43,43,61,0.95);
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.5);
      animation: slideInFromRight 1.2s ease;
    }
    .file-explorer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    .file-explorer-header h2 {
      font-size: 2rem;
      color: var(--highlight);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .file-tools {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .search-bar {
      flex-grow: 1;
      padding: 10px 15px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 12px;
      background: rgba(255,255,255,0.05);
      color: #fff;
      font-size: 1rem;
      outline: none;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    .search-bar:focus {
      border-color: var(--accent);
      box-shadow: 0 0 20px rgba(78,84,200,0.7);
    }
    .tool-btn {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 10px 15px;
      background: rgba(78,84,200,0.1);
      border: 2px solid transparent;
      color: var(--text-muted);
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s ease;
    }
    .tool-btn i { font-size: 1.3rem; }
    .tool-btn:hover {
      background: rgba(78,84,200,0.3);
      border-color: var(--text-muted);
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(78,84,200,0.6);
    }
    /* ---------- SECTION: SERVER MANAGEMENT ---------- */
    section#server {
      padding: 40px 20px;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      margin-bottom: 40px;
      animation: fadeIn 1s ease;
    }
    section#server h2 {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 10px;
    }
    section#server p {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .server-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .server-card {
      background: var(--secondary-bg);
      padding: 20px;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .server-card:hover { transform: translateY(-5px); }
    .server-card h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: var(--highlight);
    }
    .server-card ul li {
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
    }
    .server-card ul li::before {
      content: "\f0c8";
      font-family: "Font Awesome 6 Free"; font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--highlight);
    }
    /* ---------- SECTION: REMOTECRAFT ---------- */
    section#remotecraft {
      padding: 40px 20px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      margin-bottom: 40px;
      animation: zoomIn 1s ease;
    }
    section#remotecraft h2 {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 20px;
      text-align: center;
    }
    .remotecraft-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-bottom: 30px;
    }
    .action-btn {
      background: var(--accent);
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .action-btn:hover {
      background: #6f73e7;
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(78,84,200,0.6);
    }
    .players-info {
      margin-top: 40px;
      animation: fadeInUp 1s ease;
    }
    .player-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .player-item {
      background: var(--secondary-bg);
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    }
    .player-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    .player-name {
      font-size: 1.2rem;
      color: var(--highlight);
    }
    .player-uuid {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .player-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 10px;
    }
    .stat {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .player-location {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    .player-inventory {
      margin-top: 10px;
    }
    .inventory-title {
      font-size: 1rem;
      color: var(--highlight);
      margin-bottom: 5px;
    }
    .player-actions {
      margin-top: 10px;
      background: rgba(78,84,200,0.1);
      padding: 10px;
      border-radius: 8px;
      display: none;
    }
    .btn-toggle-actions {
      margin-top: 10px;
      background: var(--accent);
      color: #fff;
      padding: 8px 12px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .btn-toggle-actions:hover {
      background: #6f73e7;
    }
    /* ---------- SECTION: STAFF MEMBERS ---------- */
    section#staff {
      padding: 40px 20px;
      border-radius: 16px;
      margin-bottom: 40px;
      animation: fadeIn 1s ease;
    }
    section#staff h2 {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 20px;
      text-align: center;
    }
    .staff-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .staff-card {
      background: var(--secondary-bg);
      padding: 20px;
      border-radius: 50%;
      width: 180px;
      height: 180px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .staff-card:hover { transform: scale(1.1); }
    .staff-card h3 {
      font-size: 1.2rem;
      color: var(--highlight);
      margin-bottom: 5px;
    }
    .staff-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    section#documents {
      padding: 40px 20px;
      border-radius: 16px;
      margin-bottom: 40px;
      animation: slideInFromLeft 1s ease;
    }
    section#documents h2 {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 20px;
      text-align: center;
    }
    .documents-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .doc-card {
      background: var(--secondary-bg);
      padding: 20px;
      border: 2px solid var(--accent);
      border-radius: 10px 40px 10px 40px;
      transition: transform 0.3s ease;
    }
    .doc-card:hover { transform: rotate(1deg); }
    .doc-card h3 {
      font-size: 1.4rem;
      color: var(--highlight);
      margin-bottom: 10px;
    }
    .doc-card ul li {
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
    }
    .doc-card ul li::before {
      content: "\f044";
      font-family: "Font Awesome 6 Free"; font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--highlight);
    }
    
    section#tools {
      padding: 40px 20px;
      border-radius: 16px;
      margin-bottom: 40px;
      animation: slideInFromRight 1s ease;
    }
    section#tools h2 {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 20px;
      text-align: center;
    }
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .tool-card {
      background: var(--secondary-bg);
      padding: 20px;
      border-radius: 12px;
      border-left: 4px solid var(--accent);
      transition: transform 0.3s ease;
      position: relative;
    }
    .tool-card:hover { transform: translateX(10px); }
    .tool-card h3 {
      font-size: 1.4rem;
      color: var(--highlight);
      margin-bottom: 10px;
    }
    .tool-card ul li {
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
    }
    .tool-card ul li::before {
      content: "\f013";
      font-family: "Font Awesome 6 Free"; font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--highlight);
    }
    
    section#tasks {
      padding: 40px 20px;
      border-radius: 16px;
      margin-bottom: 40px;
      animation: fadeIn 1s ease;
    }
    section#tasks h2 {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 20px;
      text-align: center;
    }
    .tasks-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
    }
    .tasks-list li {
      background: var(--secondary-bg);
      padding: 15px 20px;
      margin-bottom: 12px;
      border-left: 6px solid var(--accent);
      border-radius: 8px;
      position: relative;
      transition: background 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .tasks-list li:hover {
      background: var(--accent);
      color: var(--primary-bg);
      transform: scale(1.02);
    }
    .tasks-list li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free"; font-weight: 900;
      position: relative;
      font-size: 1.5rem;
      color: #6f73e7;
      opacity: 0.8;
    }
    .tasks-list li .task-desc {
      font-size: 1rem;
      flex: 1;
    }
    .tasks-list li .task-date {
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    
    section#paths {
      padding: 40px 20px;
      border-radius: 16px;
      margin-bottom: 40px;
      animation: fadeIn 1s ease;
    }
    section#paths h2 {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 20px;
      text-align: center;
    }
    .paths-timeline {
      position: relative;
      padding-left: 40px;
      margin-top: 20px;
    }
    .paths-timeline::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--highlight);
      opacity: 0.7;
    }
    .path-item {
      position: relative;
      margin-bottom: 30px;
      padding: 20px;
      background: var(--secondary-bg);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      transition: transform 0.3s ease;
    }
    .path-item:hover {
      transform: translateX(5px);
    }
    .path-item::before {
      content: "";
      position: absolute;
      left: -10px;
      top: 20px;
      width: 20px;
      height: 20px;
      background: var(--highlight);
      border-radius: 50%;
      border: 3px solid var(--primary-bg);
    }
    .path-item h3 {
      font-size: 1.8rem;
      color: var(--highlight);
      margin-bottom: 5px;
    }
    .path-item p {
      font-size: 1rem;
      color: var(--text-muted);
    }
   
    footer {
      text-align: center;
      padding: 20px;
      border-top: 2px solid var(--accent);
      color: var(--text-muted);
    }
    footer p { font-size: 0.9rem; }

    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideInFromLeft {
      from { opacity: 0; transform: translateX(-100px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInFromRight {
      from { opacity: 0; transform: translateX(100px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes zoomIn {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }

    
#minecraft-ai {
  padding: 4rem 0;
}

section#minecraft-ai h2 {
  font-size: 2.5rem;
  color: var(--highlight);
  margin-bottom: 10px;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-card {
  background: var(--secondary-bg);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(78, 84, 200, 0.2);
}

.ai-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 10px 30px rgba(78, 84, 200, 0.15);
}

.hexagon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.ai-card h3 {
  color: var(--highlight);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.ai-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.ai-features p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.ai-description {
  background: rgba(78, 84, 200, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  border: 1px solid var(--accent);
}


@media screen and (max-width: 768px) {
  
  .container {
    padding: 20px 15px;
  }

  header.header {
    height: auto;
    padding: 100px 20px 60px;
  }
  
  header.header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  header.header p {
    font-size: 1.1rem;
  }

  .logo-placeholder {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 120px;
    z-index: 1000;
  }

  .logo-placeholder img {
    width: 160px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px !important;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  .comm-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .comm-card {
    padding: 15px;
  }

  .server-grid {
    grid-template-columns: 1fr !important;
  }

  .remotecraft-actions {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.95rem;
  }

 
  .ai-grid {
    grid-template-columns: 1fr !important;
  }

  .ai-card {
    padding: 1.5rem;
  }


  .staff-card {
    width: 140px;
    height: 140px;
    padding: 15px;
  }

  .staff-card h3 {
    font-size: 1rem;
  }

  
  .documents-grid {
    grid-template-columns: 1fr;
  }


  .file-explorer-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .file-tools {
    width: 100%;
    flex-direction: column;
  }

  .search-bar {
    width: 100%;
  }

  .player-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .player-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .tasks-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }


  .paths-timeline {
    padding-left: 20px;
  }

  .path-item {
    padding: 15px;
  }

  .path-item h3 {
    font-size: 1.4rem;
  }

 
  h2.text-center {
    font-size: 2rem !important;
  }

  p.text-center {
    font-size: 0.95rem !important;
  }

  [data-aos] {
    transition-delay: 0 !important;
  }

  /* Footer */
  footer {
    padding: 30px 15px;
  }

 
  .header-icons {
    position: relative;
    bottom: auto;
    margin-top: 30px;
    font-size: 1.5rem;
  }

  @media screen and (max-width: 480px) {
    header.header h1 {
      font-size: 2rem;
    }

    .player-stats {
      grid-template-columns: 1fr;
    }

    .server-card h3 {
      font-size: 1.2rem;
    }

    .hexagon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
  }
}


footer {
  background: linear-gradient(150deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  padding: 2rem 0;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--accent), var(--highlight)) 1;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.footer-main {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.footer-logo img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-footer {
  width: 140px;
  filter: drop-shadow(0 0 15px rgba(78, 84, 200, 0.3));
  opacity: 0.9;
}

.powered-logo {
  width: 100px;
  opacity: 0.8;
}

.logo-footer:hover {
  transform: rotate(-5deg) scale(1.05);
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(78, 84, 200, 0.5));
}

.powered-logo:hover {
  transform: scale(1.1);
  opacity: 1;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 1rem 0;
}

.highlight {
  background: linear-gradient(45deg, var(--accent), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--text-light);
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
}

.social-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, 
    rgba(78, 84, 200, 0.4) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
  background: rgba(78, 84, 200, 0.1);
}

.social-icon:hover .social-glow {
  opacity: 0.6;
}

.lynx-link {
  color: var(--highlight);
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

.lynx-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width 0.3s ease;
}

.lynx-link:hover {
  color: var(--text-light);
}

.lynx-link:hover::after {
  width: 100%;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 100%, 
    rgba(78, 84, 200, 0.1) 0%, 
    transparent 60%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo.left {
    order: -1;
  }
  
  .footer-logo.right {
    order: 2;
    margin-top: 1rem;
  }
  
  .logo-footer {
    width: 120px;
  }
  
  .powered-logo {
    width: 80px;
  }
  
  .footer-social {
    gap: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}



::-webkit-scrollbar {
  width: 10px;
  height: 8px;
  background: var(--primary-bg);
}

::-webkit-scrollbar-track {
  background: rgba(78, 84, 200, 0.05);
  border-radius: 10px;
  margin: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
  border: 2px solid var(--primary-bg);
  background-clip: padding-box;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--highlight);
  transform: scale(1.05);
}


* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--primary-bg);
}


html {
  scroll-behavior: smooth;
}


@media (prefers-reduced-motion: no-preference) {
  .scroll-animation {
    scroll-behavior: smooth;
    transition: scroll 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
}


@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 6px;
  }
  
  ::-webkit-scrollbar-thumb {
    border-width: 1px;
  }
}


body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

body::-webkit-scrollbar-thumb {
  background-image: linear-gradient(
    45deg,
    var(--accent),
    var(--highlight)
  );
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


.scroll-container {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--secondary-bg);
  overflow-y: auto;
  max-height: 400px;
}

.scroll-container::-webkit-scrollbar {
  width: 8px;
}</pre></body></html>