/* ============================================
   SEED INVESTMENT DASHBOARD - STYLES
   ============================================ */

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    background: #101435;
    font-family: "Manrope", sans-serif;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.bg-animation {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #ec4899;
    bottom: -100px;
    right: -100px;
    animation: float-reverse 25s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-slow 4s ease-in-out infinite;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 30px) rotate(-120deg); }
    66% { transform: translate(20px, -20px) rotate(-240deg); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   CONNECT SCREEN
   ============================================ */

.connect-screen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

.connect-content {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 0.8s ease;
}

.icon-box {
    display: inline-block;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: bounce-slow 3s ease-in-out infinite;
    margin-bottom: 32px;
}

.connect-title {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.connect-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.connect-btn {
    background: #764df0;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connect-btn span {
    position: relative;
    z-index: 1;
}

.connect-btn:hover span {
    color: white;
}

.stats-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    color: white;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

/* ============================================
   MAIN DASHBOARD
   ============================================ */

.dashboard {
    display: none;
    min-height: 100vh;
    padding: 32px 20px;
    position: relative;
    z-index: 1;
}

.dashboard.active {
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left h1 {
    font-size: 48px;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    background: linear-gradient(0deg, #888888 0%, #ffffff 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-icon {
    padding: 12px;
    background: linear-gradient(135deg, #ca8ce2, #764df0);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.address-display {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.view-toggle {
    display: flex;
    gap: 12px;
}

.toggle-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: rgb(147 87 189);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.toggle-btn.admin.active {
    background: linear-gradient(135deg, #f97316, #ec4899);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

/* ============================================
   CARDS & STATS
   ============================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.stat-card.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
}

.stat-card.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
}

.stat-card.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
}

.stat-card.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-icon {
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-card:hover .card-icon {
    transform: rotate(12deg);
}

.tier-badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.card-value {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.card-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ============================================
   PROGRESS SECTION
   ============================================ */

.progress-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.progress-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-percentage {
    font-size: 38px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar-container {
    position: relative;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

.progress-bar-text {
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.info-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: background 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 0, 0, 0.3);
}

.info-label {
    font-size: 14px;
    color: #ce7fd5;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.info-value {
    font-size: 16px;
    color: white;
    font-weight: 700;
}

/* ============================================
   ROI SECTION
   ============================================ */

.roi-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.roi-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.roi-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.roi-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.roi-item.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    border: 1px solid rgba(99, 102, 241, 0.5);
}

.roi-item-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.roi-item-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.roi-item.highlight .roi-item-value {
    font-size: 22px;
}

/* ============================================
   CIRCULAR PROGRESS
   ============================================ */

.circular-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 256px;
    height: 100%;
    margin: 0 auto;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 20;
}

.progress-ring-fill {
    fill: none;
    stroke: url(#progress-gradient);
    stroke-width: 20;
    stroke-linecap: round;
    transition: stroke-dasharray 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-text-value {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.progress-text-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TABLE
   ============================================ */

.table-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.table-title {
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    text-align: left;
    padding: 16px;
    color: #3b82f6;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

td {
    padding: 20px 16px;
    color: white;
}

.address-code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
}

.tier-badge-table {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.tier-11k {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.tier-25k {
    background: rgba(139, 92, 246, 0.2);
    color: #a855f7;
}

.progress-bar-table {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-percent {
    font-size: 14px;
    font-weight: 700;
    min-width: 50px;
    text-align: right;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.status-dot-table {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-active {
    color: #10b981;
}

.status-active .status-dot-table {
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   ACTIVITY FEED
   ============================================ */

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.activity-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.activity-icon {
    padding: 12px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.activity-item:hover .activity-icon {
    transform: scale(1.1);
}

.activity-icon.reward {
    background: rgba(16, 185, 129, 0.2);
}

.activity-icon.investment {
    background: rgba(59, 130, 246, 0.2);
}

.activity-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-address {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #3b82f6;
}

.activity-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.activity-right {
    text-align: right;
}

.activity-amount {
    font-size: 20px;
    font-weight: 900;
}

.activity-amount.reward {
    color: #10b981;
}

.activity-amount.investment {
    color: #3b82f6;
}

.activity-type {
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
}

.activity-type.reward {
    color: #10b981;
}

.activity-type.investment {
    color: #3b82f6;
}

/* ============================================
   VIEW SWITCHING
   ============================================ */

.view {
    display: none;
}

.view.active {
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   INVESTMENT FORM
   ============================================ */

.investment-form-section {
    margin-bottom: 32px;
}

.form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tier-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.tier-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.tier-card.selected {
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.tier-card.premium {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(139, 92, 246, 0.3);
}

.tier-card.premium:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.tier-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.tier-badge-large {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.tier-badge-large.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.tier-badge-large.purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.tier-popular {
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
}

.tier-price {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin: 16px 0;
}

.tier-returns {
    font-size: 16px;
    color: #10b981;
    font-weight: 700;
    margin-bottom: 24px;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.tier-seats {
    text-align: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
}

.investment-summary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 20px;
    padding: 32px;
    margin-top: 24px;
}

.investment-summary h3 {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
}

.summary-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.summary-item.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    border: 1px solid rgba(99, 102, 241, 0.5);
}

.summary-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.summary-value {
    font-size: 18px;
    font-weight: 900;
    color: white;
}

.invest-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #9357bd, #764df0);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.invest-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.disclaimer {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* ============================================
   REPORTS & CHARTS
   ============================================ */

.reports-section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.report-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.report-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-card h3 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-weight: 600;
}

.report-value {
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.report-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.chart-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-header h3 {
    font-size: 24px;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.chart-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

/* ============================================
   ADMIN CONTROLS
   ============================================ */

.quick-actions {
    margin-bottom: 32px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.action-btn {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.seats-section {
    margin-bottom: 32px;
}

.seat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.admin-controls {
    margin-bottom: 32px;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.control-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
}

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

.control-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    margin-bottom: 12px;
}

.control-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.investment-select {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.investment-select:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
}

.investment-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.investment-select option {
    background: #1a1a2e;
    color: white;
    padding: 12px;
}

.investment-form-container {
    margin-top: 24px;
}

/* ============================================
   INVESTMENT ACTION CARD
   ============================================ */

.investment-action-card {
    padding: 32px !important;
}

.investment-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-icon-wrapper {
    padding: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.investment-header-text {
    flex: 1;
}

.investment-card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-card-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 500;
}

.investment-select-wrapper {
    margin-bottom: 20px;
}

.investment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investment-select {
    width: 100%;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.investment-select:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.investment-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 6px 20px rgba(59, 130, 246, 0.3);
    background-color: rgba(0, 0, 0, 0.4);
}

.investment-select option {
    background: #1a1a2e;
    color: white;
    padding: 14px;
    font-weight: 600;
}

.investment-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.investment-note i {
    color: #3b82f6;
    flex-shrink: 0;
}

.control-textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    margin-bottom: 12px;
    resize: vertical;
}

.control-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.control-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.control-btn.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.control-btn.danger:hover {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.control-warning {
    margin-top: 12px;
    font-size: 12px;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 6px;
}

.control-note {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.system-status {
    margin-bottom: 32px;
}

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

.status-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.status-dot-large {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b7280;
}

.status-dot-large.active {
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

.status-details {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.contract-info {
    margin-bottom: 32px;
}

.info-grid-expanded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.info-item-expanded {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.admin-badge {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
}

/* ============================================
   ALERTS
   ============================================ */

.alert-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.alert-box.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-color: rgba(16, 185, 129, 0.5);
}

.alert-box.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    border-color: rgba(245, 158, 11, 0.5);
}

/* ============================================
   LOADING OVERLAY
   ============================================ */

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-spinner {
    width: 64px;
    height: 64px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    margin-top: 24px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.card-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .connect-title {
        font-size: 48px;
    }

    .header-left h1 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .roi-section {
        grid-template-columns: 1fr;
    }

    .tier-selection {
        grid-template-columns: 1fr;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .controls-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 12px;
    }

    th, td {
        padding: 12px 8px;
    }

    .progress-percentage {
        font-size: 32px;
    }

    .progress-title {
        font-size: 24px;
    }

    .tier-price {
        font-size: 36px;
    }
}
