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

/* Spinner Animation für Transaction Status */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dark Mode - Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
    position: relative;
    overflow-x: hidden;
}

/* Meta Check Styles */
.meta-check-coins-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.meta-check-coin-card {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.meta-check-coin-card:hover {
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3), 0 0 30px rgba(34, 197, 94, 0.15);
}

.meta-check-coin-image {
    flex-shrink: 0;
}

.meta-check-coin-info {
    flex: 1;
    min-width: 0;
}

.meta-check-coin-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.meta-check-coin-header h3 {
    margin: 0;
    font-size: 1.1em;
    color: #e0e0e0;
    font-weight: 600;
}

.meta-check-coin-symbol {
    background: rgba(34, 197, 94, 0.25);
    color: #22c55e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.meta-check-coin-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-check-coin-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-check-label {
    color: #6b7280;
    font-size: 0.9em;
    min-width: 100px;
}

.meta-check-value {
    color: #e0e0e0;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .meta-check-coins-container {
        grid-template-columns: 1fr;
    }
    
    .meta-check-coin-card {
        flex-direction: column;
    }
    
    .meta-check-coin-image {
        align-self: center;
    }
}

/* Twitter Coins Tracker - Responsive Layout */
.twitter-coins-tracker-tweet {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tweet-image-column {
    width: 100%;
    max-width: 200px;
}

.tweet-content-column {
    flex: 1;
    min-width: 0;
}

.tweet-info-column {
    width: 100%;
}

/* Account-Statistiken: Mobile - Zahlen direkt neben Labels */
.account-stat-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Desktop: Grid-Layout (3 Spalten) */
@media (min-width: 768px) {
    .twitter-coins-tracker-tweet {
        display: grid;
        grid-template-columns: 200px 1fr 280px;
        gap: 16px;
    }
    
    .tweet-image-column {
        width: 200px;
        max-width: none;
    }
    
    .tweet-info-column {
        width: 280px;
    }
    
    /* Desktop: Account-Statistiken rechtsbündig */
    .account-stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .account-stat-item strong {
        margin-left: 0 !important;
    }
}

/* Animated Background Gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 20s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 100%;
    margin: 0;
    background: #0a0a0a;
    min-height: 100vh;
}

.app-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Dark Mode */
.sidebar {
    width: 250px;
    background: linear-gradient(135deg, #0a1a0a 0%, #0d1f0d 100%);
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    border-right: 2px solid rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-shrink: 0; /* Verhindert, dass Header schrumpft */
}

.sidebar-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.7), transparent);
}

.sidebar-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    overflow-y: auto;
    flex: 1;
    min-height: 0; /* Wichtig für flexbox overflow */
}

.sidebar-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.logout-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    position: relative;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ff6b6b;
    border-left-color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.logout-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.4), transparent);
    transition: width 0.3s ease;
}

.logout-btn:hover::before {
    width: 100%;
}

.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.4), transparent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(34, 197, 94, 0.2);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

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

.nav-link.active {
    background: rgba(34, 197, 94, 0.3);
    border-left-color: #22c55e;
    color: #fff;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.9);
    box-shadow: inset 0 0 20px rgba(34, 197, 94, 0.3);
}

.nav-link.active::before {
    width: 100%;
}

/* Submenü Styles */
.nav-submenu {
    position: relative;
}

.nav-submenu-toggle {
    cursor: pointer;
}

.submenu-arrow {
    float: right;
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.nav-submenu-items {
    padding-left: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid rgba(34, 197, 94, 0.3);
    margin-left: 3px;
}

.nav-submenu-item {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    color: #888 !important;
}

.nav-submenu-item:hover {
    color: #fff !important;
    background: rgba(34, 197, 94, 0.15) !important;
}

.nav-submenu-item.active {
    background: rgba(34, 197, 94, 0.25) !important;
    color: #fff !important;
    border-left-color: #22c55e !important;
}

/* Mobile Submenü */
.mobile-menu-submenu {
    position: relative;
}

.mobile-menu-submenu-toggle {
    cursor: pointer;
}

.mobile-menu-submenu-items {
    padding-left: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid rgba(34, 197, 94, 0.3);
}

.mobile-menu-submenu-item {
    padding: 12px 25px !important;
    font-size: 0.9rem !important;
    color: #888 !important;
}

.mobile-menu-submenu-item:hover {
    color: #fff !important;
    background: rgba(34, 197, 94, 0.15) !important;
}

.mobile-menu-submenu-item.active {
    background: rgba(34, 197, 94, 0.25) !important;
    color: #fff !important;
    border-left-color: #22c55e !important;
}

/* Main Content - Dark Mode */
.main-content {
    flex: 1;
    margin-left: 250px;
    min-height: 100vh;
    background: #0a0a0a;
}

/* Desktop: Sidebar immer sichtbar */
@media (min-width: 769px) {
    .sidebar {
        transform: translateX(0) !important;
    }
    
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .sidebar-overlay {
        display: none !important;
    }
}

.page {
    display: none;
    padding: 30px;
    background: #1a1a1a;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.7), transparent);
    animation: pageGlow 3s ease-in-out infinite;
}

@keyframes pageGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.page.active {
    display: block !important;
}

/* Mobile Menu Button (oben links im Main Content) */
.mobile-menu-button {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 999;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.5), 0 0 30px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    font-weight: bold;
}

