/* Dashboard Specific Styles */
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --background: #0a0a0a;
    --surface: #111111;
    --card: #1a1a1a;
    --text: #ffffff;
    --text-secondary: #a3a3a3;
    --border: #2a2a2a;
    --sidebar-width: 280px;
    --header-height: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu ul {
    list-style: none;
    margin-bottom: 1rem;
}

.mobile-nav-menu li {
    width: 100%;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-nav-actions {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-outline {
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.btn-primary.large, .btn-outline.large {
    padding: 14px 24px;
    font-size: 1rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== DASHBOARD LAYOUT ===== */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: calc(var(--header-height) + 2rem);
}

/* ===== SIDEBAR ELIMINAT ===== */
.sidebar {
    display: none;
}

/* ===== MAIN CONTENT ===== */
.dashboard-main {
    width: 100%;
    background: var(--background);
    min-height: calc(100vh - var(--header-height));
    max-width: 100%;
    overflow-x: hidden;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Corectare pentru user-info */
.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.user-welcome {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
}

.username {
    color: var(--primary);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary);
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: rgba(16, 185, 129, 0.2);
}

.user-details {
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 100%;
    margin-top: 0.5rem;
}

.join-date, .upliner {
    color: var(--primary);
    font-weight: 500;
}

/* ===== QUICK STATS ===== */
.quick-stats {
    margin-bottom: 2rem;
}

.quick-stats h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-icon .silver {
    color: #9ca3af;
}

.stat-icon .gold {
    color: #f59e0b;
}

.stat-icon .diamond {
    color: #8b5cf6;
}

.stat-content h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-value.gold {
    color: #f59e0b;
}

.stat-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== REFERRAL LINK ===== */
.referral-section {
    margin-bottom: 2rem;
}

.referral-link-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

.referral-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.referral-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.referral-header h4 {
    font-size: 1.1rem;
    color: var(--text);
}

.referral-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.referral-link {
    flex: 1;
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    word-break: break-all;
    min-width: 200px;
}

/* ===== SECTIONS GENERALE ===== */
.transactions-section, .referrals-section, .platform-stats {
    margin-bottom: 2rem;
}

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

.section-header h1, .section-header h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0;
}

/* Controls pentru tabele */
.table-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.sort-controls, .search-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-controls label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.sort-controls select, .search-controls input {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
}

.search-controls input {
    min-width: 200px;
}

.search-controls input::placeholder {
    color: var(--text-secondary);
}

/* Tabele */
.table-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.data-table th {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
}

.data-table tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

/* Loading spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.loading-spinner .fa-spinner {
    font-size: 1.5rem;
}

/* Paginare */
.table-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.page-btn {
    padding: 8px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    min-width: 44px;
    min-height: 44px;
}

.page-btn:hover, .page-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===== PLATFORM STATISTICS ===== */
.platform-stats {
    margin-bottom: 2rem;
}

.platform-stats h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.platform-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.platform-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.platform-content h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.platform-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

/* ===== STILURI SPECIFICE PENTRU REFERRALS ===== */
.user-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
}

.user-info-cell {
    display: flex;
    flex-direction: column;
	font-size: 1.4rem;
}

.user-address {
    font-size: 1rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.status {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary);
}

.status.inactive {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.plan-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-badge.silver {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.plan-badge.gold {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.plan-badge.diamond {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.plan-badge.inactive {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 0 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    width: 100%;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    justify-content: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-container {
        padding: 1rem;
        padding-top: calc(var(--header-height) + 1rem);
    }
    
    .user-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .user-details {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-content {
        flex-direction: column;
    }
    
    .table-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-nav-menu.active {
        display: block;
    }
}

/* Enhanced Mobile Menu Styles */
.mobile-menu-toggle.active .fa-bars:before {
    content: "\f00d";
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-nav-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }

.mobile-nav-actions {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.4s;
}

.mobile-nav-menu.active .mobile-nav-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Enhanced button styles for mobile */
@media (max-width: 768px) {
    .btn-primary, .btn-outline {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        width: 100%;
    }
}

/* Adaugă acest CSS pentru a corecta poziția paginării */
.referrals-section {
    display: block !important;
}

.table-pagination {
    display: flex !important;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    order: unset !important;
    position: static !important;
    border: none !important;
}

/* Stiluri pentru sidebar ascuns */
.sidebar {
    display: none;
}

/* ===== DIMENSIUNI FONTURI ===== */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== CLASE PENTRU CULORI VERZI (aplica manual) ===== */
.text-green {
    color: var(--primary) !important;
}

.text-green-light {
    color: var(--primary-light) !important;
}

.text-accent {
    color: var(--primary) !important;
    font-weight: 600;
}

/* Exemple de utilizare - aplică aceste clase în HTML: */
/* <span class="text-green">Acest text va fi verde</span> */
/* <div class="text-green-light">Acest text va fi verde deschis</div> */
/* <p class="text-accent">Acest text va fi verde și bold</p> */

/* Modal cu :target */
/* Modal cu :target */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 10px; /* Redus pentru mobile */
}

.info-modal:target {
    display: flex;
}

.modal-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.info-text {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
}

.info-text:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

/* Ascunde info-text pe mobile */
@media (max-width: 768px) {
    .info-text {
        display: none;
    }
}
/* ========== PLATFORM ACTIVITY ========== */
/* ========== PLATFORM ACTIVITY ========== */
.recent-activity {
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    transition: all 0.3s ease;
}

.activity-item:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.activity-icon {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-text {
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.activity-username {
    color: var(--primary);
    font-weight: 600;
}

.activity-amount {
    color: var(--primary);
    font-weight: 700;
}

.activity-referral {
    color: var(--primary-light);
    font-weight: 600;
}

.activity-plan {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.activity-plan.silver {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.activity-plan.gold {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.activity-plan.diamond {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.activity-time {
    color: var(--text-secondary);
}

.tx-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.tx-link:hover {
    color: var(--primary-light);
}

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

.mt-4 {
    margin-top: 1.5rem;
}

#seeMoreBtn {
    padding: 12px 40px;
    background: transparent;
    color: #10B981;
    border: 2px solid #10B981;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 200px;
    margin: 0 auto;
}

#seeMoreBtn:hover {
    background: #10B981;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

#seeMoreBtn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .activity-list {
        gap: 0.4rem;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0.75rem;
    }
    
    .activity-icon {
        margin: 0 auto;
        width: 32px;
        height: 32px;
    }
    
    .activity-text {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }
    
    .activity-meta {
        font-size: 0.75rem;
        justify-content: center;
    }
    
    #seeMoreBtn {
        padding: 10px 30px;
        font-size: 13px;
        max-width: 180px;
    }
}

/* Pentru ecrane foarte mari */
@media (min-width: 1200px) {
    .activity-item {
        max-width: 100%;
    }
}


/* Contract - Improved */
.contract {
    padding: 80px 0;
    background: var(--surface);
}

.contract-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contract-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contract-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.contract-header h3 {
    font-size: 1.6rem;
    color: var(--text);
    font-weight: 700;
}

.contract-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contract-address code {
    background: rgba(16, 185, 129, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
    word-break: break-all;
    max-width: 100%;
}

.contract-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contract-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.contract-feature i {
    color: var(--primary);
    font-size: 1rem;
}

.contract-actions {
    display: flex;
    justify-content: center;
}

/* Better Mobile Responsive for Contract */
@media (max-width: 768px) {
    .contract-card {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .contract-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contract-header h3 {
        font-size: 1.4rem;
    }
    
    .contract-address {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contract-address code {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .contract-features {
        gap: 1.5rem;
    }
    
    .contract-feature {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contract-card {
        padding: 1.5rem;
    }
    
    .contract-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contract-description {
        font-size: 0.95rem;
    }
}

/* Responsive for contract section */
@media (max-width: 768px) {
    .contract-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contract-address {
        flex-direction: column;
    }
    
    .contract-address code {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contract-card {
        padding: 2rem 1.5rem;
    }
    
    .contract-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* FAQ */
.faq {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: none !important;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.status.active {
    color: #10B981;
    font-weight: 600;
}

.status.inactive {
    color: #EF4444;
    font-weight: 600;
}