/* --- NFT Glassmorphism Section Styles --- */
.nft-section {
     position: relative;
     padding: 100px 0;
     /* Dark Deep Background */
     background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
     overflow: hidden;
     font-family: 'Inter', sans-serif;
     color: #fff;
     min-height: 80vh;
     display: flex;
     align-items: center;
     justify-content: center;
}

/* Floating Ambient Orbs */
.orb-1 {
     position: absolute;
     top: 10%;
     left: 10%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(233, 69, 96, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
     filter: blur(80px);
     animation: float 8s ease-in-out infinite;
     z-index: 0;
}

.orb-2 {
     position: absolute;
     bottom: 20%;
     right: 10%;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(67, 97, 238, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
     filter: blur(100px);
     animation: float 12s ease-in-out infinite reverse;
     z-index: 0;
}

@keyframes float {
     0% {
          transform: translateY(0px);
     }

     50% {
          transform: translateY(-30px);
     }

     100% {
          transform: translateY(0px);
     }
}

.glass-container-nft {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     padding: 20px;
}

/* Glass Card 3D Effect */
.glass-card-nft {
     position: relative;
     width: 100%;
     max-width: 400px;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 30px;
     padding: 25px;
     box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.3),
          inset 0 0 0 1px rgba(255, 255, 255, 0.05);
     transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
     transform-style: preserve-3d;
}

.glass-card-nft:hover {
     transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.02);
     box-shadow:
          0 30px 60px rgba(0, 0, 0, 0.5),
          inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nft-image-wrapper {
     width: 100%;
     height: 350px;
     border-radius: 20px;
     overflow: hidden;
     margin-bottom: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     position: relative;
}

.nft-image-wrapper video,
.nft-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.7s;
}

.glass-card-nft:hover .nft-image-wrapper video,
.glass-card-nft:hover .nft-image-wrapper img {
     transform: scale(1.1);
}

.nft-info {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 15px;
}

.nft-title {
     font-size: 1.8rem;
     font-weight: 800;
     background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 0 2px 10px rgba(165, 180, 252, 0.3);
}

.nft-meta {
     display: flex;
     justify-content: space-between;
     color: rgba(255, 255, 255, 0.7);
     font-family: 'JetBrains Mono', monospace;
     font-size: 0.9rem;
     margin-bottom: 25px;
}

.nft-btn-group {
     display: flex;
     gap: 15px;
}

.btn-glass-primary {
     flex: 1;
     padding: 14px;
     border-radius: 12px;
     border: none;
     background: linear-gradient(135deg, #6c63ff 0%, #4facfe 100%);
     color: white;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     text-align: center;
     box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
     position: relative;
     overflow: hidden;
}

.btn-glass-primary::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
     transition: 0.5s;
}

.btn-glass-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(108, 99, 255, 0.6);
}

.btn-glass-primary:hover::before {
     left: 100%;
}

.btn-glass-secondary {
     flex: 1;
     padding: 14px;
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     background: rgba(255, 255, 255, 0.05);
     color: white;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-align: center;
}

.btn-glass-secondary:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: rgba(255, 255, 255, 0.4);
}

/* Text Section */
.nft-text-content h2 {
     font-size: 3.5rem;
     line-height: 1.1;
     margin-bottom: 20px;
     background: linear-gradient(to right, #ffffff, #6c63ff);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}

.nft-text-content p {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 40px;
     max-width: 500px;
}

/* Custom Cursor Interaction */
body.hover-glass .custom-cursor-outline {
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(5px);
}

body.hover-glass .custom-cursor-dot {
     background: #6c63ff;
     transform: scale(2);
}

/* Responsive */
@media (max-width: 900px) {
     .glass-container-nft {
          grid-template-columns: 1fr;
          text-align: center;
     }

     .nft-text-content p {
          margin: 0 auto 40px;
     }

     .nft-text-content h2 {
          font-size: 2.5rem;
     }
}