        .nft-hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .nft-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .nft-video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.4) contrast(1.2);
        }
        
        .nft-video-mobile {
            display: none;
        }
        
        .nft-content-wrapper {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            width: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }
        
        .nft-main-content {
            margin-bottom: 0rem;
            max-width: 900px;
            width: 100%;
            margin-top: 25px;
        }
        
        .nft-main-heading {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nft-heading-line {
            display: block;
            position: relative;
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: fadeInUp 1s forwards;
        }
        
        .nft-heading-line:nth-child(1) {
            animation-delay: 0.3s;
            color: #fff;
            text-shadow: 0 0 15px rgba(105, 90, 166, 0.8);
        }
        
        .nft-heading-line:nth-child(2) {
            animation-delay: 0.6s;
            color: #8a2be2;
        }
        
        .nft-heading-line:nth-child(3) {
            animation-delay: 0.9s;
            color: #00ffcc;
        }
        
        .nft-icon-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .nft-icon-line::before, .nft-icon-line::after {
            content: "";
            height: 3px;
            width: 40px;
            background: linear-gradient(90deg, transparent, #8a2be2, transparent);
        }
        
        .nft-info-box {
            background: rgba(20, 20, 40, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(105, 90, 166, 0.4);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeIn 1.5s forwards;
            animation-delay: 1.2s;
        }
        
        .nft-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #e6e6ff;
        }
        
        .nft-partners {
            margin: 2rem 0;
        }
        
        .nft-partner-logos {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            animation: fadeIn 1s forwards;
            animation-delay: 1.5s;
        }
        
        .nft-partner-item {
            width: 80px;
            height: 80px;
            background: rgba(138, 43, 226, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #8a2be2;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .nft-partner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
            background: rgba(138, 43, 226, 0.2);
        }
        
        .nft-partner-item i {
            font-size: 2rem;
            color: #8a2be2;
        }
        
        .nft-bottom-shadow {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(transparent, #0a0a14);
            z-index: 2;
        }
        
        .nft-cta-button {
            background: linear-gradient(45deg, #8a2be2, #00ffcc);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            margin-top: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
            opacity: 0;
            animation: fadeIn 1s forwards;
            animation-delay: 1.8s;
        }
        
        .nft-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
        }
        
        .nft-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        
        .nft-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(138, 43, 226, 0.7);
            border-radius: 50%;
            animation: float 15s linear infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(720deg);
                opacity: 0;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .nft-main-heading {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 992px) {
            .nft-main-heading {
                font-size: 3.5rem;
            }
            
            .nft-description {
                font-size: 1.1rem;
            }
            
            .nft-partner-item {
                width: 70px;
                height: 70px;
            }
            
            .nft-partner-item i {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .nft-main-heading {
                font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: 1px;
            padding: 0 1rem;
            width: 100%;
            box-sizing: border-box;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }
            
            .nft-video-bg {
                display: none;
            }
            
            .nft-video-mobile {
                display: block;
            }
            
            .nft-description {
                font-size: 1rem;
                line-height: 1.5;
                padding: 0 0.5rem;
            }
            
            .nft-info-box {
                padding: 1.5rem;
                margin: 0 1rem;
                /* width: calc(100% - 2rem); */
            }
            
            .nft-partner-item {
                width: 60px;
                height: 60px;
            }
            
            .nft-partner-item i {
                font-size: 1.5rem;
            }
            
            .nft-cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
            
            .nft-content-wrapper {
                padding: 1rem;
                width: 95%;
            }
            
            .nft-icon-line::before, 
            .nft-icon-line::after {
                width: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .nft-main-heading {
                font-size: 2.2rem;
                padding: 0 0.5rem;
            }
            
            .nft-info-box {
                padding: 1rem;
                border-radius: 15px;
            }
            
            .nft-description {
                font-size: 0.95rem;
            }
            
            .nft-partner-logos {
                gap: 1rem;
            }
            
            .nft-partner-item {
                width: 50px;
                height: 50px;
            }
            
            .nft-partner-item i {
                font-size: 1.2rem;
            }
            
            .nft-cta-button {
                padding: 0.7rem 1.8rem;
                font-size: 0.95rem;
            }
            
            .nft-content-wrapper {
                padding: 0.5rem;
            }
            
            .nft-main-content {
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 400px) {
            .nft-main-heading {
                font-size: 1.8rem;
                margin-top: 0px;
            }
            
            .nft-info-box {
                padding: 0.8rem;
            }
            
            .nft-description {
                font-size: 0.9rem;
            }
            
            .nft-partner-logos {
                gap: 0.8rem;
            }
            
            .nft-partner-item {
                width: 45px;
                height: 45px;
            }
            
            .nft-partner-item i {
                font-size: 1rem;
            }
            
            .nft-cta-button {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }
        }
        
        /* For very small heights */
        @media (max-height: 700px) {
            .nft-hero {
                min-height: 600px;
                height: auto;
                padding: 4rem 0;
            }
            
            .nft-main-heading {
                font-size: 1rem !important;
                margin-bottom: 1rem;
                        margin-top: 46px;
            }
            
            .nft-info-box {
                margin: 1rem auto;
            }
            
            .nft-partners {
                margin: 1.5rem 0;
            }
        }
        
        /* Orientation adjustments */
        @media (max-height: 500px) and (orientation: landscape) {
            .nft-hero {
                padding: 2rem 0;
                min-height: 400px;
            }
            
            .nft-main-heading {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }
            
            .nft-info-box {
                padding: 1rem;
                margin: 0.5rem auto;
            }
            
            .nft-description {
                font-size: 0.9rem;
                line-height: 1.4;
            }
            
            .nft-partners {
                margin: 1rem 0;
            }
            
            .nft-cta-button {
                margin-top: 1rem;
                padding: 0.6rem 1.5rem;
            }
        }
        a {
            text-decoration: none;
        }
        /* Mobile Responsive */
@media (max-width: 768px) {
  .nft-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nft-image-box {
    order: -1;
  }
}
.nft-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nft-hero {
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: flex-end;  */
  min-height: 100vh;
  /*padding: 50px 10% 0;*/
  overflow: hidden;
  /* background: linear-gradient(90deg, #2E66FF, #22D48A); */
  color: white;
}

/* Background image */


/* Animation for background movement */
@keyframes moveBg {
  0%   { transform: translate(0, 0) scale(1.05); }
  50%  { transform: translate(-20px, -20px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1.05); }
}

.nft-main-content {
  max-width: 550px;
  z-index: 2;
}

.nft-main-heading {
  font-size: 2.8rem;
  line-height: 1.2;
}

.nft-description {
  margin: 20px 0;
  font-size: 1.1rem;
}




        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .faq-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(
120deg, #8a2be2, #01fff3, #3730a3);
            background-clip: text;
            color: #00000000;
        }
        
        .faq-subtitle {
            font-size: 1.2rem;
            color: #d1d1e8;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .faq-category {
            background: rgba(31, 31, 71, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .category-title {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: #2bb3e2;
        }
        
        .category-title i {
            font-size: 1.8rem;
        }
        
        .faq-item {
            margin-bottom: 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 1.2rem;
        }
        
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 0.8rem 0;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .faq-question:hover {
            color: #0ecab1;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            color: #d1d1e8;
            padding: 0.8rem 0;
            display: none;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        .faq-active i {
            transform: rotate(180deg);
        }
        
        .faq-search {
            max-width: 500px;
            margin: 2rem auto 3rem;
            position: relative;
        }
        
        .faq-search input {
            width: 100%;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: 2px solid rgba(91, 33, 182, 0.5);
            background: rgba(31, 31, 71, 0.4);
            color: white;
            font-size: 1rem;
            outline: none;
        }
        
        .faq-search i {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #8a2be2;
            font-size: 1.2rem;
        }
        
        .faq-contact {
            text-align: center;
            margin-top: 4rem;
            padding: 2rem;
            background: linear-gradient(45deg, rgba(91, 33, 182, 0.2), rgba(55, 48, 163, 0.2));
            border-radius: 16px;
        }
        
        .faq-contact h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #8a2be2;
        }
        
        .faq-contact p {
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-button {
            display: inline-block;
            background: linear-gradient(45deg, #8a2be2, #5b21b6);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(91, 33, 182, 0.4);
        }
        
        /* Animation for FAQ items */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-answer.show {
            animation: fadeIn 0.3s ease forwards;
        }
        
        /* Responsive design */
        @media (max-width: 968px) {
            .faq-title {
                font-size: 2.2rem;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
            
            .faq-container {
                padding: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }
            
            .faq-title {
                font-size: 1.8rem;
            }
            
            .faq-subtitle {
                font-size: 1rem;
            }
            
            .category-title {
                font-size: 1.2rem;
            }
            
            .faq-search {
                margin: 1rem auto 2rem;
            }
        }
                    .footer-outer-wrapper {
            background: linear-gradient(to bottom, rgba(18, 18, 38, 0.9), rgba(10, 10, 26, 1));
            border-top: 1px solid rgba(91, 33, 182, 0.3);
            padding: 0;
            margin-top: auto;
        }
        
        .footer {
            padding: 4rem 2rem 2rem;
            /* max-width: 1200px; */
            margin: 0 auto;
        }
        
        .footer-container {
            width: 100%;
        }
        
        .footer-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .top-block {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .footer-logo {
            height: 50px;
            width: auto;
            /* filter: brightness(0) invert(1); */
        }
        
        .footer-text {
            font-size: 1.1rem;
            color: #d1d1e8;
            max-width: 300px;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        
        .footer-nav, .footer-contact {
            display: flex;
            flex-direction: column;
        }
        
        .footer-block-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #2bb3e2;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-block-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(45deg, #233663, #48ac7a);
        }
        
        .nav-list1 {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .nav-link1 {
            transition: transform 0.3s ease;
        }
        
        .nav-link1:hover {
            transform: translateX(5px);
        }
        
        .footer-nav-text {
            color: #d1d1e8;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .footer-nav-text:hover {
            color: #0ed4b3;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding-top: 0rem;
            /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
        }
        
        .footer-bottom-l {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-credits-link {
            color: #d1d1e8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-credits-link:hover {
            color: #2be2d3;
        }
        
        .footer-rights {
            color: #a1a1c2;
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(91, 33, 182, 0.2);
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: linear-gradient(45deg, #8a2be2, #5b21b6);
            transform: translateY(-3px);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #d1d1e8;
            font-size: 0.95rem;
        }
        
        .contact-item i {
            color: #2bb3e2;
            width: 20px;
        }
        
        /* Responsive design */
        @media (max-width: 968px) {
            .footer-top {
                flex-direction: column;
                text-align: center;
            }
            
            .top-block {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-l {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .footer {
                padding: 3rem 1.5rem 1.5rem;
            }
            
            .footer-text {
                font-size: 1rem;
            }
            
            .footer-block-title {
                font-size: 1.2rem;
            }
            
            .footer-bottom-l {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        /* Decorative elements */
        .footer-decoration {
            position: absolute;
            pointer-events: none;
        }
        
        .decoration-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(91, 33, 182, 0.2) 0%, transparent 70%);
            bottom: -100px;
            right: -100px;
            z-index: 0;
        }
          .mv-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .mv-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 212, 255, 0.4);
    border: 1px solid #00d4ff;
  }

  /* Glow effect */
  .mv-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: 0;
  }

  .mv-card:hover::before {
    opacity: 1;
  }

  .mv-card * {
    position: relative;
    z-index: 1;
  }
  /* Hero Section */
.nft-hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
}

/* Floating BG Animation */
.nft-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/bg.jpg') no-repeat center center/cover;
  animation: floatBG 12s infinite alternate ease-in-out;
  opacity: 0.15;
  z-index: 1;
}

@keyframes floatBG {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-25px); }
}

/* Content */
.nft-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Heading Animation */
.nft-main-heading .nft-heading-line {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1s ease forwards;
}

.nft-main-heading .nft-heading-line:nth-child(1) {
  animation-delay: 0.3s;
}
.nft-main-heading .nft-heading-line:nth-child(2) {
  animation-delay: 0.6s;
  color: #ff3c78; /* Highlight line */
}
.nft-main-heading .nft-heading-line:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Paragraph */
.nft-description {
  font-size: 1.1rem;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 1.2s;
}

/* Button */
.nft-cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff3c78, #ff6c3c);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(255, 60, 120, 0.4);
  opacity: 0;
  transform: scale(0.9);
  animation: fadeScaleUp 1s ease forwards;
  animation-delay: 1.5s;
}

.nft-cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 60, 120, 0.7);
}

@keyframes fadeScaleUp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

