/**
 * DeMV Platform - Cyberpunk Theme
 * Cyberpunk-inspired styling for the entire platform
 * Optimized for performance - removed animations and transitions
 */

/* Neon glow effects - simplified to reduce CPU usage */
.neon-glow {
    color: rgba(0, 204, 255, 1.0);
}

.neon-glow-purple {
    color: rgba(108, 99, 255, 1.0);
}

.neon-glow-green {
    color: rgba(0, 255, 136, 1.0);
}

.neon-glow-red {
    color: rgba(255, 51, 102, 1.0);
}

/* 
 * Cyberpunk Navigation Styling
 * ONLY apply colors and visual effects, not positioning or layout
 * to avoid conflicts with unified-navigation.css
 */
/*
.cyberpunk-nav {
    background: rgba(13, 13, 22, 0.95);
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
}

.cyberpunk-nav.scrolled {
    background: rgba(10, 10, 18, 0.98);
    border-bottom: 1px solid rgba(0, 255, 204, 0.3);
}

.cyberpunk-nav .logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #00ffcc;
    letter-spacing: 1px;
}

.cyberpunk-nav .logo-platform {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 3px;
    opacity: 0.7;
}

.cyberpunk-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.cyberpunk-nav .nav-link:hover {
    color: #ffffff;
}

.cyberpunk-nav .nav-link.active {
    color: #00ffcc;
}

.cyberpunk-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffcc;

}

.cyberpunk-nav .nav-link:hover::after {
    width: 100%;
}

.cyberpunk-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ffcc;
}

.cyberpunk-nav .profile-avatar {
    border: 2px solid rgba(0, 255, 204, 0.3);
    background-color: rgba(0, 255, 204, 0.1);
}

.cyberpunk-nav .profile-name {
    color: rgba(255, 255, 255, 0.8);
}

.cyberpunk-nav .wallet-address {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(0, 255, 204, 0.05);
}
*/

/* Mobile menu toggle styling - DEPRECATED: Now handled by unified-navigation.css */
/* 
.cyberpunk-nav .menu-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
}

.cyberpunk-nav .menu-toggle:hover {
    color: #00ffcc;
}

.cyberpunk-nav .menu-toggle.active span {
    background-color: #00ffcc;
}
*/

/* Responsive Navigation - ONLY apply colors and visual effects */
@media (max-width: 992px) {
    /* Remove layout styles that conflict with unified navigation */
    /* Only keep color and visual effect styles */
}

/* Mobile styling for the logo and other non-navigation elements */
@media (max-width: 480px) {
    .cyberpunk-nav .logo-text {
        font-size: 1.5rem;
    }
    
    .cyberpunk-nav .logo-platform {
        display: none;
    }
}

/* Mobile Menu - DEPRECATED: These styles are now handled by unified-navigation.css */
/*
.mobile-menu {
    background: linear-gradient(135deg, rgba(26, 26, 37, 0.97) 0%, rgba(13, 13, 22, 0.99) 100%);
    border-left: 1px solid rgba(0, 255, 204, 0.2);
}

.mobile-menu .mobile-profile {
    background-color: rgba(0, 255, 204, 0.05);
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.mobile-menu .mobile-profile-avatar {
    background-color: rgba(0, 255, 204, 0.1);
    border: 2px solid rgba(0, 255, 204, 0.3);
}

.mobile-menu .mobile-profile-name {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-menu .mobile-profile-wallet {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(0, 255, 204, 0.05);
}

.mobile-menu .mobile-profile-action {
    background-color: rgba(0, 255, 204, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu .mobile-profile-action:hover {
    background-color: rgba(0, 255, 204, 0.2);
    color: #ffffff;
}

.mobile-menu .mobile-wallet-status {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.mobile-menu .wallet-status-label {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu .wallet-status-value {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.2);
}

.mobile-menu .wallet-status-value.connected {
    background-color: rgba(0, 255, 204, 0.1);
    color: #00ffcc;
    border-left: 3px solid #00ffcc;
}

.mobile-menu .mobile-nav-link {
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(0, 255, 204, 0.05);
}

.mobile-menu .mobile-nav-link:hover {
    background-color: rgba(0, 255, 204, 0.05);
    color: #ffffff;
}

.mobile-menu .mobile-nav-link i {
    color: rgba(0, 255, 204, 0.7);
}

.mobile-menu .mobile-auth-button {
    background-color: rgba(0, 255, 204, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu .mobile-auth-button:hover {
    background-color: rgba(0, 255, 204, 0.2);
    color: #ffffff;
}

.mobile-menu .mobile-login-btn {
    border: 1px solid rgba(0, 255, 204, 0.3);
}

.mobile-menu .mobile-register-btn {
    background-color: rgba(0, 255, 204, 0.2);
}

.mobile-menu-overlay {
    background-color: rgba(13, 13, 22, 0.7);
}
*/

