/* ==========================================
   FABULOUS CREATE PAGE V2 - ManagerNest NFT 
   Modern, Colorful, Interactive Design
   ========================================== */

/* Background Elements */
#bg-canvas,
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

/* Floating Gradient Orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    top: 40%;
    right: -10%;
    animation-delay: 3s;
}

.gradient-orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f97316, #ec4899);
    bottom: 10%;
    left: 20%;
    animation-delay: 6s;
}

.gradient-orb-4 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    bottom: 30%;
    right: 15%;
    animation-delay: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Hero Section */
.create-hero {
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 1;
}

.create-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.gradient-text {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #f97316, #06b6d4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

/* Progress Steps Hero */
.progress-steps-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.progress-step.active .progress-step-icon {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-color: rgba(139, 92, 246, 0.5);
    color: white;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.progress-step span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.progress-step.active span {
    color: #ffffff;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 0 -24px;
    margin-bottom: 28px;
}

/* Wallet Required Section */
.wallet-required-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.wallet-prompt-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    text-align: center;
}

.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    pointer-events: none;
}

.wallet-prompt-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.wallet-prompt-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.wallet-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border-radius: 50%;
    filter: blur(30px);
    animation: glow 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(139, 92, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(139, 92, 246, 0.6);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.wallet-prompt-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.wallet-prompt-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.wallet-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.wallet-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-feature {
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Creator Section */
.creator-section {
    padding: 3rem 0 6rem;
    position: relative;
    z-index: 1;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======================================== */
/* FABULOUS CREATOR GUIDE */
/* ======================================== */

.creator-guide {
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.creator-guide::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation: pulseBackground 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.creator-guide-header {
    position: relative;
    z-index: 1;
}

.creator-guide-header h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0 0.5rem;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.creator-guide-header p {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin: 0 0 2rem;
}

.creator-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.creator-type-card {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: cardSlideIn 0.5s ease-out backwards;
}

.creator-type-card:nth-child(1) { animation-delay: 0.05s; }
.creator-type-card:nth-child(2) { animation-delay: 0.1s; }
.creator-type-card:nth-child(3) { animation-delay: 0.15s; }
.creator-type-card:nth-child(4) { animation-delay: 0.2s; }
.creator-type-card:nth-child(5) { animation-delay: 0.25s; }
.creator-type-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.creator-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.creator-type-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.25),
        0 0 80px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.creator-type-card:hover::before {
    opacity: 1;
}

.creator-type-card.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.25));
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 0 0 3px rgba(139, 92, 246, 0.5),
        0 20px 50px rgba(139, 92, 246, 0.4),
        0 0 100px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.creator-type-card.active::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.6));
}

/* Card Shimmer Effect */
.card-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: translateX(-100%) rotate(45deg);
    pointer-events: none;
}

.creator-type-card:hover .card-shimmer {
    animation: shimmerSweep 1.5s ease-in-out;
}

@keyframes shimmerSweep {
    to {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Icon Styling */
.creator-type-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.creator-type-icon {
    width: 48px;
    height: 48px;
    color: #a78bfa;
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.creator-type-card:hover .creator-type-icon {
    transform: scale(1.15) rotate(5deg);
    color: #c4b5fd;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
    animation: iconFloat 2s ease-in-out infinite;
}

.creator-type-card.active .creator-type-icon {
    transform: scale(1.2);
    color: #ddd6fe;
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 1));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: scale(1.15) rotate(5deg) translateY(0); }
    50% { transform: scale(1.15) rotate(5deg) translateY(-5px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1.2); filter: drop-shadow(0 0 25px rgba(139, 92, 246, 1)); }
    50% { transform: scale(1.25); filter: drop-shadow(0 0 35px rgba(139, 92, 246, 1)); }
}

/* Icon Glow */
.icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.creator-type-card:hover .icon-glow {
    opacity: 1;
}

