<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Zmienne globalne */
:root {
  --primary: #00f2fe;
  --secondary: #4facfe;
  --accent: #7367f0;
  --dark: #0a1f44;
  --light: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  
  --transition: all 0.3s ease;
  
  --neon-glow: 0 0 10px rgba(0, 242, 254, 0.5),
               0 0 20px rgba(0, 242, 254, 0.3),
               0 0 30px rgba(0, 242, 254, 0.1);
  --card-gradient: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --glass-effect: rgba(255, 255, 255, 0.1);
  --cyber-gradient: linear-gradient(45deg, #00f2fe, #4facfe, #7367f0);
  --cyber-shadow: 0 0 20px rgba(0, 242, 254, 0.3),
                  0 0 40px rgba(79, 172, 254, 0.2),
                  0 0 60px rgba(115, 103, 240, 0.1);
}

/* Reset i podstawowe style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2942 100%);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animowany background z blockchain */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(0,242,254,0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,242,254,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Nawigacja */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 31, 68, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 242, 254, 0.2);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.2rem;
}

nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyber-gradient);
  transition: width 0.3s ease;
}

nav a:hover::before {
  width: 100%;
}

nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

/* Header/Hero section */
header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: linear-gradient(rgba(10,31,68,0.8), rgba(10,31,68,0.9)),
              url('AKBG.jpg') center/cover;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--dark) 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

header h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  background: var(--cyber-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Sekcja projektÃ³w */
#projects {
  padding: 150px 20px;
  background: linear-gradient(rgba(10,31,68,0.95), rgba(10,31,68,0.98));
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--cyber-shadow);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 254, 0.3),
    transparent
  );
  transition: 0.8s;
}

.project-card:hover::before {
  left: 100%;
}

.project-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.3),
              0 0 60px rgba(79, 172, 254, 0.2),
              0 0 90px rgba(115, 103, 240, 0.1);
  border-color: var(--primary);
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  filter: brightness(0.9) contrast(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-card:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

.project-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: var(--cyber-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.project-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.project-card .cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--cyber-gradient);
  color: var(--light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  text-align: center;
  margin-top: auto;
}

.project-card .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

/* Sekcja tokenomii */
#tokenomics {
  padding: 150px 20px;
  background: linear-gradient(rgba(10,31,68,0.95), rgba(10,31,68,0.98));
}

.tokenomics-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.token-box {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.token-box h3 {
  font-size: 1.6rem;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.token-box .percentage {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6600;
  margin: 0.5rem 0;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.token-box .percentage span {
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.token-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  margin-top: 1rem;
  padding: 0 1rem;
}

.token-box .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ff6600;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
  animation: pulse 2s infinite;
}

.token-box:hover .icon {
  animation: pulse 1s infinite;
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.5),
               0 0 30px rgba(255, 102, 0, 0.3);
}

.token-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.token-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 102, 0, 0.1),
    transparent
  );
  transition: 0.8s;
}

.token-box:hover::before {
  left: 100%;
}

/* Animacje dla sekcji */
.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--cyber-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--cyber-gradient);
  border-radius: 3px;
}

/* Animacje */
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0,242,254,0.5),
                 0 0 20px rgba(0,242,254,0.3),
                 0 0 30px rgba(0,242,254,0.1);
  }
  50% {
    text-shadow: 0 0 20px rgba(0,242,254,0.8),
                 0 0 30px rgba(0,242,254,0.6),
                 0 0 40px rgba(0,242,254,0.4);
  }
}

/* ResponsywnoÅ›Ä‡ */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .tokenomics-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .project-card {
    min-height: 450px;
    padding: 2rem;
  }
  
  .project-card img {
    height: 250px;
  }
  
  .project-card h3 {
    font-size: 1.8rem;
  }
  
  .project-card p {
    font-size: 1.1rem;
  }
}

/* Efekty szklane dla FAQ */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--cyber-shadow);
}

.faq-item h4 {
  background: var(--cyber-gradient);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-item p {
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  color: var(--light);
}

/* Social links */
.social-links a {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 1rem 2rem;
  border-radius: 30px;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--cyber-shadow);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--cyber-shadow);
  background: var(--cyber-gradient);
  border-color: var(--primary);
}

/* Footer */
footer {
  background: rgba(10,31,68,0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 242, 254, 0.2);
  padding: 2rem;
  text-align: center;
  color: var(--light);
  box-shadow: 0 -5px 20px rgba(0, 242, 254, 0.1);
}

/* Blockchain Animation */
.blockchain-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
  background: 
    linear-gradient(90deg, rgba(0,242,254,0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,242,254,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 20s linear infinite;
}

/* Cyberpunk Elements */
.cyber-border {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  padding: 2px;
  border-radius: 20px;
}

.cyber-border::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  border-radius: 18px;
  z-index: -1;
}

/* Hover Effects */
.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  text-shadow: 0 0 10px var(--primary),
               0 0 20px var(--primary),
               0 0 30px var(--primary);
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading::after {
  content: '';
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Animacje */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Animacje fade-in na sekcje */
.hidden-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Efekt Å›wiecenia dla tokenomii */
.token-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 102, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.token-box:hover::after {
  opacity: 1;
}

/* Tokenomics Details */
.tokenomics-details {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 254, 0.2);
  max-width: 1810px;
  margin-left: auto;
  margin-right: auto;
}

.token-info {
  padding: 2rem;
}

.token-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: var(--cyber-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.token-info ul {
  list-style: none;
}

.token-info li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.token-info li::before {
  content: 'âœ“';
  color: var(--primary);
  font-weight: bold;
}

.token-chart {
  padding: 2rem;
}

.token-chart h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: var(--cyber-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.chart-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 300px;
  padding: 2rem 0;
  gap: 1rem;
  margin-top: 2rem;
}

.chart-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.chart-bar {
  width: 100%;
  background: linear-gradient(45deg, #ff6600, #ff9900);
  border-radius: 10px 10px 0 0;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.chart-bar:hover {
  transform: scaleY(1.05);
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.chart-bar span {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light);
  font-size: 0.9rem;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* ResponsywnoÅ›Ä‡ dla tokenomii */
@media (max-width: 1200px) {
  .tokenomics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
  .token-box {
    min-height: auto;
    padding: 2rem;
  }
}

/* Animacje dla tokenomii */
.token-box {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efekt Å›wiecenia dla chart-bar */
.chart-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chart-bar:hover::after {
  opacity: 1;
}

/* Efekt pulsowania dla ikon */
.token-box .icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
} </pre></body></html>