.mobile-menu-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.7), 0 0 40px rgba(34, 197, 94, 0.4);
}

.mobile-menu-button:active {
    transform: scale(0.95);
}

/* Mobile Menu Dropdown (NEU - einfaches System) */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-dropdown {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #0a1a0a 0%, #0d1f0d 100%);
    z-index: 1002;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(34, 197, 94, 0.4);
    border-right: 2px solid rgba(34, 197, 94, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-dropdown.open {
    transform: translateX(0);
}

.mobile-menu-dropdown-header {
    padding: 20px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(34, 197, 94, 0.15);
}

.mobile-menu-dropdown-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #e0e0e0;
}

.mobile-menu-dropdown-close {
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-dropdown-close:hover {
    color: #fff;
    background: rgba(34, 197, 94, 0.3);
    border-radius: 50%;
}

.mobile-menu-dropdown-content {
    padding: 10px 0;
    overflow-y: auto;
    height: calc(100vh - 80px);
}

.mobile-menu-item {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    padding: 18px 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    border-left: 4px solid transparent;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

.mobile-menu-item:hover {
    color: #fff;
    background: rgba(34, 197, 94, 0.25);
    border-left-color: #22c55e;
    padding-left: 30px;
}

.mobile-menu-item.active {
    background: rgba(34, 197, 94, 0.35);
    border-left-color: #22c55e;
    color: #fff;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        display: none !important;
    }
    
    .mobile-menu-dropdown {
        display: block !important;
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 70px;
    }
    
    .mobile-menu-button {
        display: block !important;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1003;
    }
    
    .page {
        margin: 10px;
        padding: 20px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-dropdown {
        display: none !important;
    }
    
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}

h2 {
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.loading {
    text-align: center;
    padding: 40px;
    color: #c0c0c0;
}

.ideas-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.ideas-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.ideas-table thead {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.ideas-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.ideas-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    vertical-align: middle;
    color: #e0e0e0;
}

.ideas-table tbody tr:hover {
    background: rgba(34, 197, 94, 0.15);
}

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

.idea-name-cell {
    min-width: 150px;
}

.idea-name {
    font-weight: 600;
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.idea-symbol {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.idea-image-cell {
    width: 80px;
    padding: 10px !important;
}

.idea-table-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.idea-table-image-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1.5rem;
    color: #c0c0c0;
}

.idea-socials-cell {
    width: 100px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-block;
}

.social-icon:hover {
    transform: scale(1.2);
}

.idea-launches-cell {
    min-width: 120px;
}

.launch-count {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.last-launched {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.idea-actions-cell {
    width: 150px;
}

.idea-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.idea-actions .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.idea-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.idea-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.idea-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.idea-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.idea-card-symbol {
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.idea-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    background: #e0e0e0;
}

.idea-card-description {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.5;
}

.idea-card-links {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.idea-card-link {
    color: #22c55e;
    text-decoration: none;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.idea-card-link:hover {
    text-decoration: underline;
}

.idea-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.idea-card-info-item {
    display: flex;
    flex-direction: column;
}

.idea-card-info-label {
    color: #c0c0c0;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.idea-card-info-value {
    color: #333;
    font-weight: 500;
}

.idea-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4), 0 0 30px rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Formular Styles */
.coin-form {
    max-width: 800px;
}

.form-group {
    margin-bottom: 15px;
}

/* Kompaktere Form-Gruppen für Twitter Account Modals */
#add-twitter-account-form .form-group,
#edit-twitter-account-form .form-group {
    margin-bottom: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #c0c0c0;
}

input[type="text"],
input[type="url"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

input::placeholder,
textarea::placeholder {
    color: #888;
    opacity: 1;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="file"] {
    padding: 8px;
}

.image-preview {
    margin-top: 10px;
}

.image-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Wallet Styles */
.wallets-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.wallets-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.wallet-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wallet-card.master-wallet {
    background: #fff9e6;
    border: 2px solid #ffc107;
}

.wallet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.master-badge {
    background: #ffc107;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wallet-card-balance {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 6px;
    padding: 12px;
    margin: 15px 0;
    text-align: center;
    font-size: 1.1rem;
    color: #2e7d32;
}

.wallet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.wallet-card-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #22c55e;
    word-break: break-all;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.wallet-card-tag {
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.wallet-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.wallet-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 60px rgba(34, 197, 94, 0.4);
    position: relative;
    border: 2px solid rgba(34, 197, 94, 0.5);
    animation: modalGlow 3s ease-in-out infinite;
}

@keyframes modalGlow {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 60px rgba(34, 197, 94, 0.4);
        border-color: rgba(34, 197, 94, 0.5);
    }
    50% { 
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 80px rgba(34, 197, 94, 0.6);
        border-color: rgba(34, 197, 94, 0.7);
    }
}

/* Dark Login Modal Styles - CRYPTO BULLISH EDITION */
.login-modal-dark {
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        #000000;
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: 9999;
}

/* Animated Background Particles */
.login-bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.login-bg-particles::before,
.login-bg-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 
        100px 200px 0 #22c55e,
        300px 100px 0 #667eea,
        500px 300px 0 #f59e0b,
        700px 150px 0 #3b82f6,
        900px 250px 0 #22c55e,
        200px 400px 0 #667eea,
        600px 450px 0 #f59e0b,
        800px 350px 0 #3b82f6;
    animation: floatParticles 20s ease-in-out infinite;
}

.login-bg-particles::after {
    animation-delay: -10s;
    box-shadow: 
        150px 250px 0 #3b82f6,
        350px 150px 0 #22c55e,
        550px 350px 0 #667eea,
        750px 200px 0 #f59e0b,
        950px 300px 0 #3b82f6,
        250px 500px 0 #22c55e,
        650px 500px 0 #667eea,
        850px 400px 0 #f59e0b;
}

@keyframes floatParticles {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 1; }
    50% { transform: translate(-15px, 20px) scale(0.8); opacity: 0.8; }
    75% { transform: translate(30px, 10px) scale(1.1); opacity: 0.9; }
}

/* Animated Chart Background */
.login-bg-chart {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(34, 197, 94, 0.1) 2px,
            rgba(34, 197, 94, 0.1) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(34, 197, 94, 0.1) 2px,
            rgba(34, 197, 94, 0.1) 4px
        );
    animation: chartMove 30s linear infinite;
}

@keyframes chartMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.login-modal-content {
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%),
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.2) 0%, transparent 50%);
    border: 2px solid rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 0 60px rgba(34, 197, 94, 0.4),
        0 0 120px rgba(102, 126, 234, 0.3),
        inset 0 0 60px rgba(34, 197, 94, 0.1);
    animation: loginGlow 3s ease-in-out infinite;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.login-modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.login-modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(34, 197, 94, 0.05) 50%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes loginGlow {
    0%, 100% { 
        box-shadow: 
            0 0 60px rgba(34, 197, 94, 0.4),
            0 0 120px rgba(102, 126, 234, 0.3),
            inset 0 0 60px rgba(34, 197, 94, 0.1);
        border-color: rgba(34, 197, 94, 0.5);
    }
    50% { 
        box-shadow: 
            0 0 80px rgba(34, 197, 94, 0.6),
            0 0 150px rgba(102, 126, 234, 0.4),
            inset 0 0 80px rgba(34, 197, 94, 0.2);
        border-color: rgba(34, 197, 94, 0.7);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.title-word {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 30px rgba(34, 197, 94, 0.8),
        0 0 60px rgba(34, 197, 94, 0.4);
    animation: titleGlow 2s ease-in-out infinite;
    position: relative;
}

.title-word:nth-child(1) {
    animation-delay: 0s;
    font-size: 2rem;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.title-word:nth-child(3) {
    animation-delay: 0.4s;
}

.title-word:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.6));
        transform: translateY(0);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(34, 197, 94, 1));
        transform: translateY(-5px);
    }
}