.creator-type-card.active .icon-glow {
    opacity: 1;
    animation: glowPulseActive 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes glowPulseActive {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

.creator-type-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.creator-type-card:hover .creator-type-name {
    color: #e0e7ff;
    transform: translateY(-2px);
}

.creator-type-card.active .creator-type-name {
    background: linear-gradient(135deg, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creator-type-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.creator-type-card:hover .creator-type-desc {
    color: #cbd5e1;
}

.creator-type-card.active .creator-type-desc {
    color: #e0e7ff;
}


/* Creator Guide Footer */
.creator-guide-footer {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 1;
}

.selected-type-chip {
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15));
    color: #e0e7ff;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    animation: chipFadeIn 0.4s ease-out;
}

@keyframes chipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.selected-type-chip span {
    background: linear-gradient(135deg, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

#creator-guide-continue {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#creator-guide-continue::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
}

#creator-guide-continue:not(:disabled):hover::before {
    animation: buttonShimmer 1s ease-in-out;
}

@keyframes buttonShimmer {
    to {
        transform: translateX(100%);
    }
}

#creator-guide-continue:not(:disabled):hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.5),
        0 0 60px rgba(139, 92, 246, 0.3);
}

#creator-guide-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.upload-context-hint {
    color: #93c5fd;
    font-size: 1rem;
    font-weight: 500;
    margin: -1rem 0 1.5rem;
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    animation: hintFadeIn 0.5s ease-out;
}

@keyframes hintFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#creator-workspace {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Back Navigation */
.creator-back-nav {
    margin-bottom: 1.5rem;
    animation: backNavSlideIn 0.5s ease-out;
}

@keyframes backNavSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-back-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: #a78bfa;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-back-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-back-nav:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.6);
    color: #c4b5fd;
    transform: translateX(-4px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-back-nav:hover::before {
    opacity: 1;
}

.btn-back-nav svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-back-nav:hover svg {
    transform: translateX(-4px);
}

.btn-back-nav span {
    position: relative;
    z-index: 1;
}

.creator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.creator-left {
    position: sticky;
    top: 108px;
    align-self: start;
}

.creator-left .upload-card {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
}

/* Card Headers */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header h3 svg {
    color: var(--primary);
}

.step-badge {
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* Upload Card */
.upload-card {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.upload-dropzone {
    border: 3px dashed rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    overflow: hidden;
    position: relative;
}

.upload-dropzone:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(15, 23, 42, 0.7);
    transform: translateY(-2px);
}

.upload-dropzone-inner {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.upload-icon-animated {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.upload-icon-animated svg {
    color: var(--primary);
    position: relative;
    z-index: 1;
    margin: 18px auto;
    display: block;
}

.upload-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border-radius: 50%;
    animation: uploadPulse 2s ease-in-out infinite;
}

@keyframes uploadPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.upload-dropzone h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.upload-dropzone p {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.upload-browse-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.upload-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.format-badge {
    padding: 0.625rem 1.125rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c4b5fd;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    animation: badgeFadeIn 0.5s ease-out backwards;
}

.format-badge:nth-child(1) { animation-delay: 0s; }
.format-badge:nth-child(2) { animation-delay: 0.1s; }
.format-badge:nth-child(3) { animation-delay: 0.2s; }
.format-badge:nth-child(4) { animation-delay: 0.3s; }
.format-badge:nth-child(5) { animation-delay: 0.4s; }

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.format-badge:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.25));
    border-color: rgba(139, 92, 246, 0.6);
    color: #ddd6fe;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.format-icon {
    font-size: 1.125rem;
}

.upload-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.upload-hint svg {
    color: #475569;
}

/* Preview Container */
.preview-container {
    margin-top: 2rem;
}

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

.preview-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-header h4 svg {
    color: var(--primary);
}

.btn-icon-remove {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon-remove:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.05);
}

.preview-content-wrapper {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preview-content-wrapper img,
.preview-content-wrapper video {
    max-width: 100%;
    max-height: 400px;
    border-radius: 16px;
}

.preview-media-card {
    width: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1rem;
}

.preview-media-expandable {
    border: none;
    background: transparent;
    cursor: pointer;
}

.preview-media-expandable:hover .preview-expand-pill {
    background: rgba(139, 92, 246, 0.28);
    border-color: rgba(139, 92, 246, 0.5);
}

.preview-image-main,
.preview-video-thumb,
.preview-doc-thumb,
.preview-model-thumb {
    width: min(100%, 560px);
    max-height: 360px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.7);
}

.preview-video-thumb {
    object-fit: contain;
}

.preview-doc-thumb {
    height: 340px;
}

.preview-model-thumb {
    height: 340px;
    overflow: hidden;
}

.preview-model-thumb canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.preview-audio-thumb {
    font-size: 2rem;
}

.preview-audio-player {
    width: min(100%, 540px);
}

