/* OASIS Portal Styles */
/* CSS Variables for theming */

:root {
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-tertiary: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --background-primary: #000000;
    --background-secondary: rgba(0, 0, 0, 0.6);
    --accent-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Notification System Styles */
.notification-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    width: 100%;
    pointer-events: none;
}

.notification {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    max-width: 100%;
}

.notification-visible {
    opacity: 1;
    transform: translateX(0);
}

.notification-dismissing {
    opacity: 0;
    transform: translateX(400px);
}

.notification-content {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.notification-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-success .notification-icon {
    color: rgba(34, 197, 94, 1);
}

.notification-error .notification-icon {
    color: rgba(239, 68, 68, 1);
}

.notification-warning .notification-icon {
    color: rgba(251, 191, 36, 1);
}

.notification-info .notification-icon {
    color: rgba(59, 130, 246, 1);
}

.notification-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notification-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.notification-message {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.notification-image {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.notification-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.notification-details {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.notification-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.detail-label {
    color: var(--text-tertiary);
    font-weight: 500;
}

.detail-value {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: var(--text-primary);
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.6875rem;
    word-break: break-all;
}

.notification-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    padding: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Success notification border accent */
.notification-success {
    border-left: 3px solid rgba(34, 197, 94, 0.6);
}

.notification-error {
    border-left: 3px solid rgba(239, 68, 68, 0.6);
}

.notification-warning {
    border-left: 3px solid rgba(251, 191, 36, 0.6);
}

.notification-info {
    border-left: 3px solid rgba(59, 130, 246, 0.6);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notification-container {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
    }
    
    .notification {
        transform: translateY(-100px);
    }
    
    .notification-visible {
        transform: translateY(0);
    }
    
    .notification-dismissing {
        transform: translateY(-100px);
    }
}

/* Wallet Modal Styles */
.wallet-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.wallet-modal-content {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.wallet-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.wallet-modal-header h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.wallet-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.wallet-modal-close:hover {
    background: var(--accent-color);
    color: var(--text-primary);
}

.wallet-modal-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.wallet-modal-footer {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.wallet-modal-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.wallet-method-selection {
    display: flex;
    flex-direction: column;
}

.wallet-method-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wallet-method-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.wallet-method-card:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.wallet-method-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.wallet-method-title {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.wallet-method-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.wallet-provider-selection {
    margin-top: 1.5rem;
}

.wallet-form-group {
    margin-bottom: 1.5rem;
}

.wallet-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.wallet-form-select,
.wallet-form-input {
    width: 100%;
    padding: 0.75rem;
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
}

.wallet-form-select:focus,
.wallet-form-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.wallet-form-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.wallet-form-input-group .wallet-form-input {
    padding-right: 3rem;
}

.wallet-form-toggle {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}

.wallet-form-toggle:hover {
    color: var(--text-primary);
}

.wallet-form-help {
    display: block;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

.wallet-action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.wallet-generated-keys {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.wallet-key-display {
    margin-bottom: 1.5rem;
}

.wallet-key-display:last-child {
    margin-bottom: 0;
}

.wallet-key-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wallet-key-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
}

.wallet-key-value code {
    flex: 1;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--text-primary);
    word-break: break-all;
    overflow-wrap: break-word;
}

.wallet-key-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.wallet-key-copy,
.wallet-key-toggle {
    background: var(--accent-color);
    border: none;
    color: var(--text-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.wallet-key-copy:hover,
.wallet-key-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wallet-key-warning {
    display: block;
    font-size: 0.75rem;
    color: #ffaa00;
    margin-top: 0.5rem;
}

.wallet-error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 6px;
    padding: 1rem;
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.wallet-generate-step,
.wallet-import-step {
    display: flex;
    flex-direction: column;
}

.wallet-generate-step h3,
.wallet-import-step h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* AI NFT Assistant Responsive Layout */
.ai-assistant-layout {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    gap: 1.5rem !important;
}

@media (max-width: 768px) {
    .ai-assistant-layout {
        grid-template-columns: 1fr !important;
    }
}































