body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #121212;
  font-family: Vazirmatn, sans-serif;
  overflow: auto;
}

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.header {
  position: relative;
  z-index: 2;
  padding: 1.5rem 0;
  text-align: right;
  background: transparent;
}

.header h1 {
  color: rgba(255, 255, 255, 1);
  font-size: 3.5rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header p {
  color: #ffc800;
  margin: 0.5rem 0 0 0;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  text-align: center;
  background: transparent;
}

.footer p {
  color: #97f8ff;
  margin: 0;
  font-size: 0.9rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.album-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  animation: floatCard 6s ease-in-out infinite;
  perspective: 1000px;
  height: 100%;
  aspect-ratio: 1 / 1;
  opacity: 0.5;
}

.album-card:hover {
  transform: scale(1.03) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  opacity: 1;
}

@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05);
  transition: filter 0.3s ease;
}

.album-card:hover .album-cover {
  transform: scale(1.02) rotateX(2deg) rotateY(-2deg);
}

@media (max-width: 1024px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    width: 90%;
    max-width: 700px;
    margin: 50px;
  }
  
  .album-card {
    animation: floatCard 7s ease-in-out infinite;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }
  
  .header p {
    font-size: 1rem;
  }
  
  .content {
    padding: 1rem 0;
    align-items: flex-start;
    box-sizing: border-box;
    min-height: calc(100vh - 140px);
  }
  
  .album-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    padding: 0 1rem;
    margin: 50px;
    box-sizing: border-box;
  }
  
  .album-card {
    width: 100%;
    max-width: none;
    margin: 0;
    animation: floatCard 8s ease-in-out infinite;
    box-sizing: border-box;
    opacity: 0.5;
  }
  
  .footer {
    padding: 1.5rem 0;
  }
  
  .footer-links {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 0.8rem 0;
  }
  
  .album-grid {
    gap: 0.8rem;
    padding: 0 0.8rem;
  }
}

@media (max-width: 360px) {
  .content {
    padding: 0.6rem 0;
  }
  
  .album-grid {
    gap: 0.6rem;
    padding: 0 0.6rem;
  }
}

@media (min-width: 1600px) {
  .album-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    gap: 2rem;
  }
}

.logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
  transition: all 0.3s ease;
}

.logo-image {
  display: block;
  width: 70px;
  height: 29px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .logo-container {
      top: 15px;
      left: 15px;
  }

  .logo-image {
      width: 60px;
      height: 25px;
      opacity: 0.5;
  }
}

.about-section {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  margin: 2rem;
  border-radius: 15px;
}

.about-section .container {
  max-width: 800px;
}

.about-section h2 {
  color: #ea84ff;
  text-align: right;
  margin: 1.5rem;
  font-size: 1.6rem;
  font-weight: 300;
}

.about-section p {
  color: #e0e0e0;
  line-height: 1.8;
  margin: 1.5rem;
  font-size: 1.1rem;
  text-align: justify;
}

.about-section strong {
  color: #fff;
  font-weight: 500;
}




/* بخش شبکه های اجتماعی */
.social-section {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  background: transparent;
}

.social-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
  filter: brightness(1.1);
}

/* رسپانسیو برای تبلت */
@media (max-width: 768px) {
  .social-section {
    padding: 1.5rem 0;
  }
  
  .social-grid {
    gap: 1.5rem;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
  }
}

/* رسپانسیو برای موبایل */
@media (max-width: 480px) {
  .social-section {
    padding: 1rem 0;
  }
  
  .social-grid {
    gap: 1rem;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
  }
  
  .social-link {
    padding: 0.4rem;
  }
}




/* استایل بخش درباره هنرمند */
.artist-section {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  margin: 2rem;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.artist-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-image {
  flex: 0 0 280px;
}

.artist-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.artist-photo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.artist-info {
  flex: 1;
}

.artist-info h2 {
  color: #ea84ff;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-align: right;
  text-shadow: 0 0 10px rgba(234, 132, 255, 0.3);
}

.artist-info h3 {
  color: #ffc800;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-weight: 400;
  text-align: right;
  text-shadow: 0 0 8px rgba(255, 200, 0, 0.2);
}

.artist-bio p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #e0e0e0;
  font-size: 1.1rem;
}

.artist-bio strong {
  color: #fff;
  font-weight: 500;
}

.artist-achievements {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0;
}

.artist-achievements li {
  padding: 0.8rem 0 0.8rem 2.5rem;
  position: relative;
  line-height: 1.6;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;;
}

.artist-achievements li:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem 0.5rem 0.8rem 2.5rem;
}

.artist-achievements li::before {
  position: absolute;
  right: 0;
  color: #97f8ff;
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(151, 248, 255, 0.5);
}

/* طراحی واکنش‌گرا */
@media (max-width: 1024px) {
  .artist-content {
    gap: 2rem;
  }
  
  .artist-image {
    flex: 0 0 250px;
  }
}

@media (max-width: 768px) {
  .artist-section {
    margin: 1rem;
    padding: 2rem 0;
  }
  
  .artist-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .artist-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .artist-info h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .artist-info h3 {
    font-size: 1.3rem;
    text-align: right;
  }
  
  .artist-bio p {
    font-size: 1rem;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .artist-section {
    margin: 0.5rem;
    padding: 1.5rem 0;
  }
  
  .artist-info h2 {
    font-size: 1.6rem;
  }
  
  .artist-info h3 {
    font-size: 1.2rem;
  }
  
  .artist-achievements li {
    padding: 0.6rem 0 0.6rem 2rem;
    font-size: 0.9rem;
  }
}