@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

bodyx {
    background: linear-gradient(135deg, #181627 0%, #2b254a 50%, #3a1c5c 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
   
}



.tablet-frame {
    background: #000;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
}

.tablet-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #333;
    border-radius: 3px;
}



/* Animated Background Elements */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 80%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Navigation */
.navbar {
    padding: 25px 10px;
    background: transparent;
    z-index: 100;
    position: relative;
}

.navbar-brand {
    color: white !important;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.8) !important;
    margin: 0 25px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.auth-buttons .btn {
    margin-left: 15px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline-light {
    color: white;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

.btn-outline-light:hover {
    background: white;
    color: #1e1b4b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: 2px solid transparent;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 40px 20px;
    position: relative;
    z-index: 10;
    min-height: 60vh;
}

.hero-title {
    font-size: 4.0rem;
    font-weight: 800;
    color: white;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 450px;
    line-height: 1.6;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.get-started-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

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

.get-started-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.5);
}

.get-started-btn:hover::before {
    left: 100%;
}

  /* Character Container */
  .character-container {
    position: absolute;
    right: max(40px, calc(50% - 200px));
    top: 50px;
    z-index: 5;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.character-image {
    width: 450px;
    height: 550px;
    position: relative;
    animation: characterFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* NFT Card */
.nft-card {
    position: absolute;
    right: 80px;
    top: 150px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 25px;
    width: 210px;
    height: 230px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid black;
}

.nft-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.nft-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid black;
}

.nft-avatar img {
    border-radius: 50%;
    height: 80px;
    width:80px;
    object-fit: cover;

}


.nft-price {
    margin-top: 40px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.diamond-icon {
    color: #1f2937;
    font-size: 2.5rem;
}

.nft-creator {
    color: #6b7280;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
}

.nft-creator strong {
    color: #1f2937;
    font-weight: 600;
   
}

/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, #23203a 80%, #23203a 100%);
    backdrop-filter: blur(20px);
    margin-top: 70px;
    border-radius: 0 0 30px 30px;
    padding: 0;
    position: relative;
    z-index: 500;
    min-height: 160px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: hidden;
}

.stats-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
    max-width: 350px;
    line-height: 1.5;
    opacity: 0.85;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.5rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    display: block;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.vertical-divider {
    width: 2px;
    height: 48px;
    background: rgba(255,255,255,0.13);
    margin: 0 24px;
    border-radius: 1px;
    align-self: center;
}

.stats-learn-card {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    padding: 24px 18px;
    width: 140px;
    color: white;
    min-width: 120px;
    min-height: 120px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-learn-card .play-button {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.stats-learn-card .learn-text {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1200px) {
    .stats-section {
        border-radius: 0 0 20px 20px;
    }
    .stats-learn-card {
        width: 110px;
        min-width: 90px;
        padding: 16px 8px;
    }
    .vertical-divider {
        margin: 0 12px;
    }
}

@media (max-width: 992px) {
    .stats-section {
        border-radius: 0 0 16px 16px;
    }
    .stats-learn-card {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .stats-section {
        margin: 40px 0 0 0;
        border-radius: 0 0 12px 12px;
        min-height: unset;
    }
    .stats-row {
        flex-direction: column;
        gap: 18px;
    }
    .vertical-divider {
        display: none !important;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stats-learn-card {
        display: none !important;
    }
}

/* Learn More Card */
.learn-more-card {
    position: absolute;
    bottom: 80px;
    right: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 25px;
    padding: 30px;
    width: 220px;
    color: white;
    z-index: 10;
    animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-more-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.play-button {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.play-button:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.play-button i {
    color: #6366f1;
    margin-left: 3px;
    font-size: 18px;
}

.learn-text {
    font-size: 18px;
    font-weight: 600;
}

/* Navigation Elements */
.nav-arrows {
    position: absolute;
    bottom: -50px;
    right: 0px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-arrow.active {
    background: white;
    color: #6366f1;
}

.nav-arrow:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* Page Indicators */
.page-indicators {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 10;
}

.page-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-dot.active {
    background: white;
    transform: scale(1.2);
}

.page-number {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    font-weight: 500;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .character-container {
        right: 50px;
    }
    
    .character-image {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .character-container,
    .nft-card,
    .learn-more-card,
    .nav-arrows,
    .page-indicators {
        display: none;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .navbar {
        padding: 20px 25px;
    }
    
    .hero-section {
        padding: 60px 25px;
        text-align: center;
    }
    
    .stats-section {
        margin: 40px 25px;
        padding: 40px 30px;
    }
}

/* Glowing effects */
.glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* Pulse animation for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Central Glaring Light Effect */
body::before {
    content: '';
    position: fixed;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.12) 60%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
    filter: blur(10px);
}

/* Features Section */
.features-section .feature-card {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(99,102,241,0.07);
    transition: transform 0.2s;
}
.features-section .feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(99,102,241,0.13);
}

/* Trending NFTs Section */
.trending-nfts-section {
    background: #23203a;
}
.nft-trend-card {
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.06);
    text-align: center;
    transition: transform 0.2s;
}
.nft-trend-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 24px rgba(99,102,241,0.12);
}

/* How It Works Section */
.how-it-works-section .how-card {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(99,102,241,0.07);
    transition: transform 0.2s;
}
.how-it-works-section .how-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(99,102,241,0.13);
}
.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* Testimonials Section */
.testimonials-section .testimonial-card {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(99,102,241,0.07);
    transition: transform 0.2s;
    text-align: center;
}
.testimonials-section .testimonial-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(99,102,241,0.13);
}
.testimonials-section .fa-quote-left {
    color: #6366f1;
}

/* Section Titles */
.section-title {
    color: #fff;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

/* Features Section - Advanced Styling */
.features-section {
    background: linear-gradient(120deg, #23203a 60%, #3a1c5c 100%);
    position: relative;
    overflow: hidden;
}
.features-section .feature-card {
    background: rgba(255,255,255,0.13);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.18), 0 1.5px 8px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    color: #fff;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    z-index: 1;
}
.features-section .feature-card:hover {
    transform: translateY(-12px) scale(1.06) rotate(-2deg);
    box-shadow: 0 16px 48px 0 rgba(99,102,241,0.25), 0 2px 16px rgba(0,0,0,0.13);
    background: rgba(255,255,255,0.18);
}
.features-section .feature-card i {
    background: linear-gradient(135deg, #6366f1 60%, #8b5cf6 100%);
    color: #fff !important;
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(99,102,241,0.18);
    font-size: 2.2rem !important;
    transition: background 0.3s;
}
.features-section .feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.features-section .feature-card p {
    color: #e0e7ff;
    font-size: 1.08rem;
    opacity: 0.85;
}

/* Decorative gradient shapes for Features */
.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.features-section::before {
    width: 320px;
    height: 320px;
    left: -120px;
    top: 40px;
    background: radial-gradient(circle, #6366f1 0%, transparent 80%);
    opacity: 0.18;
}
.features-section::after {
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: 30px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 80%);
    opacity: 0.13;
}

/* Trending NFTs Section - Advanced Styling */
.trending-nfts-section {
    background: linear-gradient(120deg, #2b254a 60%, #23203a 100%);
    position: relative;
    overflow: hidden;
}
.nft-trend-card {
    background: rgba(255,255,255,0.13);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.16), 0 1.5px 8px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    z-index: 1;
}
.nft-trend-card:hover {
    transform: translateY(-10px) scale(1.04) rotate(1deg);
    box-shadow: 0 16px 48px 0 rgba(99,102,241,0.22), 0 2px 16px rgba(0,0,0,0.13);
    background: rgba(255,255,255,0.19);
}
.nft-trend-card img {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(99,102,241,0.13);
    margin-bottom: 12px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s;
}
.nft-trend-card:hover img {
    transform: scale(1.06) rotate(-2deg);
}
.nft-trend-card .fw-bold {
    font-size: 1.13rem;
    color: #fff;
    margin-bottom: 2px;
}
.nft-trend-card .text-muted {
    color: #bdbdfc !important;
    font-size: 0.98rem;
}

/* Decorative gradient for Trending NFTs */
.trending-nfts-section::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    top: 60px;
    background: radial-gradient(circle, #6366f1 0%, transparent 80%);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0;
}
.trending-nfts-section::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    bottom: 40px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 80%);
    opacity: 0.10;
    border-radius: 50%;
    z-index: 0;
}

/* How It Works Section - Advanced Styling */
.how-it-works-section {
    background: linear-gradient(120deg, #23203a 60%, #3a1c5c 100%);
    position: relative;
    overflow: hidden;
}
.how-it-works-section .how-card {
    background: rgba(255,255,255,0.13);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.18), 0 1.5px 8px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    color: #fff;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    z-index: 1;
}
.how-it-works-section .how-card:hover {
    transform: translateY(-12px) scale(1.06) rotate(2deg);
    box-shadow: 0 16px 48px 0 rgba(99,102,241,0.25), 0 2px 16px rgba(0,0,0,0.13);
    background: rgba(255,255,255,0.18);
}
.how-it-works-section .how-card h6 {
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.how-it-works-section .how-card p {
    color: #e0e7ff;
    font-size: 1.08rem;
    opacity: 0.85;
}
.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 60%, #8b5cf6 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 1.3rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(99,102,241,0.18);
    border: 2px solid #fff2;
    transition: background 0.3s;
}

/* Decorative gradient for How It Works */
.how-it-works-section::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    left: -70px;
    top: 40px;
    background: radial-gradient(circle, #6366f1 0%, transparent 80%);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0;
}
.how-it-works-section::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    right: -40px;
    bottom: 30px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 80%);
    opacity: 0.10;
    border-radius: 50%;
    z-index: 0;
}

/* Testimonials Section - Advanced Styling */
.testimonials-section {
    background: linear-gradient(120deg, #2b254a 60%, #23203a 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section .testimonial-card {
    background: rgba(255,255,255,0.15);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.18), 0 1.5px 8px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    color: #fff;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    z-index: 1;
}
.testimonials-section .testimonial-card:hover {
    transform: translateY(-12px) scale(1.06) rotate(-1deg);
    box-shadow: 0 16px 48px 0 rgba(99,102,241,0.25), 0 2px 16px rgba(0,0,0,0.13);
    background: rgba(255,255,255,0.22);
}
.testimonials-section .fa-quote-left {
    color: #6366f1;
    background: #fff;
    border-radius: 50%;
    padding: 10px 13px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.13);
    font-size: 1.5rem;
}
.testimonials-section .testimonial-card p {
    color: #e0e7ff;
    font-size: 1.08rem;
    opacity: 0.92;
    margin-bottom: 10px;
}
.testimonials-section .testimonial-card .fw-bold {
    color: #fff;
    font-size: 1.08rem;
    letter-spacing: 0.2px;
}

/* Decorative gradient for Testimonials */
.testimonials-section::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    left: -60px;
    top: 60px;
    background: radial-gradient(circle, #6366f1 0%, transparent 80%);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0;
}
.testimonials-section::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -30px;
    bottom: 30px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 80%);
    opacity: 0.10;
    border-radius: 50%;
    z-index: 0;
}

