/* Generator Page Styles */

/* Gradient Text Purple */
.gradient-text-purple {
    background: linear-gradient(135deg, #9945FF, #14F195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Wallet Bar */
.wallet-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.7));
    border: 1px solid rgba(153, 69, 255, 0.15);
}

@media (min-width: 768px) {
    .wallet-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.wallet-bar-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-status-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.wallet-status-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
}

.wallet-status-value.connected {
    color: #22c55e;
}

.wallet-bar-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.wallet-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wallet-btn.phantom {
    background: rgba(171, 154, 255, 0.1);
    border-color: rgba(171, 154, 255, 0.3);
    color: #ab9aff;
}

.wallet-btn.phantom:hover {
    background: rgba(171, 154, 255, 0.2);
    border-color: rgba(171, 154, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(171, 154, 255, 0.2);
}

.wallet-btn.solflare {
    background: rgba(252, 176, 10, 0.1);
    border-color: rgba(252, 176, 10, 0.3);
    color: #fcb00a;
}

.wallet-btn.solflare:hover {
    background: rgba(252, 176, 10, 0.2);
    border-color: rgba(252, 176, 10, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 176, 10, 0.2);
}

.wallet-btn.disconnect {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.wallet-btn.disconnect:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

/* Generator Grid */
.generator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .generator-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Token Form Card */
.token-form-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.7));
    border: 1px solid rgba(153, 69, 255, 0.15);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.token-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e2e8f0;
}

.form-group label i {
    color: #9945FF;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 0.875rem;
    color: white;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9945FF;
    box-shadow: 0 0 0 3px rgba(153, 69, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-hint {
    font-size: 0.75rem;
    color: #64748b;
}

/* Network Selector */
.network-selector {
    margin-bottom: 0.5rem;
}

.network-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.network-label i {
    color: #9945FF;
}

.network-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.network-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(51, 65, 85, 0.5);
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.network-btn:hover {
    border-color: rgba(153, 69, 255, 0.3);
    background: rgba(153, 69, 255, 0.05);
}

.network-btn.active {
    border-color: rgba(153, 69, 255, 0.6);
    background: rgba(153, 69, 255, 0.1);
    color: white;
}

.network-btn.active.devnet {
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.1);
}

.network-btn.active.mainnet {
    border-color: rgba(20, 241, 149, 0.6);
    background: rgba(20, 241, 149, 0.1);
}

.network-badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.network-badge.free {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.network-badge.paid {
    background: rgba(20, 241, 149, 0.2);
    color: #14F195;
}

/* Fee Info */
.fee-info {
    padding: 1.25rem;
    background: rgba(153, 69, 255, 0.05);
    border: 1px solid rgba(153, 69, 255, 0.15);
    border-radius: 1rem;
}

.fee-info.devnet {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.15);
}

.fee-info.mainnet {
    background: rgba(20, 241, 149, 0.05);
    border-color: rgba(20, 241, 149, 0.15);
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #94a3b8;
}

.fee-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fee-row.devnet-hint {
    gap: 0.5rem;
    justify-content: flex-start;
    font-size: 0.75rem;
}

.fee-value {
    font-weight: 700;
    color: white;
}

.solana-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solana-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #9945FF, #14F195);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.solana-dot.devnet {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.solana-dot.mainnet {
    background: linear-gradient(135deg, #14F195, #22c55e);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Create Token Button */
.create-token-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #9945FF, #7c3aed);
    border: none;
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.create-token-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.create-token-btn:not(:disabled):hover::before {
    left: 100%;
}

.create-token-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
}

.create-token-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.create-token-btn.loading {
    pointer-events: none;
}

.create-token-btn.loading span,
.create-token-btn.loading i:first-child {
    opacity: 0;
}

.btn-loader {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 0.75rem;
    font-size: 0.75rem;
    color: #fbbf24;
    line-height: 1.5;
}

.form-disclaimer i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Token Preview Section */
.token-preview-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.token-preview-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.7));
    border: 1px solid rgba(153, 69, 255, 0.15);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.token-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.preview-token-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(153, 69, 255, 0.1), rgba(20, 241, 149, 0.1));
    border: 2px solid rgba(153, 69, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-token-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-token-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview-token-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.preview-token-symbol {
    font-size: 0.875rem;
    font-weight: 700;
    color: #9945FF;
    background: rgba(153, 69, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
}

.preview-stats {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    justify-content: center;
}

.preview-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview-stat .stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-stat .stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    font-family: 'Space Mono', monospace;
}

.preview-description {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
    min-height: 3rem;
}

/* Status Card */
.status-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.7));
    border: 1px solid rgba(153, 69, 255, 0.15);
}

.status-card.success {
    border-color: rgba(34, 197, 94, 0.3);
}

.status-card.error {
    border-color: rgba(239, 68, 68, 0.3);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.status-content {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.status-content p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

.status-content .token-address {
    display: block;
    margin-top: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #14F195;
    word-break: break-all;
}

.status-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.explorer-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.3);
    border-radius: 0.75rem;
    color: #14F195;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.explorer-btn:hover {
    background: rgba(20, 241, 149, 0.2);
    border-color: rgba(20, 241, 149, 0.5);
}

.create-another-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 0.75rem;
    color: #9945FF;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.create-another-btn:hover {
    background: rgba(153, 69, 255, 0.2);
    border-color: rgba(153, 69, 255, 0.5);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
}

.info-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: rgba(153, 69, 255, 0.2);
    transform: translateY(-2px);
}

.info-card i {
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.8125rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Guide Section */
.guide-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(153, 69, 255, 0.3), transparent);
}

.guide-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 1rem;
    color: #d8b4fe;
    font-size: 0.875rem;
    font-weight: 600;
}

.guide-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.guide-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.guide-card.devnet {
    border-color: rgba(59, 130, 246, 0.2);
}

.guide-card.devnet:hover {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(59, 130, 246, 0.05));
    border-color: rgba(59, 130, 246, 0.4);
}

.guide-card.mainnet {
    border-color: rgba(20, 241, 149, 0.2);
}

.guide-card.mainnet:hover {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(20, 241, 149, 0.05));
    border-color: rgba(20, 241, 149, 0.4);
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-card.devnet .guide-icon-box {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.guide-card.mainnet .guide-icon-box {
    background: rgba(20, 241, 149, 0.1);
    color: #14F195;
}

.guide-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.guide-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guide-steps li {
    display: flex;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.guide-card.devnet .step-number {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.guide-card.mainnet .step-number {
    background: rgba(20, 241, 149, 0.2);
    color: #14F195;
}

.guide-link {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.2s;
}

.guide-link:hover {
    color: #93c5fd;
}

/* Custom Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: #0f172a;
    /* Fallback */
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay:not(.hidden) .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-body {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

.modal-btn {
    background: linear-gradient(135deg, #9945FF, #7c3aed);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 1rem;
}

.modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 69, 255, 0.3);
}

/* ===== Enhanced ConclaveCoin-NFT Styles ===== */

.file-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    border: 2px dashed rgba(51, 65, 85, 0.5);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.4);
}

.file-upload-box:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.05);
}

.file-upload-box.drag-over {
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(139, 92, 246, 0.1);
}

.tag-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.5);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tag-btn:hover {
    border-color: rgba(139, 92, 246, 0.3);
    color: #e2e8f0;
}

.tag-btn.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #c4b5fd;
}

.image-input-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.image-input-tabs .tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.5);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.25s ease;
}

.image-input-tabs .tab-btn.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #c4b5fd;
}

.nft-preview-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nft-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}