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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0a0a;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ff6b35;
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section with Sliding Background */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 107, 53, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about-section {
  padding: 8rem 0;
  background: #111;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #999;
}

.about-description p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.feature-item i {
  color: #ff6b35;
  font-size: 1.2rem;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Beats Section */
.beats-section {
  padding: 8rem 0;
  background: #0a0a0a;
}

.beats-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #999;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  border-color: transparent;
}

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

.beat-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.beat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.beat-artwork {
 border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.beat-info {
  padding: 1.5rem;
  color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.beat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.beat-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-break: break-word;
  line-height: 1.3;
}

.beat-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ff6b35;
  flex-shrink: 0;
}

.beat-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #ccc;
  flex-wrap: wrap;
}

.beat-genre {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.beat-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.beat-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.beat-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.beat-purchase-btn {
  flex: 1;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 150px;
}

/* Media Section Styles */
.media-section {
  padding: 8rem 0;
  background: #111;
}

.media-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.media-tab {
  padding: 0.75rem 2rem;
  background: transparent;
  color: #999;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.media-tab.active,
.media-tab:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  border-color: transparent;
}

.media-tab-content {
  display: none;
}

.media-tab-content.active {
  display: block;
}

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

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.video-play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  font-size: 1.5rem;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.video-info p {
  color: #ccc;
  font-size: 0.9rem;
}

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

.image-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay h3 {
  margin: 0;
  font-size: 1rem;
}

/* Player Timer Styles */
.player-timer {
  font-size: 0.8rem;
  color: #ff6b35;
  font-weight: 600;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.purchase-modal,
.receipt-modal {
  background: #111;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .purchase-modal,
.modal-overlay.active .receipt-modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
  color: #fff;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #999;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #fff;
}

.modal-content {
  padding: 2rem;
}

.beat-preview {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.beat-preview img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.beat-details h3 {
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.beat-details p {
  color: #ccc;
  margin: 0 0 0.5rem 0;
}

.beat-price-display .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff6b35;
}

.license-options {
  margin-bottom: 2rem;
}

.license-options h4 {
  color: #fff;
  margin-bottom: 1rem;
}

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

.license-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.license-option:hover,
.license-option.selected {
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.license-option h5 {
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.license-option p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
}

.license-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff6b35;
}

.customer-info {
  margin-bottom: 2rem;
}

.customer-info h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.customer-info input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.customer-info input:focus {
  outline: none;
  border-color: #ff6b35;
}

.customer-info input::placeholder {
  color: #999;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-actions .btn-outline,
.modal-actions .btn-primary {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Receipt Modal Specific Styles */
.receipt-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.receipt-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.receipt-header h3 {
  color: #fff;
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.receipt-header p {
  color: #ccc;
  margin: 0.25rem 0;
}

.receipt-details {
  margin-bottom: 2rem;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ccc;
}

.receipt-item.total {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.receipt-footer {
  text-align: center;
  color: #ccc;
}

.receipt-footer p {
  margin: 0.5rem 0;
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  background: #111;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

.service-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff6b35;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: #0a0a0a;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

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

.contact-item p {
  color: #ccc;
  line-height: 1.4;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/* Footer */
.footer {
  background: #111;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: translateY(-2px);
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff6b35;
}

.footer-newsletter h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-newsletter p {
  color: #ccc;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

/* Enhanced Media Player */
.media-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.media-player.active {
  transform: translateY(0);
}

.player-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.player-artwork {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.player-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist {
  color: #999;
  font-size: 0.8rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.player-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.player-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.play-pause {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  font-size: 1rem;
}

.play-pause:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: scale(1.1);
}

.player-progress {
  flex: 1;
  margin: 0 1rem;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
}

.progress-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #999;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
}

/* Media Modal Styles */
.media-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.media-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.media-modal {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
}

.media-modal img,
.media-modal video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.media-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
}

.media-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .beats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .beat-card {
    min-height: 420px;
  }

  .beat-artwork {
    height: 200px;
    min-height: 200px;
  }

  .beat-info {
    padding: 1.25rem;
  }

  .beat-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .beat-price {
    font-size: 1.3rem;
    font-weight: 700;
  }

  .beat-meta {
    margin-bottom: 1rem;
  }

  .beat-tags {
    margin: 1rem 0;
    gap: 0.5rem;
  }

  .beat-actions {
    margin-top: auto;
    gap: 0.75rem;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .media-tabs {
    justify-content: center;
  }

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

  .modal-actions {
    flex-direction: column;
  }

  .beat-preview {
    flex-direction: column;
    text-align: center;
  }

  .media-player {
    padding: 0.75rem;
  }

  .player-content {
    gap: 0.75rem;
  }

  .player-artwork {
    width: 50px;
    height: 50px;
  }

  .player-info {
    flex: 1;
    min-width: 0;
  }

  .player-title {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .player-timer {
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 600;
  }

  .player-controls {
    gap: 0.5rem;
  }

  .player-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .player-progress {
    min-width: 120px;
  }

  .player-volume {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .beat-card {
    min-height: 380px;
  }

  .beat-artwork {
    height: 180px;
    min-height: 180px;
  }

  .beat-info {
    padding: 1rem;
  }

  .beat-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .beat-meta {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .beat-price {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .beat-tags {
    margin: 0.75rem 0;
    gap: 0.4rem;
  }

  .beat-tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  .beat-actions {
    margin-top: auto;
    gap: 0.5rem;
  }

  .btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

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

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

  .video-card,
  .image-card {
    min-height: 200px;
  }

  .video-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .video-info p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .beats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .beat-card {
    min-height: 360px;
  }

  .beat-artwork {
    height: 160px;
    min-height: 160px;
  }

  .beat-info {
    padding: 0.75rem;
  }

  .beat-title {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .beat-meta {
    font-size: 0.8rem;
  }

  .beat-price {
    font-size: 1.1rem;
  }

  .beat-tags {
    margin: 0.5rem 0;
  }

  .beat-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }

  .beat-actions {
    gap: 0.4rem;
  }

  .btn-small {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .videos-grid,
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .video-card,
  .image-card {
    min-height: 180px;
  }

  .media-modal {
    max-width: 95vw;
    max-height: 95vh;
  }

  .media-modal-close {
    top: -40px;
    right: -10px;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .media-player {
    padding: 0.5rem;
  }

  .player-content {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .player-artwork {
    width: 45px;
    height: 45px;
  }

  .player-info {
    flex: 1;
    min-width: 120px;
  }

  .player-title {
    font-size: 0.8rem;
  }

  .player-artist {
    font-size: 0.7rem;
  }

  .player-timer {
    font-size: 0.7rem;
  }

  .player-controls {
    gap: 0.4rem;
  }

  .player-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .player-progress {
    min-width: 100px;
    order: 4;
    flex-basis: 100%;
    margin-top: 0.5rem;
  }

  .progress-time {
    font-size: 0.7rem;
  }
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem;
  color: #fff;
  z-index: 10000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid #10b981;
  max-width: 350px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.toast-icon {
  color: #10b981;
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #10b981;
  border-radius: 0 0 10px 10px;
  animation: toast-progress 4s linear;
}

@keyframes toast-progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* Mobile Toast Positioning */
@media (max-width: 480px) {
  .toast {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }

  .toast.show {
    transform: translateY(0);
  }
}

