/* CSS Custom Properties */
:root {
  --color-primary: #00d9ff;
  --color-bg-dark: #0a0a0f;
  --color-bg-card: #16213e;
  --color-text-light: #ccd6f6;
  --color-text-muted: #8892b0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  overflow-x: hidden;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Remove default button styles */
button {
  font-family: inherit;
}

/* Smooth transitions for links */
a {
  transition: color 0.3s ease;
}

.App {
  min-height: 100vh;
  background: var(--color-bg-dark);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}

.logo-image {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-image {
  height: 40px;
}

.navbar-logo:hover .logo-image {
  transform: scale(1.05);
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 17px
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00d9ff;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  transition: font-size 0.3s ease;
}

.navbar.scrolled .logo-text {
  font-size: 1.3rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #8892b0;
  margin-top: -2px;
  transition: font-size 0.3s ease;
}

.navbar.scrolled .logo-subtitle {
  font-size: 0.65rem;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links button {
  background: none;
  border: none;
  color: #ccd6f6;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  font-family: inherit;
}

.navbar-links a {
  background: none;
  border: none;
  color: #ccd6f6;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.navbar-links button::after,
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d9ff;
  transition: width 0.3s ease;
}

.navbar-links button:hover,
.navbar-links a:hover {
  color: #00d9ff;
}

.navbar-links button:hover::after,
.navbar-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #00d9ff;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-links li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(136, 146, 176, 0.1);
  }

  .navbar-links button {
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-subtitle {
    font-size: 0.65rem;
  }

  .logo-image {
    height: 45px;
  }

  .navbar.scrolled .logo-image {
    height: 40px;
  }

  .navbar {
    padding: 1.5rem 0;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 217, 255, 0.03) 2px,
      rgba(0, 217, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 217, 255, 0.03) 2px,
      rgba(0, 217, 255, 0.03) 4px
    );
  animation: gridMove 20s linear infinite;
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(0, 217, 255, 0.1) 0%,
    transparent 50%
  );
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-text {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ccd6f6;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: #00d9ff;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #8892b0;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.5px;
}

.cta-primary {
  background: #00d9ff;
  color: #0a0a0f;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.cta-primary:hover {
  background: #00b8d9;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: #00d9ff;
  border: 2px solid #00d9ff;
}

.cta-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #00d9ff;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: #8892b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 90vh;
  }

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

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }

  .hero-stats {
    gap: 2rem;
    margin-top: 3rem;
  }
}
.about-section,
.services-section {
  padding: 6rem 2rem;
  background: #0a0a0f;
  position: relative;
}

.about-section {
  background: linear-gradient(180deg, #0a0a0f 0%, #16213e 100%);
}

.services-section {
  background: #0a0a0f;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ccd6f6;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #00d9ff;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #8892b0;
  margin-bottom: 4rem;
  max-width: 700px;
}

.about-content {
  max-width: 900px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #8892b0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(22, 33, 62, 0.4);
  border: 1px solid rgba(0, 217, 255, 0.1);
  border-radius: 8px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(10px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
  background: rgba(22, 33, 62, 0.6);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ccd6f6;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #8892b0;
}

@media (max-width: 768px) {
  .about-section,
  .services-section {
    padding: 4rem 1.5rem;
  }

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

  .service-card {
    padding: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

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

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #0a0a0f 0%, #16213e 100%);
  position: relative;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ccd6f6;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #00d9ff;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #8892b0;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.contact-item h4 {
  color: #ccd6f6;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #8892b0;
  font-size: 1rem;
}

.contact-form-wrapper {
  background: rgba(22, 33, 62, 0.4);
  border: 1px solid rgba(0, 217, 255, 0.1);
  border-radius: 8px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.success-message {
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid #00d9ff;
  color: #00d9ff;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #ccd6f6;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid rgba(136, 146, 176, 0.2);
  border-radius: 4px;
  padding: 0.875rem;
  color: #ccd6f6;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d9ff;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff5555;
}

.error-message {
  color: #ff5555;
  font-size: 0.875rem;
  margin-top: -0.25rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background: #00d9ff;
  color: #0a0a0f;
  border: none;
  border-radius: 4px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  letter-spacing: 0.5px;
}

.submit-button:hover {
  background: #00b8d9;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

.footer {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(136, 146, 176, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #8892b0;
  font-size: 0.9rem;
}

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

.footer-links a {
  color: #8892b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00d9ff;
}

.footer-heart {
  margin-top: 1rem;
  color: #8892b0;
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}

.footer-heart::before {
  content: '';
  display: block;
  margin: 1rem auto 1rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer {
    margin-top: 4rem;
  }
}
.music-player-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 100px 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-container {
  max-width: 600px;
  width: 100%;
}

.player-title {
  font-size: 3rem;
  color: #00d9ff;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.player-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
}

.player-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.1);
}

.now-playing {
  text-align: center;
  margin-bottom: 30px;
}

.now-playing h2 {
  color: #00d9ff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.now-playing p {
  color: #888;
}

.player-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.play-btn, .control-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  border: 2px solid #00d9ff;
  background: rgba(0, 217, 255, 0.1);
  color: #00d9ff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn {
  background: #00d9ff;
  color: #0a0a0a;
  font-weight: bold;
}

.play-btn:hover, .control-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.playlist {
  margin-top: 30px;
}

.playlist h3 {
  color: #00d9ff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.playlist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.playlist li {
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ccc;
}

.playlist li:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: #00d9ff;
  transform: translateX(5px);
}

.playlist li.active {
  background: rgba(0, 217, 255, 0.2);
  border-color: #00d9ff;
  color: #00d9ff;
  font-weight: bold;
}

.music-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #8892b0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.music-footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .player-title {
    font-size: 2rem;
  }
  
  .player-card {
    padding: 25px;
  }
  
  .player-controls {
    flex-direction: column;
  }
  
  .play-btn, .control-btn {
    width: 100%;
  }
}