.preview-expand-pill {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ddd6fe;
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: rgba(139, 92, 246, 0.15);
    transition: all 0.2s ease;
}

.preview-fallback-card {
    color: #cbd5e1;
}

.preview-fallback-text {
    font-size: 1rem;
    font-weight: 500;
}

.preview-shimmer {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.preview-metadata {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(15,23, 42, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metadata-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.metadata-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metadata-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metadata-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e2e8f0;
    word-break: break-all;
}

/* Metadata Card & Form */
.metadata-card {
    padding: 2.5rem;
}

.nft-form {
    position: relative;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.form-label svg {
    color: var(--primary);
}

.required {
    color: #ef4444;
}

.optional-badge {
    padding: 0.25rem 0.625rem;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    margin-left: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.form-hint svg {
    color: #475569;
    flex-shrink: 0;
}

.cover-upload-dropzone {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px dashed rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cover-upload-dropzone:hover,
.cover-upload-dropzone:focus-visible,
.cover-upload-dropzone.drag-over {
    outline: none;
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.cover-upload-dropzone.has-file {
    border-style: solid;
    border-color: rgba(16, 185, 129, 0.55);
    background: rgba(6, 78, 59, 0.18);
}

.cover-upload-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cover-upload-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}

.cover-upload-filename {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Royalty Display */
.royalty-group {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.royalty-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.royalty-percentage-large {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.royalty-info p {
    font-size: 0.9375rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.royalty-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.authority-controls-group {
    background: rgba(30, 41, 59, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 1rem 1.25rem;
}

.authority-option-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.55rem;
    cursor: pointer;
}

.authority-option-row:last-child {
    margin-bottom: 0;
}

.authority-option-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #8b5cf6;
}

/* Form Dividers */
.form-divider-gradient {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    margin: 2.5rem 0;
}

/* Attributes */
.attributes-group {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

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

.btn-add-attribute {
    padding: 0.625rem 1.25rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-attribute:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.attributes-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.attribute-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.attribute-row:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(15, 23, 42, 0.8);
}

.attribute-trait,
.attribute-value {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.attribute-trait:focus,
.attribute-value:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.attribute-trait::placeholder,
.attribute-value::placeholder {
    color: #64748b;
}

.btn-remove-attribute {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove-attribute:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.05);
}

.btn-remove-attribute svg {
    width: 16px;
    height: 16px;
}

/* Mint Summary Card */
.mint-summary-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.mint-summary-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mint-summary-header svg {
    color: var(--primary);
}

.mint-summary-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.cost-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.cost-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cost-value-large {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.cost-usd {
    font-size: 1rem;
    color: #cbd5e1;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 12px;
}

.cost-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cost-icon.service {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.cost-icon.storage {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

.cost-icon.network {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.cost-item > span:nth-child(2) {
    flex: 1;
    font-size: 0.9375rem;
    color: #cbd5e1;
}

.cost-amount {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
}

/* Mint Button */
.mint-button {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mint-button span {
    position: relative;
    z-index: 1;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.mint-button:hover .button-shine {
    left: 200%;
}

.mint-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    font-size: 0.875rem;
    color: #93c5fd;
}

.mint-security-note svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.admin-bypass-cost-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: -0.75rem 0 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #6ee7b7;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Minting + Success Modal */
#minting-modal,
#success-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.86);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    padding: 1.5rem;
}

#minting-modal .modal-content,
#success-modal .modal-content {
    width: min(640px, 100%);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    animation: mintPopupIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

#preview-media-modal .preview-media-modal-content {
    width: min(900px, 96%);
    text-align: left;
    padding-top: 2.5rem;
    position: relative;
}

#preview-media-modal h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.preview-media-body {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-modal-media,
.preview-modal-document,
.preview-modal-model {
    width: 100%;
    height: 72vh;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.75);
    overflow: hidden;
}

.preview-modal-model canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.preview-modal-audio {
    width: min(100%, 720px);
}

.preview-model-fallback {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-weight: 600;
}

#success-modal .modal-content {
    position: relative;
}

.modal-close-button {
    position: absolute;
    top: 0.85rem;
    right: 0.95rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(15, 23, 42, 0.65);
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-close-button:hover {
    border-color: rgba(248, 250, 252, 0.8);
    color: #ffffff;
    background: rgba(51, 65, 85, 0.8);
}

@keyframes mintPopupIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.94);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    }
}

.modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    color: #a78bfa;
}

.modal-icon.spinning svg {
    animation: mintSpin 1s linear infinite;
}

@keyframes mintSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.modal-icon.success {
    color: #34d399;
}

#minting-modal h3,
#success-modal h3 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: #fff;
}

#minting-message,
#minting-warning,
#minting-size-hint,
#success-modal p {
    color: #cbd5e1;
    margin-bottom: 1.25rem;
}

#minting-warning,
#minting-size-hint {
    font-size: 0.9rem;
    margin-top: -0.6rem;
    margin-bottom: 0.8rem;
}

.minting-fun-message {
    font-weight: 600;
    font-size: 0.98rem;
    margin-top: -0.45rem;
    margin-bottom: 1.1rem;
    min-height: 1.5rem;
    color: #c4b5fd;
    text-shadow: 0 0 16px rgba(139, 92, 246, 0.32);
    transition: opacity 0.35s ease, transform 0.35s ease;
    opacity: 1;
    transform: translateY(0);
}

.minting-fun-message.is-fading {
    opacity: 0;
    transform: translateY(4px);
}

#minting-modal .progress-steps {
    display: grid;
    gap: 0.875rem;
    text-align: left;
    margin-top: 1.25rem;
}

#minting-modal .step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #e2e8f0;
}

#minting-modal .step.pending {
    opacity: 0.62;
}

#minting-modal .step.active {
    border-color: rgba(139, 92, 246, 0.7);
    background: rgba(91, 33, 182, 0.25);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.2);
}

