/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1d37 0%, #1a3b5d 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1506318137071-a8e063b4ca59?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  opacity: 0.35;
  z-index: -1;
}

.hero {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  text-align: center;
}

.header {
  margin-bottom: 3rem;
}

.logo {
  height: 50px;
  filter: brightness(0) invert(1);
}

.title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.highlight {
  background: linear-gradient(90deg, #00d4ff, #fb00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem;
}

.intro,
.description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.description strong {
  color: #00ffbb;
}

a{
	text-decoration: underline;
    color: #fff;
}
a.yt_link {
	text-decoration: none;
    color: #fff;
}
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0a1d37;
}

.btn-dark {
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 3rem;
  }
  .highlight {
    font-size: 3.8rem;
  }
  .intro, .description {
    font-size: 1.1rem;
  }
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem;
  }
  .title {
    font-size: 2.5rem;
  }
  .highlight {
    font-size: 3rem;
  }
}