/* Base Styles */
:root {
  --primary: #6c63ff;
  --primary-light: #8a84ff;
  --primary-dark: #4a42d4;
  --text: #2d3748;
  --text-light: #718096;
  --bg: #f8f9fa;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --success: #48bb78;
  --warning: #ed8936;
  --danger: #f56565;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
}

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

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Add this to your styles.css */
.platforms-section {
  text-align: center;
  padding: 4rem 0;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 150px;
}

.platform img,
.platform svg {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.platform span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .platform {
    min-height: 130px;
    padding: 1.25rem 0.5rem;
  }
  
  /* In your styles.css, add these styles */
.platform img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

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

/* Ensure consistent sizing for all platform images */
.platform img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

/* Update the media query for smaller screens */
@media (max-width: 768px) {
  .platform img {
    width: 32px;
    height: 32px;
  }
}
  /* Add to your styles.css */
.platform svg {
  fill: currentColor;
  transition: transform 0.3s ease;
}

.platform:hover svg {
  transform: scale(1.1);
}

/* Set specific colors for each platform */
.platform:nth-child(1) { color: #1DB954; } /* Spotify */
.platform:nth-child(2) { color: #FF0000; } /* YouTube */
.platform:nth-child(3) { color: #1877F2; } /* Facebook */
.platform:nth-child(4) { color: #000000; } /* TikTok */
.platform:nth-child(5) { color: #FF9900; } /* Amazon Music */
}

@media (max-width: 480px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platform {
    min-height: 110px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Card */
.card {
  background: var(--card-bg);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: var(--transition);
}

/* Header */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 40px;
  width: auto;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.actions {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.side-visual img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.service i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.service p {
  color: var(--text-light);
}

/* Platforms Grid */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.platform i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.platform span {
  font-weight: 600;
  color: var(--text);
}

.platforms-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-style: italic;
}

/* Contact Section */
.contact {
  text-align: center;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  padding: 1rem;
  border-radius: 0.5rem;
}

.contact-item:hover {
  background: rgba(108, 99, 255, 0.1);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.foot-link {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.foot-link:hover {
  color: var(--primary-light);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: var(--transition);
  padding: 2rem;
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.sidebar-links a:hover {
  background: var(--primary);
  color: white;
}

.sidebar-links a i {
  width: 24px;
  text-align: center;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: var(--transition);
}

.backdrop.active {
  display: block;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta {
    justify-content: center;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .side-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .platform {
    padding: 1rem 0.5rem;
    min-height: 120px;
  }
  
  .platform img {
    width: 32px;
    height: 32px;
  }
  
  .platform i {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .topbar {
    padding: 0.75rem 1rem;
  }

  .logo {
    height: 32px;
  }

  .site-name {
    font-size: 1.25rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .hero {
    padding: 6rem 0 2rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}
/* In the media query for max-width: 576px */
@media (max-width: 576px) {
  /* ... existing styles ... */
  
  .footer {
    padding: 1.5rem 0;
  }
  
  .footer-inner {
    padding: 0 1rem;
  }
}

/* Add this to make the footer text smaller on mobile */
@media (max-width: 576px) {
  .footer,
  .footer * {
    font-size: 0.9rem;
  }
  
  .footer .foot-link {
    padding: 0.5rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.service, .platform {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

/* Add delay to each item */
.service:nth-child(1) { animation-delay: 0.1s; }
.service:nth-child(2) { animation-delay: 0.2s; }
.service:nth-child(3) { animation-delay: 0.3s; }
.service:nth-child(4) { animation-delay: 0.4s; }
.service:nth-child(5) { animation-delay: 0.5s; }
.service:nth-child(6) { animation-delay: 0.6s; }

/* Toggle Button */
.icon-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  display: none;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.checklist li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Tinted Section */
.tinted {
  background-color: #f8f9ff;
}

/* Watermark Effect */
.watermark {
  position: relative;
  overflow: hidden;
}

.watermark:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(108, 99, 255, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.watermark > * {
  position: relative;
  z-index: 2;
}