#minting-modal .step.complete {
    border-color: rgba(16, 185, 129, 0.65);
    background: rgba(6, 78, 59, 0.35);
}

#minting-modal .step-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: rgba(148, 163, 184, 0.2);
}

#minting-modal .step.complete .step-icon {
    background: rgba(16, 185, 129, 0.22);
    color: #34d399;
}

.spinner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    animation: mintSpin 0.9s linear infinite;
}

.nft-preview-success {
    margin: 1.25rem 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.7);
}

.nft-preview-success img,
.nft-preview-success video,
.nft-preview-success model-viewer,
.nft-preview-success embed,
.nft-preview-success iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.nft-preview-success audio {
    width: 100%;
    max-width: 100%;
}

#success-nft-image {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.nft-info-success {
    padding: 1rem;
    text-align: left;
}

.nft-info-success h4 {
    color: #ffffff;
    margin: 0 0 0.25rem;
}

.nft-info-success p {
    margin: 0.1rem 0;
    color: #cbd5e1;
}

#success-nft-description {
    font-size: 0.9rem;
    color: #94a3b8;
}

.success-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .creator-layout {
        grid-template-columns: 1fr;
    }

    .creator-left {
        position: static;
        top: auto;
    }

    .creator-left .upload-card {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .creator-type-grid {
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(139, 92, 246, 0.5) rgba(0, 0, 0, 0.2);
        padding: 0.5rem 0 1.5rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .creator-type-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .creator-type-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin: 0 1rem;
    }
    
    .creator-type-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #8b5cf6, #ec4899);
        border-radius: 10px;
        transition: background 0.3s ease;
    }
    
    .creator-type-grid::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, #a78bfa, #f472b6);
    }
    
    .creator-type-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: center;
        scroll-margin-left: 1rem;
    }
    
    .wallet-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .progress-steps-hero {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-line {
        width: 2px;
        height: 40px;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .wallet-prompt-card {
        padding: 3rem 2rem;
    }
    
    .wallet-actions {
        flex-direction: column;
    }
    
    .upload-card,
    .metadata-card {
        padding: 1.5rem;
    }
    
    .cost-value-large {
        font-size: 1.75rem;
    }

    .creator-type-grid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        gap: 0.75rem;
    }
    
    .creator-type-card {
        flex: 0 0 260px;
        min-width: 260px;
        padding: 1.75rem 1.25rem;
    }

    .creator-guide-footer {
        flex-direction: column;
        align-items: stretch;
    }

    #minting-modal .modal-content,
    #success-modal .modal-content {
        padding: 1.5rem 1rem;
    }

    #minting-modal h3,
    #success-modal h3 {
        font-size: 1.5rem;
    }

    .success-actions {
        flex-direction: column;
    }
}