/* Mobile Navigation - keep these styles as they don't conflict */
/* DEPRECATED: These styles are now handled by unified-navigation.css */
/*
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 37, 0.97) 0%, rgba(13, 13, 22, 0.99) 100%);
    z-index: 1000;
    transition: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(0, 255, 204, 0.2);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.mobile-nav .logo {
    display: flex;
    align-items: baseline;
}

.mobile-nav .logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #00ffcc;
}

.mobile-nav .logo-platform {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: #ffffff;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-left: 3px;
}

.mobile-nav .close-mobile-nav {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav .close-mobile-nav:hover {
    color: #00ffcc;
}

.mobile-nav-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 24px;
    color: rgba(0, 255, 204, 0.7);
}

.mobile-nav-link:hover {
    background: rgba(0, 255, 204, 0.1);
    color: #ffffff;
}

.mobile-nav-link:hover i {
    color: #00ffcc;
}

.mobile-nav-link.active {
    background: rgba(0, 255, 204, 0.15);
    color: #00ffcc;
    font-weight: 500;
}

.mobile-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #00ffcc;
}

.mobile-nav-link.active i {
    color: #00ffcc;
}

.mobile-nav-dropdown {
    position: relative;
}

.mobile-nav-dropdown .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(26, 26, 37, 0.5);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.mobile-nav-dropdown .dropdown-trigger i.dropdown-icon {
    transition: none;
}

.mobile-nav-dropdown.active .dropdown-trigger i.dropdown-icon {
    transform: rotate(180deg);
}

.mobile-nav-dropdown .dropdown-content {
    max-height: none;
    overflow: hidden;
    transition: none;
    margin-left: 15px;
    border-left: 1px solid rgba(0, 255, 204, 0.2);
}

.mobile-nav-dropdown.active .dropdown-content {
    max-height: none;
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 255, 204, 0.1);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar.small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 204, 0.3);
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.user-status {
    color: rgba(0, 255, 204, 0.7);
    font-size: 0.8rem;
}

.mobile-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.mobile-quick-action {
    flex: 1;
    min-width: 120px;
    padding: 10px;
    background: rgba(26, 26, 37, 0.5);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.mobile-quick-action i {
    font-size: 1.5rem;
    color: rgba(0, 255, 204, 0.8);
}

.mobile-quick-action span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.mobile-quick-action:hover {
    background: rgba(0, 255, 204, 0.1);
    transform: none;
    box-shadow: none;
}
*/

/* Cyberpunk buttons */
.cybr-btn {
    position: relative;
    background: transparent;
    color: #00ccff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 204, 255, 0.4);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.cybr-btn:before {
    display: none; /* Remove animated gradient effect */
}

.cybr-btn:hover {
    background: rgba(0, 204, 255, 0.1);
    box-shadow: none;
}

.cybr-btn-purple {
    color: #6c63ff;
    border: 1px solid rgba(108, 99, 255, 0.4);
}

.cybr-btn-purple:before {
    display: none; /* Remove animated gradient effect */
}

.cybr-btn-purple:hover {
    background: rgba(108, 99, 255, 0.1);
    box-shadow: none;
}

.cybr-btn-green {
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.4);
}

.cybr-btn-green:before {
    display: none; /* Remove animated gradient effect */
}

.cybr-btn-green:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: none;
}

.cybr-btn-red {
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.4);
}

.cybr-btn-red:before {
    display: none; /* Remove animated gradient effect */
}

.cybr-btn-red:hover {
    background: rgba(255, 51, 102, 0.1);
    box-shadow: none;
}

/* Cyberpunk cards */
.cybr-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.cybr-card:before {
    display: none; /* Remove animated gradient effect */
}

.cybr-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(0, 204, 255, 0.2);
}

