/* ========================================
   GAQ CARDS - Main Styles
   Purple Brand Theme + Crypto/Pokemon Hybrid
   ======================================== */

:root {
    /* Primary Purple Brand Colors */
    --primary-purple: #7C3AED;
    --deep-purple: #5B21B6;
    --royal-purple: #6D28D9;
    --light-purple: #A78BFA;
    --ultra-light-purple: #DDD6FE;

    /* Accent Colors */
    --electric-yellow: #FBBF24;
    --gold: #F59E0B;
    --neon-pink: #EC4899;
    --cyber-blue: #3B82F6;

    /* Dark Theme */
    --bg-dark: #0F0A1F;
    --bg-card: #1A1229;
    --bg-elevated: #251A3D;
    --text-primary: #FFFFFF;
    --text-secondary: #C4B5FD;
    --text-muted: #9CA3AF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    --gradient-hero: linear-gradient(180deg, #0F0A1F 0%, #1A1229 50%, #251A3D 100%);
    --gradient-card: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(91, 33, 182, 0.2) 100%);
    --gradient-gold: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);

    /* Shadows */
    --shadow-purple: 0 10px 40px rgba(124, 58, 237, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.6);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ========================================
   Global Resets & Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0F0A1F 0%, #1A1229 50%, #2E1A47 100%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Grid Pattern (Cyber Aesthetic) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../assets/images/gradient.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--light-purple);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-purple);
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 2rem;
    background: rgba(15, 10, 31, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: var(--shadow-purple);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-logo .logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-logo span {
    color: #FFFFFF;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-links a.active {
    color: var(--light-purple);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    background: var(--gradient-primary);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.5);
}

/* Hero buttons - transparent with gradient border */
.btn-hero {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(14, 12, 21, 0.5), rgba(14, 12, 21, 0.5)),
                      linear-gradient(90deg, #FFC876 0%, #79FFF7 25%, #9F53FF 50%, #FF98E2 75%, #FFC876 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    font-weight: 600;
}

