/* Global Styles */
:root {
  --primary-color: #9c27b0;
  --secondary-color: #673ab7;
  --accent-color: #e91e63;
  --background: #121212;
  --text-color: #ffffff;
  --card-bg: #1e1e1e;
  --gradient-start: #9c27b0;
  --gradient-end: #e91e63;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

/* Header Styles */
header {
  background-color: rgba(18, 18, 18, 0.95);
  position: fixed;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  color: var(--accent-color);
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
}

nav ul li a:hover {
  color: var(--accent-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(30, 30, 30, 0.8)), 
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="%23121212"/><path d="M0 50 C25 30, 75 30, 100 50 S75 70, 50 90, 25 70, 0 50" fill="none" stroke="%239c27b0" stroke-width="0.5"/></svg>');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  padding-top: 70px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(156, 39, 176, 0.6);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--background);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--accent-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

/* Content Showcase */
.content-showcase {
  padding: 100px 0;
  background-color: #0a0a0a;
}

.content-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 0.8;
}

.content-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.highlight {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.highlight:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: var(--primary-color);
}

.highlight h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

/* Call to Action */
.call-to-action {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  text-align: center;
}

.call-to-action h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.call-to-action p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

.call-to-action .cta-button {
  background: white;
  color: var(--primary-color);
}

.call-to-action .cta-button:hover {
  background: var(--background);
  color: white;
}

/* Footer */
footer {
  background-color: #0a0a0a;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  color: var(--accent-color);
}

.copyright {
  margin-top: 15px;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 1.2rem;
  }
  
  nav ul li {
    margin-left: 15px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .features h2,
  .content-showcase h2,
  .call-to-action h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
  }
  
  nav {
    margin-top: 15px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  .hero-content {
    padding-top: 120px;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-button {
    padding: 12px 25px;
  }
}