/* Cyberpunk form elements */
.cybr-input {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 5px;
    color: #e0e0e0;
    padding: 12px 15px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.cybr-input:focus {
    outline: none;
    border-color: #00ccff;
    box-shadow: none;
}

.cybr-input::placeholder {
    color: rgba(176, 176, 176, 0.5);
}

.cybr-select {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 5px;
    color: #e0e0e0;
    padding: 12px 15px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ccff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.cybr-select:focus {
    outline: none;
    border-color: #00ccff;
    box-shadow: none;
}

/* Cyberpunk progress bar */
.cybr-progress {
    width: 100%;
    height: 8px;
    background: rgba(20, 20, 30, 0.6);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.cybr-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6c63ff, #00ccff);
    border-radius: 4px;
}

.cybr-progress-bar.animated {
    background-size: 100% 100%;
    animation: none;
}

/* Cyberpunk badges */
.cybr-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cybr-badge-blue {
    background: rgba(0, 204, 255, 0.1);
    color: #00ccff;
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.cybr-badge-purple {
    background: rgba(108, 99, 255, 0.1);
    color: #6c63ff;
    border: 1px solid rgba(108, 99, 255, 0.3);
}

.cybr-badge-green {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.cybr-badge-red {
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

/* Cyberpunk dividers */
.cybr-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.3), transparent);
    margin: 30px 0;
    position: relative;
}

.cybr-divider:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 5px;
    background: #00ccff;
    border-radius: 2px;
}

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

::-webkit-scrollbar-track {
    background: rgba(20, 20, 30, 0.6);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6c63ff, #00ccff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00ccff, #6c63ff);
}

/* Cyberpunk tooltips */
.cybr-tooltip {
    position: relative;
    display: inline-block;
}

.cybr-tooltip .tooltip-text {
    visibility: hidden;
    background: rgba(20, 20, 30, 0.9);
    color: #e0e0e0;
    text-align: center;
    border-radius: 5px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: none;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid rgba(0, 204, 255, 0.3);
    box-shadow: none;
}

.cybr-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(20, 20, 30, 0.9) transparent transparent transparent;
}

.cybr-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Cyberpunk grid */
.cybr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Cyberpunk tables */
.cybr-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
}

.cybr-table th,
.cybr-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
}

.cybr-table th {
    background: rgba(20, 20, 30, 0.6);
    color: #00ccff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cybr-table tr:hover {
    background: rgba(0, 204, 255, 0.05);
}

.cybr-table tr:last-child td {
    border-bottom: none;
}

/* Cyberpunk alerts */
.cybr-alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.cybr-alert:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.cybr-alert-info {
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.cybr-alert-info:before {
    background: #00ccff;
}

.cybr-alert-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.cybr-alert-success:before {
    background: #00ff88;
}

.cybr-alert-warning {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.cybr-alert-warning:before {
    background: #ffcc00;
}

.cybr-alert-danger {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.cybr-alert-danger:before {
    background: #ff3366;
}

/* Cyberpunk modal */
.cybr-modal {
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 10px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.cybr-modal:before {
    display: none; /* Remove animated gradient effect */
}

.cybr-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cybr-modal-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #00ccff;
}

.cybr-modal-body {
    padding: 20px;
}

.cybr-modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 204, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Cyberpunk text effects */
.glitch-text {
    position: relative;
    color: #00ccff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glitch-text:before,
.glitch-text:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text:before {
    color: #ff3366;
    z-index: -1;
    animation: none;
}

.glitch-text:after {
    color: #00ff88;
    z-index: -2;
    animation: none;
}

/* Cyberpunk background effects */
.cybr-bg {
    position: relative;
    overflow: hidden;
}

.cybr-bg:before {
    display: none; /* Remove animated background effect */
}

/* Cyberpunk utility classes */
.text-gradient {
    background: linear-gradient(90deg, #6c63ff, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-green {
    background: linear-gradient(90deg, #00ccff, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-red {
    background: linear-gradient(90deg, #ff3366, #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(90deg, #6c63ff, #00ccff) 1;
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 204, 255, 0.1));
}

.shadow-neon {
    box-shadow: none;
}

.shadow-neon-purple {
    box-shadow: none;
}

.shadow-neon-green {
    box-shadow: none;
}

.shadow-neon-red {
    box-shadow: none;
}
