@font-face {
  font-family: "MySinuFont";
  src: url("sinufont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #ffffff;
  --accent-yellow: #ffffff; 
  --section-blue: #ffffff; 
  --section-purple: #ffffff;
  --section-green: #ffffff;   
  --section-cyan: #ffffff;    
  --section-orange: #ffffff;   
  --section-pink: #ffffff;    
  --bg-dark: #121212;    
  --bg-card: #1E1E1E;      
  --bg-nav: rgba(0, 0, 0, 0.765); 
  --text-main: #ffffff;     
  --text-muted: #8a8a8a;   
  --border: #333333;         
  --border-hover: #ffffff;  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "MySinuFont", monospace;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #222;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
               0 0 20px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 3px;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 10px;
  background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-dark) 70%);
  overflow: hidden;
}

.canvas-wrapper {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

#heroCanvas {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--primary));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: var(--primary);
  color: #000;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.features {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #333;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card ul {
  list-style-position: inside;
  color: var(--text-muted);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 10%;
  gap: 2rem;
  background-color: #111;
}

.half-section {
  flex: 1;
  min-width: 300px;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #333;
}

.buy-box {
  border: 1px solid var(--primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #333;
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  margin: 5px;
  transition: all 0.3s;
  min-width: 140px;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.allegro-btn {
  background: #ff5a00;
  color: white;
  border: none;
}

.allegro-btn:hover {
  background: #e04e00;
  color: white;
  box-shadow: 0 0 15px rgba(255, 90, 0, 0.3);
}

footer {
  font-family: "Segoe UI", Arial, sans-serif !important;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #333;
  color: var(--text-muted);
  font-size: 0.9rem;
}

i {
  font-size: 25px;
}

.contact-section {
  padding: 4rem 10%;
  text-align: center;
  background-color: #050505;
  border-top: 1px solid #222;
}

.contact-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border: 1px solid #333;
  border-radius: 10px;
  min-width: 250px;
}

.assistant {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  font-family: "MySinuFont", monospace;
}

.assistant__toggle {
  width: 90px;
  height: 90px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.assistant__toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assistant__panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(360px, calc(100vw - 36px));
  height: 420px;
  background: #050505;
  border: 1px solid #333;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
}

.assistant__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #222;
  color: var(--primary);
  background: rgba(0, 0, 0, 0.6);
}

.assistant__close {
  background: transparent;
  border: 0;
  color: var(--text-main);
  font-size: 22px;
  cursor: pointer;
}

.assistant__messages {
  padding: 12px;
  height: calc(100% - 98px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  max-width: 85%;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid #222;
  color: var(--text-main);
  background: #0a0a0a;
  white-space: pre-wrap;
}

.msg--user {
  align-self: flex-end;
  border-color: rgba(255, 255, 255, 0.35);
}

.msg--bot {
  align-self: flex-start;
}

.assistant__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #222;
}

.assistant__form input {
  background: #000;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 10px;
  color: var(--text-main);
  outline: none;
}

.assistant__form button {
  background: var(--primary);
  color: #000;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: bold;
  cursor: pointer;
}

.sinu-face {
  position: relative;
  width: 100%;
  height: 100%;
}

.sinu-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eye {
  position: absolute;
  width: 22px;
  height: 22px;
  background: transparent;
  top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.eye--left {
  left: 20px;
}

.eye--right {
  right: 20px;
}

.pupil {
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.server-status-bar {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 15px 0;
  margin-top: -2rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.status-container {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Courier New", monospace;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blink-dot {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: pulse-white 2s infinite;
}

.status-text {
  color: var(--text-main);
  font-size: 1rem;
  letter-spacing: 1px;
}

.divider {
  color: #333;
  margin: 0 10px;
}

.counter-value {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.why-lite-section {
  padding: 6rem 10%;
  text-align: center;
  background: #111;
  position: relative;
}

.why-lite-title {
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: var(--text-main);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.why-lite-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.reasons-container {
  max-width: 800px;
  margin: 0 auto;
}

.reason-item {
  opacity: 0;
  transform: translateY(30px);
  padding: 2rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid #333;
  transition: all 0.4s ease;
  text-align: left;
}

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

.reason-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.reason-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.reason-item p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

@media (max-width: 850px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    transition:
      transform 0.35s ease,
      opacity 0.25s ease;
  }
  
  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .status-text {
    font-size: 0.8rem;
  }
  
  .counter-value {
    font-size: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}
.lite-promo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 2rem 10px;
  background-color: #111; 
  margin-top: -2rem; 
}

.lite-text {
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 500;
}

.lite-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 50%; 
  transition: transform 0.3s ease;
}

.lite-img {
  width: 60px; /
  height: auto;
  display: block;
  animation: light-pulse 2s infinite alternate ease-in-out;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.lite-btn:hover .lite-img {
  filter: drop-shadow(0 0 25px #3adff5);
  transform: scale(1.1);
  cursor: pointer;
}

@keyframes light-pulse {
  0% {
    filter: drop-shadow(0 0 5px #3adff5);
  }
  100% {
    filter: drop-shadow(0 0 15px #3adff5);
  }
}

.transition-overlay {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: #3adff5;
  border-radius: 50%;
  pointer-events: none; 
  z-index: 99999; 
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.2s ease-in, opacity 0.1s;
}

.transition-overlay.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(300); 
}

.full-version-promo {
  padding: 5rem 10%;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  position: relative;
  overflow: hidden;
}

.full-version-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3adff5, transparent);
}

.promo-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-content {
  text-align: left;
}

.promo-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, #3adff5);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.promo-badge {
  display: inline-block;
  background: rgba(58, 223, 245, 0.1);
  border: 1px solid rgba(58, 223, 245, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
}

.badge-text {
  color: #3adff5;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.promo-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.promo-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(58, 223, 245, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 280px;
  justify-content: center;
}

.promo-btn:hover {
  border-color: #3adff5;
  background: rgba(58, 223, 245, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(58, 223, 245, 0.2);
}

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

.promo-btn:hover::before {
  left: 100%;
}

.promo-icon-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
}

.promo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(58, 223, 245, 0.6));
  z-index: 2;
  position: relative;
  animation: gentle-pulse 3s infinite alternate;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(58, 223, 245, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 2s infinite alternate;
}

.promo-btn-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.promo-btn i {
  font-size: 1.5rem;
  color: #3adff5;
  transition: transform 0.3s;
}

.promo-btn:hover i {
  transform: translateX(5px);
}

.promo-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5rem;
}

@keyframes gentle-pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(58, 223, 245, 0.6));
  }
  100% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(58, 223, 245, 0.8));
  }
}

@keyframes glow-pulse {
  0% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@media (max-width: 768px) {
  .promo-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .promo-content {
    text-align: center;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
  
  .promo-btn {
    min-width: 240px;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .full-version-promo {
    padding: 3rem 5%;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .promo-description {
    font-size: 1rem;
  }
}