.login-subtitle {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    margin-top: -5px;
}

.subtitle-glow {
    background: linear-gradient(90deg, #667eea, #22c55e, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtitleShine 3s ease-in-out infinite;
    font-weight: 600;
}

@keyframes subtitleShine {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.8));
    }
}


.login-form-dark {
    position: relative;
    z-index: 1;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.label-icon {
    font-size: 1.2rem;
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

.input-wrapper {
    position: relative;
}

.login-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 1;
}

.login-input:focus {
    outline: none;
    border-color: #22c55e;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 0 30px rgba(34, 197, 94, 0.5),
        inset 0 0 30px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    filter: blur(10px);
}

.login-input:focus ~ .input-glow {
    opacity: 1;
    animation: inputPulse 2s ease-in-out infinite;
}

@keyframes inputPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.login-input::placeholder {
    color: #888;
}

.login-error {
    color: #ff4444;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 6px;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.login-btn {
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 50%, #3b82f6 100%);
    background-size: 200% 200%;
    border: none;
    padding: 18px 28px;
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 25px rgba(34, 197, 94, 0.5),
        0 0 50px rgba(34, 197, 94, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: btnGradient 3s ease infinite;
    border-radius: 12px;
}

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

.login-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(34, 197, 94, 0.7),
        0 0 80px rgba(34, 197, 94, 0.5),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
    animation-duration: 1s;
}

.login-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-text {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(34, 197, 94, 0.6);
    font-weight: 900;
}

.btn-icon {
    display: inline-block;
    animation: iconBounce 1.5s ease-in-out infinite;
    font-size: 1.3rem;
}

.btn-icon:nth-child(3) {
    animation-delay: 0.3s;
}

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

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.login-btn:hover .btn-glow {
    width: 400px;
    height: 400px;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    border-radius: 12px;
}

.btn-particles::before,
.btn-particles::after {
    content: '✨';
    position: absolute;
    font-size: 1rem;
    opacity: 0;
    animation: particleFloat 2s ease-in-out infinite;
}

.btn-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.login-btn:hover .btn-particles::before,
.login-btn:hover .btn-particles::after {
    opacity: 1;
}

@keyframes particleFloat {
    0% { 
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    50% { 
        transform: translateY(-30px) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translateY(-60px) scale(0);
        opacity: 0;
    }
}

/* Login Footer */
.login-footer {
    margin-top: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.security-badge {
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.powered-by {
    color: #666;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.crypto-text {
    background: linear-gradient(90deg, #22c55e, #3b82f6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: textShine 3s ease-in-out infinite;
}

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

.close {
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.modal-content h3 {
    margin-bottom: 20px;
    color: #e0e0e0;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.private-key-display {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #dc3545;
}

.private-key-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 0.9rem;
}

/* Form Type Toggle */
.form-type-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.toggle-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.toggle-btn:hover {
    color: #22c55e;
    background: #f8f9fa;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.toggle-btn.active {
    color: #22c55e;
    border-bottom-color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.form-type-content {
    display: none;
}

.form-type-content.active {
    display: block;
}

/* Import Coin Styles */
.imported-preview {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.imported-image {
    text-align: center;
}

.imported-image img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .ideas-list {
        margin: 0 -30px;
        padding: 0 30px;
    }
    
    .ideas-table {
        min-width: 800px;
    }
    
    .idea-actions {
        flex-direction: column;
    }
    
    .idea-actions .btn {
        width: 100%;
        margin-bottom: 4px;
    }
    
    .wallets-list {
        grid-template-columns: 1fr;
    }
    
    header {
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }
    
    header h1 {
        font-size: 1.5rem;
        flex: 1;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 30px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 20px;
        max-width: 95%;
    }
    
    /* Archive Table - Horizontal Scroll auf Mobile */
    .archive-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -30px;
        padding: 0 30px;
    }
    
    .archive-table {
        min-width: 1000px;
    }
    
    .archive-card {
        display: none;
    }
}

/* Token Mints Styles */
.mints-container {
    padding: 30px;
}

.mint-section {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
}

.mint-section h3 {
    color: #22c55e;
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.section-description {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.ca-result {
    margin-top: 20px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 2px solid rgba(34, 197, 94, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(34, 197, 94, 0.2);
}

.ca-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.ca-label {
    font-weight: 600;
    color: #e0e0e0;
    min-width: 150px;
}

.ca-value {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #22c55e;
    word-break: break-all;
    flex: 1;
    background: rgba(34, 197, 94, 0.15);
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.ca-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(34, 197, 94, 0.3);
}

.ca-info-item {
    display: flex;
    gap: 10px;
}

.ca-info-label {
    font-weight: 600;
    color: #c0c0c0;
    min-width: 120px;
}

.ca-info-value {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #e0e0e0;
    word-break: break-all;
    flex: 1;
}

/* Vanity Progress */
.vanity-progress {
    margin-top: 20px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
}

.progress-bar-container {
    width: 100%;
    height: 30px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #10b981 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #888;
    flex-wrap: wrap;
}

.progress-separator {
    color: #ccc;
}

/* Saved CAs List */
.saved-cas-list {
    margin-top: 20px;
}

.saved-ca-item {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.05);
}

.saved-ca-item-header {
    flex: 1;
    min-width: 200px;
}

.saved-ca-item-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #22c55e;
    word-break: break-all;
    margin-bottom: 5px;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.saved-ca-item-meta {
    font-size: 0.85rem;
    color: #c0c0c0;
}

.saved-ca-item-actions {
    display: flex;
    gap: 10px;
}

.form-hint {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #c0c0c0;
    line-height: 1.3;
}

.vanity-ca-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vanity-ca-item {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.05);
}

.vanity-ca-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.vanity-ca-item-number {
    background: #22c55e;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.vanity-ca-item-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #22c55e;
    word-break: break-all;
    flex: 1;
    min-width: 200px;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.vanity-ca-item-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.vanity-ca-item-meta {
    font-size: 0.85rem;
    color: #c0c0c0;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
}

@media (max-width: 768px) {
    .ca-display {
        flex-direction: column;
        align-items: flex-start;
    }

    .ca-value {
        width: 100%;
    }
}

/* Launch Monitoring Styles */
.launch-monitoring {
    padding: 20px;
}

.launch-header {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.launch-header h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.launch-token-mint {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}

.launch-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.metric-card {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
}

.metric-card.profit {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.5);
}

.metric-card.loss {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
}

.metric-card.inflow-positive {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(26, 26, 26, 1) 100%);
    border-color: rgba(76, 175, 80, 0.5);
}

.metric-card.inflow-negative {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(26, 26, 26, 1) 100%);
    border-color: rgba(239, 68, 68, 0.5);
}

.metric-label {
    font-size: 0.9rem;
    color: #c0c0c0;
    margin-bottom: 10px;
    font-weight: 500;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e0e0e0;
}

.metric-value.large {
    font-size: 2rem;
}

.metric-card.profit .metric-value {
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.metric-card.loss .metric-value {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.launch-actions {
    margin-bottom: 25px;
    text-align: center;
}

.launch-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .launch-content-grid {
        grid-template-columns: 1fr;
    }
}

.launch-events {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
}

.launch-events h4 {
    margin-bottom: 15px;
    color: #e0e0e0;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.events-list {
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-item {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.event-item.event-buy {
    border-left: 4px solid #4caf50;
    background: rgba(76, 175, 80, 0.05);
}

.event-item.event-sell {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.event-time {
    color: #888;
    font-size: 0.85rem;
    min-width: 80px;
}

.event-type {
    font-weight: 600;
    min-width: 50px;
}

.event-buy .event-type {
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.event-sell .event-type {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.event-mc {
    flex: 1;
    color: #22c55e;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.event-amount {
    color: #e0e0e0;
    font-weight: 500;
}

.wallet-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
}

.wallet-badge-dev {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.wallet-badge-volume {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.wallet-badge-trading {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.launch-preview {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
}

.launch-preview-card h4 {
    margin-bottom: 15px;
    color: #e0e0e0;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.launch-preview-card img {
    max-width: 100%;
    border-radius: 6px;
    margin: 10px 0;
}

/* Active Launches List */
.active-launches-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.active-launch-card {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
}

.active-launch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7), 0 0 40px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.5);
}

.launch-card-header {
    margin-bottom: 15px;
}

.launch-card-header h4 {
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
}

.launch-card-token-mint {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #22c55e;
    word-break: break-all;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.launch-card-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #e0e0e0;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.metric-item.profit .metric-value {
    color: #4caf50;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.metric-item.loss .metric-value {
    color: #ef4444;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* Archive Table Styles */
.archive-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.archive-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    margin-top: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.archive-table thead {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.archive-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.archive-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    color: #e0e0e0;
}

.archive-table tbody tr:hover {
    background: rgba(34, 197, 94, 0.15);
}

.archive-table .profit {
    color: #4caf50;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.archive-table .loss {
    color: #ef4444;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* X Coins Styles */
.x-coins-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.x-coins-group {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
}

.x-coins-group:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7), 0 0 40px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
}

.x-coins-group-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(34, 197, 94, 0.4);
}

.x-coins-group-info {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.x-tweet-link-full {
    color: #22c55e;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: monospace;
    word-break: break-all;
    max-width: 60%;
    display: inline-block;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.x-tweet-link-full:hover {
    text-decoration: underline;
}

.x-tweet-age {
    color: #888;
    font-size: 0.9rem;
}

.x-coin-count {
    background: #6366f1;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.x-coins-group-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.x-coin-item {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 140px;
}

.x-coin-item:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4), 0 0 30px rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
    background: #1f1f1f;
}

.x-coin-item-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.x-coin-image {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.x-coin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.x-coin-placeholder {
    font-size: 28px;
}

.x-coin-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.x-coin-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.x-coin-name-full {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 600;
    word-break: break-word;
    line-height: 1.3;
    display: block;
}

.x-coin-symbol {
    font-size: 0.85rem;
    color: #b0b0b0;
    background: rgba(34, 197, 94, 0.25);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.x-coin-mc {
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    color: #e0e0e0;
}

.x-coin-mc.high-mc {
    color: #10b981;
}

.x-coin-mc.medium-mc {
    color: #f59e0b;
}

.x-coin-mc.low-mc {
    color: #888;
}

.x-coin-action {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .x-coins-group-content {
        grid-template-columns: 1fr;
    }
    
    .x-coins-group-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

.launch-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .launch-metrics {
        grid-template-columns: 1fr;
    }
    
    .active-launches-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   WALLETS PAGE - TABELLEN LAYOUT
   ============================================================================ */

/* Gesamt-SOL Anzeige */
.total-sol-display {
    margin: 20px 0 30px 0;
}

.total-sol-card {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(34, 197, 94, 0.3);
    text-align: center;
    animation: totalSolGlow 3s ease-in-out infinite;
}

@keyframes totalSolGlow {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 60px rgba(34, 197, 94, 0.5); }
}

.total-sol-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-sol-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* Wallet Sektionen */
.wallet-section {
    margin-bottom: 40px;
}

.wallet-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

/* Wallets Tabellen */
.wallets-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.wallets-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.wallets-table thead {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.wallets-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.wallets-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    vertical-align: middle;
    color: #e0e0e0;
}

.wallets-table tbody tr:hover {
    background: rgba(34, 197, 94, 0.15);
}

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

.wallet-address-cell {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #22c55e;
    word-break: break-all;
    max-width: 300px;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.wallet-tag-cell {
    font-weight: 500;
    color: #e0e0e0;
}

.wallet-balance-cell {
    font-weight: 600;
    color: #4caf50;
    font-size: 1.1rem;
}

.wallet-actions-cell {
    white-space: nowrap;
}

.wallet-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wallet-actions .btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.master-badge-table {
    background: #ffc107;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .total-sol-amount {
        font-size: 2rem;
    }
    
    .wallets-table {
        min-width: 700px;
    }
    
    .wallet-actions {
        flex-direction: column;
    }
    
    .wallet-actions .btn-small {
        width: 100%;
    }
}

/* ============================================================================
   DASHBOARD STYLES
   ============================================================================ */

.dashboard-total-sol {
    margin: 20px 0 30px 0;
}

.dashboard-total-sol-card {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(34, 197, 94, 0.3);
    text-align: center;
    animation: dashboardCardGlow 3s ease-in-out infinite;
}

@keyframes dashboardCardGlow {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 60px rgba(34, 197, 94, 0.5); }
}

.dashboard-total-sol-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-total-sol-amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-stat-card {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.15), transparent);
    transition: left 0.5s;
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 50px rgba(34, 197, 94, 0.4);
    border-color: rgba(34, 197, 94, 0.6);
}

.dashboard-stat-card:hover::before {
    left: 100%;
}

.dashboard-stat-icon {
    font-size: 3rem;
    line-height: 1;
}

.dashboard-stat-content {
    flex: 1;
}

.dashboard-stat-label {
    font-size: 0.9rem;
    color: #c0c0c0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.dashboard-stat-value.positive {
    color: #2e7d32;
}

.dashboard-stat-value.negative {
    color: #c62828;
}

.dashboard-section {
    margin-top: 40px;
}

.dashboard-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(34, 197, 94, 0.4);
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.dashboard-top-launches {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
}

.dashboard-top-launch-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    transition: background 0.2s;
}

.dashboard-top-launch-item:last-child {
    border-bottom: none;
}

.dashboard-top-launch-item:hover {
    background: rgba(34, 197, 94, 0.15);
}

.dashboard-top-launch-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    min-width: 50px;
    text-align: center;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.dashboard-top-launch-info {
    flex: 1;
    margin-left: 20px;
}

.dashboard-top-launch-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.dashboard-top-launch-details {
    font-size: 0.9rem;
    color: #888;
}

.dashboard-top-launch-profit {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    min-width: 120px;
    text-align: right;
}

.dashboard-top-launch-profit.positive {
    color: #2e7d32;
    background: #e8f5e9;
}

.dashboard-top-launch-profit.negative {
    color: #c62828;
    background: #ffebee;
}

.dashboard-empty {
    padding: 40px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-total-sol-amount {
        font-size: 2.5rem;
    }
    
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stat-card {
        padding: 20px;
    }
    
    .dashboard-stat-icon {
        font-size: 2.5rem;
    }
    
    .dashboard-stat-value {
        font-size: 1.5rem;
    }
    
    .dashboard-top-launch-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dashboard-top-launch-rank {
        min-width: auto;
    }
    
    .dashboard-top-launch-info {
        margin-left: 0;
    }
    
    .dashboard-top-launch-profit {
        width: 100%;
        text-align: left;
    }
}

/* ============================================================================
   VOLUME BOT CONTROLS
   ============================================================================ */

.volume-bot-controls {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.volume-bot-controls h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #333;
}

.volume-bot-status {
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.volume-bot-status.running {
    background: #e8f5e9;
    color: #2e7d32;
}

.volume-bot-status.stopped {
    background: #fff3e0;
    color: #e65100;
}

.btn-warning {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-warning:hover {
    background: #f57c00;
}

/* ============================================================================
   WALLET ARCHIVE
   ============================================================================ */

.wallet-archive-section {
    margin-top: 40px;
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    padding-top: 20px;
}

.wallet-archive-header {
    cursor: pointer;
    padding: 15px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 8px;
    transition: background 0.3s ease;
    user-select: none;
}

.wallet-archive-header:hover {
    background: rgba(34, 197, 94, 0.25);
}

.wallet-archive-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #e0e0e0;
}

#wallet-archive-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.wallet-archive-content {
    margin-top: 15px;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.wallet-archive-content .wallets-table {
    background: #1a1a1a;
}

.wallet-archive-content .wallets-table td {
    color: #888;
}

.wallet-archive-content .wallets-table tr:hover {
    background: rgba(34, 197, 94, 0.1);
}

.wallet-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-type-badge.dev {
    background: rgba(34, 197, 94, 0.25);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.wallet-type-badge.volume {
    background: rgba(118, 75, 162, 0.2);
    color: #764ba2;
    border: 1px solid rgba(118, 75, 162, 0.3);
}

/* ============================================================================
   TWITTER AKTIONEN BOX
   ============================================================================ */

.twitter-actions-box {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
    height: fit-content;
}

.twitter-actions-box h4 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.twitter-actions-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.twitter-comment-status {
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.twitter-comment-status.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.twitter-comment-status.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

.twitter-comment-status a {
    color: #1da1f2;
    text-decoration: none;
    font-weight: 600;
}

.twitter-comment-status a:hover {
    text-decoration: underline;
}

.twitter-comment-url {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
}

.twitter-comment-url.success {
    background: #f0fdf4;
    border: 1px solid #22c55e;
}

.twitter-url-label {
    font-weight: 600;
    color: #c0c0c0;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.twitter-url-link {
    display: block;
    color: #0ea5e9;
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-all;
    padding: 8px;
    background: white;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.twitter-url-link:hover {
    background: #f0f9ff;
    border-color: #0ea5e9;
    text-decoration: underline;
}

.twitter-comment-url.success .twitter-url-link {
    color: #16a34a;
}

.twitter-comment-url.success .twitter-url-link:hover {
    background: #f0fdf4;
    border-color: #22c55e;
}

.twitter-action-section {
    margin-bottom: 15px;
}

.twitter-action-section h5 {
    margin-bottom: 10px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
}

.all-tweet-urls {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.all-tweet-urls h5 {
    margin-bottom: 15px;
    color: #374151;
    font-size: 16px;
    font-weight: 600;
}

.tweet-url-entry {
    margin-bottom: 10px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.placeholder-tag {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    cursor: pointer;
    margin-right: 4px;
    transition: all 0.2s;
    user-select: none;
}

.placeholder-tag:hover {
    background: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.placeholder-tag:active {
    transform: scale(0.98);
}

/* ============================================================================
   X ACCOUNTS SEITE
   ============================================================================ */

.x-accounts-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.x-accounts-tab {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.x-accounts-tab:hover {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.x-accounts-tab.active {
    color: #22c55e;
    border-bottom-color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.x-accounts-tab-content {
    display: none;
}

.x-accounts-tab-content.active {
    display: block;
}

/* Twitter Stats Sortierbare Spalten */
.sortable-column {
    transition: background-color 0.2s;
    position: relative;
}

.sortable-column:hover {
    background-color: rgba(59, 130, 246, 0.1) !important;
}

.sort-indicator {
    margin-left: 5px;
    font-size: 0.8em;
    color: #3b82f6;
}

/* Twitter Tracker Styles */
.twitter-tracker-tweet {
    transition: all 0.2s;
}

.twitter-tracker-tweet:hover {
    border-color: rgba(102, 126, 234, 0.4) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(102, 126, 234, 0.2);
}

.x-accounts-actions {
    margin-bottom: 20px;
}

.x-accounts-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.x-accounts-table thead {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.x-accounts-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.x-accounts-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    color: #e0e0e0;
}

.x-accounts-table tbody tr:hover {
    background: rgba(34, 197, 94, 0.15);
}

.x-accounts-table tbody tr:last-child td {
    border-bottom: none;
}

.x-account-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.x-account-status.active {
    background: #d1fae5;
    color: #065f46;
}

.x-account-status.inactive {
    background: #fee2e2;
    color: #991b1b;
}

.x-account-primary {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    background: #dbeafe;
    color: #1e40af;
}

.x-accounts-actions-buttons {
    display: flex;
    gap: 8px;
}

.rate-limit-ready {
    color: #22c55e;
    font-weight: 600;
}

.rate-limit-waiting {
    color: #f59e0b;
    font-weight: 600;
}

.x-accounts-actions-buttons .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Comments Tab */
.x-comments-actions {
    margin-bottom: 20px;
}

.x-comments-container {
    display: grid;
    gap: 15px;
}

.x-comment-item {
    background: #1a1a1a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.05);
}

.x-comment-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.5);
}

.x-comment-text {
    flex: 1;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.x-comment-actions {
    display: flex;
    gap: 8px;
}

/* Raid Manual Styles */
.raid-manual-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.raid-manual-container h3 {
    margin-bottom: 10px;
    color: #1f2937;
}

.raid-manual-container .form-hint {
    margin-bottom: 25px;
    color: #6b7280;
    font-size: 0.9rem;
}

#raid-result {
    margin-top: 25px;
    padding: 20px;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 8px;
}

#raid-result h4 {
    margin-top: 0;
    color: #166534;
}

#raid-status {
    margin-top: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

#raid-status-content {
    margin-top: 10px;
    color: #374151;
    line-height: 1.6;
}

#raid-comment-url {
    margin-top: 15px;
    padding: 15px;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 8px;
}

#raid-comment-url .twitter-url-link:hover {
    background: #0d8bd9 !important;
}

/* ============================================================================
   TELEGRAM SEITE
   ============================================================================ */

.telegram-groups-container {
    margin-top: 20px;
}

/* Statistiken Übersicht */
.telegram-groups-stats {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 120px;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-card.stat-active {
    border-color: #10b981;
    background: #f0fdf4;
}

.stat-card.stat-inactive {
    border-color: #6b7280;
    background: #f9fafb;
}

.stat-card.stat-disabled {
    border-color: #ef4444;
    background: #fef2f2;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-active .stat-value {
    color: #10b981;
}

.stat-inactive .stat-value {
    color: #6b7280;
}

.stat-disabled .stat-value {
    color: #ef4444;
}

/* Gruppen Tabelle */
.telegram-groups-table {
    margin-top: 20px;
}

.telegram-group-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    color: #6b7280;
}

.x-account-status.disabled {
    color: #ef4444;
    background: #fef2f2;
    padding: 4px 8px;
    border-radius: 4px;
}

.telegram-write-permission {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.telegram-write-permission.yes {
    color: #10b981;
    background: #f0fdf4;
}

.telegram-write-permission.no {
    color: #ef4444;
    background: #fef2f2;
}

.telegram-write-permission.unknown {
    color: #6b7280;
    background: #f9fafb;
}

.verify-step {
    margin-bottom: 20px;
}

.verify-step p {
    color: #374151;
    margin-bottom: 15px;
}

.x-comment-actions .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Test Groups Progress Modal */
.test-progress-stats {
    margin: 20px 0;
}

.test-progress-stat {
    margin-bottom: 20px;
}

.test-progress-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.test-progress-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.test-progress-bar {
    width: 100%;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.test-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transition: width 0.3s ease;
    border-radius: 12px;
}

.test-progress-counters {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.test-progress-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f9fafb;
    border-radius: 8px;
    flex: 1;
    min-width: 120px;
}

.test-progress-counter.success {
    background: #f0fdf4;
}

.test-progress-counter.failed {
    background: #fef2f2;
}

.test-progress-counter.disabled {
    background: #fef2f2;
}

.counter-icon {
    font-size: 1.25rem;
}

.counter-label {
    font-size: 0.875rem;
    color: #6b7280;
    flex: 1;
}

.counter-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.test-progress-current {
    margin-top: 15px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 6px;
    text-align: center;
}

.test-progress-current small {
    color: #6b7280;
    font-size: 0.875rem;
}

.test-groups-results {
    margin-top: 20px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.test-groups-results h4 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #1f2937;
}

.test-result-item {
    padding: 8px 12px;
    margin-bottom: 8px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 0.875rem;
    border-left: 3px solid #e5e7eb;
}

.test-result-item.disabled {
    border-left-color: #ef4444;
}

.test-result-item.enabled,
.test-result-item.ok {
    border-left-color: #10b981;
}

.test-result-more {
    padding: 8px 12px;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
}

