/* --- Google Font --- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");


:root {
  --primary-color: #ffffff;
  --text-color: #e0e0e0;
  --text-dark: #a0a0a0;
  --bg-color: #0c0c0c;
  --card-bg: rgba(26, 26, 26, 0.5);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.25);
  --glow-color: rgba(255, 255, 255, 0.05);

  --font-sans: "Inter", sans-serif;

  --accent-blue: #0ea5e9;
  --accent-pink: #db2777;
  --accent-purple: #c026d3;
  --accent-red: #e11d48;
  --accent-green: #16a34a;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-blue);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Glassmorphism Card Style --- */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.glowing-border {
  position: relative;
}
.glowing-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(
    from var(--angle),
    transparent 20%,
    var(--accent-blue),
    var(--accent-pink),
    transparent 80%
  );
  z-index: -1;
  border-radius: 14px;
  filter: blur(15px);
  opacity: 0.6;
  animation: glow-rotate 6s linear infinite;
  --angle: 0deg;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes glow-rotate {
  to {
    --angle: 360deg;
  }
}

.main-header {
  padding: 2rem 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  gap: 0.5rem;
}

.logo svg {
  width: 28px;
  height: 28px;
  color: var(--accent-blue);
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-button {
  background-color: var(--primary-color);
  color: var(--bg-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: var(--accent-blue);
  color: var(--primary-color);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.section {
  padding: 4rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.section-header a {
  font-weight: 600;
  color: var(--text-dark);
}

.section-header a:hover {
  color: var(--accent-blue);
}

.nft-hero-section {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 8rem;
}

.nft-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1rem;
  color: var(--primary-color); 
}

.nft-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-dark);
  max-width: 500px;
  margin: 0 auto 4rem auto;
}

#circle-container {
  height: 300px;
  perspective: 1200px;
  margin: 0 auto;
}

#circle-rotator {
  height: 100%;
  transform-style: preserve-3d;
  animation: spin 30s linear infinite;
  position: relative;
}

@keyframes spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.nft-card-3d {
  width: 250px;
  height: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  animation: intro 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nft-card-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@keyframes intro {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.full-screen-card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  margin-top: -4rem; 
  z-index: 1;
}

.background-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/Images/conimg2.jpg");
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease-out;
}

.full-screen-card:hover .background-image-layer {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: background-color 0.4s ease;
}

.full-screen-card:hover .overlay {
  background: rgba(0, 0, 0, 0.7);
}

.card-content {
  position: relative;
  z-index: 2;
  color: white;
  transition: transform 0.4s ease;
}

.full-screen-card:hover .card-content {
  transform: translateY(-10px);
}

.card-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/*
SLIDER FOR ALBUM PAGE ===

*/
.album-grid {
  display: flex;
  overflow-x: auto;       
  overflow-y: hidden;     
  padding: 20px 5px;      
  margin: -20px -5px;     
  gap: 2rem;
  -webkit-overflow-scrolling: touch; 
  scrollbar-color: var(--theme-color) rgba(0,0,0,0.2);
  scrollbar-width: thin;
}

.album-grid::-webkit-scrollbar {
  height: 8px;
}
.album-grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}
.album-grid::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  border-radius: 4px;
}


.album-card {
  flex: 0 0 250px; 
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.album-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}

.album-info {
  padding: 1.5rem;
}

.album-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.album-info p {
  color: var(--text-dark);
}

.artist-grid {
  display: flex;          
  overflow-x: auto;     
  overflow-y: hidden;    
  padding: 20px 5px;      
  margin: -20px -5px;    
  gap: 1.5rem;
  -webkit-overflow-scrolling: touch; 
  scrollbar-color: var(--theme-color) rgba(0,0,0,0.2);
  scrollbar-width: thin;
}

.artist-grid::-webkit-scrollbar {
  height: 8px;
}
.artist-grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}
.artist-grid::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  border-radius: 4px;
}

.artist-card {
  flex: 0 0 160px; 
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}


.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.artist-card img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid var(--glass-border);
}

.artist-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.artist-card p {
  color: var(--text-dark);
  font-size: 0.9rem;
}


/* --- Footer --- */
.main-footer {
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

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

.footer-content p {
  color: var(--text-dark);
}

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

.social-links a {
  color: var(--text-dark);
}

.social-links a:hover {
  color: var(--primary-color);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* --- Animation --- */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

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

.delay-100ms {
  animation-delay: 0.1s;
}
.delay-200ms {
  animation-delay: 0.2s;
}
.delay-300ms {
  animation-delay: 0.3s;
}
.delay-400ms {
  animation-delay: 0.4s;
}
.delay-500ms {
  animation-delay: 0.5s;
}
.delay-600ms {
  animation-delay: 0.6s;
}
.delay-700ms {
  animation-delay: 0.7s;
}
.delay-800ms {
  animation-delay: 0.8s;
}
.delay-900ms {
  animation-delay: 0.9s;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  #circle-container {
    perspective: 800px;
    height: 250px;
  }

  .nft-card-3d {
    width: 180px;
    height: 220px;
  }

  .full-screen-card {
    height: 300px;
  }

  .card-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .nft-hero-title {
    font-size: 2rem;
  }

  .nft-hero-subtitle {
    font-size: 1rem;
  }

  #circle-container {
    display: none; /* Hide 3D carousel on small screens*/
  }

  .nft-hero-section {
    padding-bottom: 4rem;
  }

  .full-screen-card {
    margin-top: 0;
  }

  .card-content h1 {
    font-size: 1.5rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
 
  }
}