/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  background: radial-gradient(circle at center, #330066, #000000);
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #6600cc;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

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

.logo img {
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

.logo span {
  font-size: 1.5em;
  font-weight: bold;
  background: linear-gradient(45deg, #00f, #f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #bdbdbf;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  background: rgba(102, 0, 204, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #330066 0%, #000000 50%, #6600cc 100%);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-overlay {
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 4em;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00f, #f0f, #0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #e6e6e6;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #c9c9cc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
  to { text-shadow: 0 0 30px rgba(255, 0, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.5); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #4f46e5, #7c3aed);
  color: white;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #4f46e5;
}

.btn-secondary:hover {
  background: #4f46e5;
  transform: translateY(-3px);
}

/* Showcase Section */
.showcase {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}

.showcase h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #00f, #f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-video {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 4px solid;
  border-image: linear-gradient(45deg, #00f, #f0f) 1;
}

.showcase-video iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Packages Section */
.packages {
  padding: 80px 0;
}

.packages h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #00f, #f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.package {
  background: rgba(51, 51, 51, 0.8);
  border: 2px solid #00ccff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.package:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 204, 255, 0.3);
  border-color: #00ffff;
}

.package.featured {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border-color: #fff;
  transform: scale(1.05);
}

.package.premium {
  background: linear-gradient(135deg, #cc0033, #ff6666);
  border-color: #ff9999;
}

.package-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.package h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.package p {
  margin-bottom: 20px;
  color: #c9c9cc;
}

.package.featured p,
.package.premium p {
  color: rgba(0, 0, 0, 0.8);
}

.package ul {
  list-style: none;
  margin-bottom: 25px;
  text-align: right;
}

.package li {
  padding: 5px 0;
  position: relative;
  padding-right: 20px;
}

.package li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #00ccff;
  font-weight: bold;
}

.package.featured li::before,
.package.premium li::before {
  color: #000;
}

.price {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #00ccff;
}

.package.featured .price,
.package.premium .price {
  color: #000;
}

.package-btn {
  width: 100%;
  padding: 15px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-btn:hover {
  background: #443dcd;
  transform: translateY(-2px);
}

.package.featured .package-btn,
.package.premium .package-btn {
  background: #000;
  color: white;
}

.package.featured .package-btn:hover,
.package.premium .package-btn:hover {
  background: #333;
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  backdrop-filter: blur(10px);
}

/* Creators Section */
.creators {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}

.creators h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #00f, #f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.creator-card {
  text-align: center;
  background: rgba(51, 51, 51, 0.6);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.creator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 204, 255, 0.2);
}

.creator-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00ccff;
}

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

.creator-card h4 {
  font-size: 1.2em;
  color: #e6e6e6;
}

/* Projects Section */
.projects {
  padding: 80px 0;
}

.projects h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #00f, #f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 15px 30px;
  background: transparent;
  color: #bdbdbf;
  border: 2px solid #4f46e5;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-2px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.project-card {
  background: rgba(51, 51, 51, 0.8);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: #00ccff;
  box-shadow: 0 15px 30px rgba(0, 204, 255, 0.2);
}

.project-video {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.project-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.project-info {
  padding: 20px;
}

.project-info h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #e6e6e6;
}

.project-info p {
  color: #c9c9cc;
  line-height: 1.5;
}

.more-projects {
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #00f, #f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(51, 51, 51, 0.6);
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 204, 255, 0.2);
}

.contact-icon {
  font-size: 2.5em;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 204, 255, 0.2);
  border-radius: 50%;
}

.contact-details h4 {
  font-size: 1.3em;
  margin-bottom: 5px;
  color: #e6e6e6;
}

.contact-details p {
  color: #c9c9cc;
  font-size: 1.1em;
}

/* Footer */
.site-footer {
  background: #111;
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid #6600cc;
}

.site-footer p {
  color: #bdbdbf;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em;
  }
  
  .hero h2 {
    font-size: 1.4em;
  }
  
  .hero p {
    font-size: 1em;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .nav {
    flex-direction: column;
    gap: 10px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .showcase-video iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: 2em;
  }
  
  .package {
    padding: 20px;
  }
  
  .project-card {
    margin: 0 10px;
  }
}
