/* Modern CSS with dark theme for madeporn.pro */
:root {
  --primary: #8338ec; 
  --secondary: #ff006e;
  --dark: #151515;
  --light: #f8f9fa;
  --gray: #495057;
  --gray-dark: #212529;
  --gray-light: #adb5bd;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--light);
  background-color: var(--dark);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

h2:after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 5rem 1.5rem;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(21, 21, 21, 0.9);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.logo {
  height: 40px;
}

.menu {
  display: flex;
}

.menu li {
  margin-left: 2rem;
}

.menu a {
  position: relative;
  padding-bottom: 5px;
}

.menu a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.menu a:hover:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 80px;
  background-color: var(--dark);
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image svg {
  max-width: 100%;
  height: auto;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gradient);
  color: var(--light);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(131, 56, 236, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(131, 56, 236, 0.5);
}

.cta-button.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* About Section */
.about {
  background-color: var(--gray-dark);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--dark);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

/* Examples Section */
.examples {
  background-color: var(--dark);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.example-item {
  text-align: center;
}

.example-placeholder {
  width: 100%;
  padding-bottom: 100%; /* 1:1 Aspect Ratio */
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.example-placeholder svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Pricing Section */
.pricing {
  background-color: var(--gray-dark);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background-color: var(--dark);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid transparent;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  z-index: 2;
}

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

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--light);
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.price span {
  font-size: 1rem;
  color: var(--gray-light);
}

.features {
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.plan-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plan-button:hover {
  background-color: var(--primary);
  color: var(--light);
}

.plan-button.featured {
  background: var(--gradient);
  color: var(--light);
  border: none;
}

/* CTA Section */
.cta {
  background: var(--gray-dark);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta h2 {
  margin-bottom: 1.5rem;
}

.cta h2:after {
  display: none;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  padding: 5rem 1.5rem 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1 1 100%;
  margin-bottom: 2rem;
}

.logo-footer {
  height: 40px;
}

.footer-links {
  flex: 2;
  display: flex;
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h4:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--gray-light);
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-brand {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.footer-icon {
  max-width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--dark);
    padding: 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .menu.active {
    display: flex;
  }
  
  .menu li {
    margin: 1rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content, .hero-image {
    flex: 1 1 100%;
  }
  
  .hero-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .feature-cards, .examples-grid, .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-brand {
    justify-content: center;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  section {
    padding: 3rem 1rem;
  }
  
  .feature-card, .pricing-card {
    padding: 1.5rem;
  }
}