.btn-hero:hover {
    background-image: linear-gradient(rgba(14, 12, 21, 0.3), rgba(14, 12, 21, 0.3)),
                      linear-gradient(90deg, #FFC876 0%, #79FFF7 25%, #9F53FF 50%, #FF98E2 75%, #FFC876 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    color: #FFFFFF !important;
}

/* Button States - Active/Inactive */
.btn-filter,
.btn-nav {
    background-color: rgba(36, 37, 46, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    color: var(--text-secondary);
}

.btn-filter:hover,
.btn-nav:hover {
    opacity: 0.75;
    border-color: rgba(124, 58, 237, 0.3);
}

.btn-filter.active,
.btn-nav.active {
    opacity: 1;
    font-weight: 700;
    border: 1px solid var(--primary-purple);
    background: rgba(124, 58, 237, 0.15);
    color: var(--light-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

/* Wallet Connect Button - matches hero buttons */
.btn-wallet {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(14, 12, 21, 0.5), rgba(14, 12, 21, 0.5)),
                      linear-gradient(90deg, #FFC876 0%, #79FFF7 25%, #9F53FF 50%, #FF98E2 75%, #FFC876 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-wallet:hover {
    background-image: linear-gradient(rgba(14, 12, 21, 0.3), rgba(14, 12, 21, 0.3)),
                      linear-gradient(90deg, #FFC876 0%, #79FFF7 25%, #9F53FF 50%, #FF98E2 75%, #FFC876 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    color: #FFFFFF !important;
}

/* Dashboard Button - Premium UI */
.btn-dashboard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-dashboard:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    transform: translateY(-3px);
    color: white;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/images/hero-background.jpg') !important;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background-image: none !important;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0 !important;
}

/* Animated Background Orbs */
.hero-orb-1,
.hero-orb-2 {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-purple);
    top: -100px;
    left: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-pink);
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-50px) scale(1.1);
    }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 20px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Multi-color gradient text for subtitle */
.gradient-text {
    background: linear-gradient(90deg,
        #FFC876 0%,
        #79FFF7 25%,
        #9F53FF 50%,
        #FF98E2 75%,
        #FFC876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

/* White text for hero title */
.white-text {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.hero-title {
    margin-bottom: 0;
}

/* Curve image under title */
.hero-curve {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0rem auto 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curve-image {
    width: 100%;
    height: auto;
    opacity: 0.8;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Ecosystem Buttons */
.ecosystem-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ========================================
   Card Tiers Section
   ======================================== */

.section {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-md);
}

.tier-card {
    background: rgba(26, 18, 41, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-card:hover::before {
    opacity: 1;
}

.tier-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px) rotate(1deg) scale(1.02);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5), 0 20px 60px rgba(124, 58, 237, 0.3);
}

.tier-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--gradient-card);
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tier-quantity {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Legendary Tier (Special Styling) */
.tier-card.legendary {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.tier-card.legendary:hover {
    box-shadow: 0 10px 50px rgba(251, 191, 36, 0.4);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: rgba(26, 18, 41, 0.7);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(121, 255, 247, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon i {
    background: linear-gradient(90deg,
        #FFC876 0%,
        #79FFF7 25%,
        #9F53FF 50%,
        #FF98E2 75%,
        #FFC876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   Utility Classes
   ======================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: var(--shadow-glow);
}

/* ========================================
   Glassmorphism Effects - Futuristic
   ======================================== */

.glass {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15) 0%,
        rgba(236, 72, 153, 0.1) 50%,
        rgba(59, 130, 246, 0.15) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    box-shadow: 0 8px 32px 0 rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.glass:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5), 0 8px 32px 0 rgba(124, 58, 237, 0.3);
}

.glass-light {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.08) 0%,
        rgba(59, 130, 246, 0.08) 100%);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px 0 rgba(124, 58, 237, 0.15);
}

.glass-strong {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.25) 0%,
        rgba(91, 33, 182, 0.2) 50%,
        rgba(236, 72, 153, 0.15) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 48px 0 rgba(124, 58, 237, 0.3);
}

/* NFT Carousel in Hero Section - Apple macOS Style */
.nft-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.nft-carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: infiniteScroll 60s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.nft-carousel-track:hover {
    animation-play-state: paused;
}

.nft-carousel-item {
    flex-shrink: 0;
    width: 280px;
    height: 350px;
    position: relative;
    border-radius: 20px;
    /* Apple macOS glassmorphism effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 2px 4px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nft-carousel-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,
        #FFC876 0%,
        #79FFF7 25%,
        #9F53FF 50%,
        #FF98E2 75%,
        #FFC876 100%);
    background-size: 200% auto;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    animation: gradientFlow 3s linear infinite;
    transition: opacity 0.4s ease;
}

.nft-carousel-item:hover {
    transform: translateY(-10px);
    border: 2px solid transparent;
    box-shadow:
        0 20px 60px 0 rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 4px 8px 0 rgba(255, 255, 255, 0.15) inset;
}

.nft-carousel-item:hover::before {
    opacity: 1;
}

.nft-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}

/* Infinite scroll animation */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Futuristic Gradient Backgrounds */
.bg-gradient-purple-pink {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.bg-gradient-purple-blue {
    background: linear-gradient(135deg, #5B21B6 0%, #3B82F6 50%, #7C3AED 100%);
}

.bg-gradient-cyber {
    background: linear-gradient(135deg, #0F0A1F 0%, #1A1229 25%, #251A3D 50%, #1A1229 75%, #0F0A1F 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========================================
   Wallet Address Styling
   ======================================== */

.wallet-address {
    font-family: 'Source Code Pro', 'Courier New', monospace;
    letter-spacing: 0.05em;
    font-size: 0.95em;
    color: var(--light-purple);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(124, 58, 237, 0.3);
    display: inline-block;
}

/* ========================================
   Wallet Modal
   ======================================== */

.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wallet-modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid var(--primary-purple);
    box-shadow: var(--shadow-purple);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wallet-modal-content h3 {
    text-align: center;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.wallet-modal-content p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-elevated);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.wallet-option:hover {
    border-color: var(--primary-purple);
    background: var(--gradient-card);
    transform: translateX(5px);
}

.wallet-option i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.wallet-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wallet-modal-close:hover {
    background: var(--bg-elevated);
    color: var(--primary-purple);
}

/* ========================================
   Notifications
   ======================================== */

.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    z-index: 9999;
    min-width: 300px;
    border-left: 4px solid var(--primary-purple);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

.notification i {
    font-size: 1.5rem;
}

.notification-success {
    border-left-color: #10B981;
}

.notification-success i {
    color: #10B981;
}

.notification-error {
    border-left-color: #EF4444;
}

.notification-error i {
    color: #EF4444;
}

.notification-info {
    border-left-color: var(--cyber-blue);
}

.notification-info i {
    color: var(--cyber-blue);
}

.notification span {
    color: var(--text-primary);
    font-weight: 500;
}

/* ========================================
   Modal (Generic)
   ======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-purple);
    box-shadow: var(--shadow-purple);
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-purple);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-elevated);
    color: var(--primary-purple);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* ========================================
   Connected Wallet Button State
   ======================================== */

.btn-wallet.connected {
    background-image: linear-gradient(rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.2)),
                      linear-gradient(90deg, #FFC876 0%, #79FFF7 25%, #9F53FF 50%, #FF98E2 75%, #FFC876 100%);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-wallet.connected:hover {
    background-image: linear-gradient(rgba(124, 58, 237, 0.3), rgba(124, 58, 237, 0.3)),
                      linear-gradient(90deg, #FFC876 0%, #79FFF7 25%, #9F53FF 50%, #FF98E2 75%, #FFC876 100%);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.btn-wallet .wallet-address {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: white;
}

/* ========================================
   Gradient Icon Styling
   ======================================== */

.gradient-icon,
.gradient-icon i {
    background: linear-gradient(90deg,
        #FFC876 0%,
        #79FFF7 25%,
        #9F53FF 50%,
        #FF98E2 75%,
        #FFC876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

/* Wallet icon gradient */
.btn-wallet i {
    background: linear-gradient(90deg,
        #FFC876 0%,
        #79FFF7 25%,
        #9F53FF 50%,
        #FF98E2 75%,
        #FFC876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

/* ========================================
   Button Pop Effect
   ======================================== */

.btn-pop {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pop:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.btn-pop:active {
    transform: translateY(-2px) scale(1.02);
}

/* ========================================
   Step Pop Effect (Utility Cards)
   ======================================== */

.step-pop {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.step-pop:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4);
}

.step-pop:hover .step-number {
    background: linear-gradient(135deg, #FFC876 0%, #79FFF7 25%, #9F53FF 50%, #FF98E2 100%);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.6);
    transform: scale(1.1);
}

/* Reduce padding for utility cards (steps) */
.step {
    padding: 1.5rem !important;
}

.step-content {
    padding-left: 1rem;
}
