
:root {
  --purple-primary: #8E44AD;
  --yellow-primary: #F1C40F;
  --dark-bg: #0F0F0F;
  --light-text: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--light-text);
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('images/logo.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--yellow-primary);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInDown 1s ease-out;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.5s backwards;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background: var(--purple-primary);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-out 1s backwards;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
}

.featured-section {
  padding: 4rem 2rem;
  background: #1a1a1a;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--yellow-primary);
  margin-bottom: 2rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-item {
  background: #242424;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.featured-item:hover {
  transform: translateY(-10px);
}

.featured-image {
  width: 100%;
  height: 200px;
  background: url('/a/500f9949-dc48-4e41-b95d-0c5dd8f50d78') center/cover;
  border-bottom: 3px solid var(--purple-primary);
}

.featured-content {
  padding: 1.5rem;
}

.featured-content h3 {
  color: var(--purple-primary);
  margin-bottom: 1rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-bar {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icon:hover {
  background: var(--purple-primary);
}

.footer {
  text-align: center;
  padding: 2rem;
  background: #0a0a0a;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .social-bar {
    position: static;
    flex-direction: row;
    justify-content: center;
    padding: 1rem;
  }
}