/* Section Titles - Advanced */
.section-title {
    color: #fff;
    font-weight: 900;
    font-size: 2.6rem;
    margin-bottom: 2.2rem;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 12px rgba(99,102,241,0.13);
    position: relative;
    z-index: 2;
}
.section-title::after {
    content: '';
    display: block;
    margin: 18px auto 0 auto;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0.7;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .features-section .feature-card,
    .nft-trend-card,
    .how-it-works-section .how-card,
    .testimonials-section .testimonial-card {
        margin-bottom: 24px;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .features-section,
    .trending-nfts-section,
    .how-it-works-section,
    .testimonials-section {
        padding: 2.5rem 0 !important;
    }
    .features-section .feature-card,
    .nft-trend-card,
    .how-it-works-section .how-card,
    .testimonials-section .testimonial-card {
        padding: 1.2rem !important;
    }
    .section-title {
        font-size: 1.4rem;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 992px) {
    .navbar {
        padding: 16px 10px;
    }
    .navbar-nav {
        flex-direction: column !important;
        background: rgba(34, 31, 54, 0.98);
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        height: 100vh;
        z-index: 9999;
        padding-top: 80px;
        transition: right 0.35s cubic-bezier(.4,0,.2,1);
        box-shadow: -8px 0 32px rgba(99,102,241,0.13);
    }
    .navbar-nav.open {
        right: 0;
    }
    .navbar-nav .nav-link {
        margin: 18px 0;
        font-size: 1.25rem;
        padding: 12px 0;
        text-align: left;
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .auth-buttons {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 24px;
    }
    .auth-buttons .btn {
        margin: 10px 0 0 0;
        width: 100%;
        text-align: left;
    }
    .navbar-toggler {
        display: block !important;
        background: none;
        border: none;
        outline: none;
        position: absolute;
        right: 18px;
        top: 18px;
        z-index: 10001;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        transition: color 0.2s;
    }
    .navbar-toggler:active,
    .navbar-toggler:focus {
        color: #6366f1;
    }
    .navbar-collapse {
        display: none !important;
    }
}

/* Hide toggler on desktop */
.navbar-toggler {
    display: none;
}

/* Overlay for mobile nav */
.mobile-nav-overlay {
    display: none;
}
@media (max-width: 992px) {
    .mobile-nav-overlay.open {
        display: block;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(24, 22, 39, 0.7);
        z-index: 9998;
        animation: fadeIn 0.3s;
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
