/* TurboUSDT - Redesigned based on logo */
/* Color Palette from Logo:
   - Primary Green: #26a65b, #2ecc71
   - Flame Orange/Yellow: #ff9500, #ffb700, #ffd700
   - Dark: #0a0a0a, #1a1a1a
   - Silver/Chrome: #c0c0c0, #e8e8e8
   - Circuit Blue: #00a8ff
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
    color: #e8e8e8;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with Turbo Energy */
.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 20px 0;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #26a65b 0%, #ffb700 50%, #ff9500 100%) 1;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 0, 0.1), transparent);
    animation: turboSweep 3s infinite;
}

@keyframes turboSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo {
    font-size: 36px;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, #26a65b 0%, #2ecc71 50%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 183, 0, 0.5);
    letter-spacing: 1px;
}

.tagline {
    color: #00a8ff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Buttons with Flame Effect */
.btn-primary {
    background: linear-gradient(135deg, #26a65b 0%, #2ecc71 50%, #ffb700 100%);
    color: #0a0a0a;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    pointer-events: none; /* Allow clicks to pass through to button */
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.6);
}

.btn-primary:disabled {
    background: #333;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #00a8ff;
    border: 2px solid #00a8ff;
    padding: 10px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #00a8ff;
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
}

/* Hero Section with Engine Power */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 183, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #26a65b 0%, #ffb700 50%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(255, 183, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: #00a8ff;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 35px 25px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #26a65b, #ffb700, #ff9500);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 183, 0, 0.4);
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #26a65b 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: #00a8ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Panels with Circuit Board Effect */
.panel {
    padding: 60px 0;
    position: relative;
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00a8ff, transparent);
}

.panel-header {
    text-align: center;
    margin-bottom: 50px;
}

.panel-header h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #26a65b 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-header p {
    color: #00a8ff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Cards with Metallic Shine */
.card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s;
    pointer-events: none; /* Allow clicks to pass through to button */
}

.card:hover::after {
    right: -150%;
}

.card:hover {
    border-color: #ffb700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 183, 0, 0.3);
}

.card h3 {
    color: #26a65b;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.big-number {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #26a65b 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
    line-height: 1.2;
}

/* Tabs with Turbo Style */
.tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    color: #e8e8e8;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(38, 166, 91, 0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    border-color: #26a65b;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #26a65b 0%, #2ecc71 100%);
    color: #0a0a0a;
    border-color: #26a65b;
    box-shadow: 0 6px 20px rgba(38, 166, 91, 0.5);
}

/* Level Cards with Flame Border */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.level-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #26a65b, #ffb700, #ff9500);
    transform: scaleX(0);
    transition: transform 0.3s;
    pointer-events: none;
}

.level-card:hover::before {
    transform: scaleX(1);
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.3);
}

.level-card.active {
    border-color: #26a65b;
    box-shadow: 0 0 20px rgba(38, 166, 91, 0.4);
}

.level-card.blocked {
    border-color: #ff4757;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
}

.level-card h4 {
    color: #ffb700;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.level-card .price {
    font-weight: 700;
    color: #26a65b;
    font-size: 20px;
}

.level-card .earnings {
    color: #00a8ff;
    font-size: 13px;
    margin-top: 8px;
}

.status-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 8px;
}

/* Input Fields with Glow */
.input-field {
    flex: 1;
    min-width: 250px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    border-radius: 10px;
    color: #e8e8e8;
    font-size: 15px;
    transition: all 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: #26a65b;
    box-shadow: 0 0 15px rgba(38, 166, 91, 0.3);
}

/* Toast with Turbo Alert */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #ffb700;
    border-radius: 12px;
    padding: 18px 24px;
    min-width: 280px;
    max-width: 420px;
    box-shadow: 0 8px 30px rgba(255, 183, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.error {
    border-color: #ff4757;
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.4);
}

.toast.success {
    border-color: #26a65b;
    box-shadow: 0 8px 30px rgba(38, 166, 91, 0.4);
}

.toast.info {
    border-color: #00a8ff;
    box-shadow: 0 8px 30px rgba(0, 168, 255, 0.4);
}

/* Matrix Tree with Circuit Lines */
.matrix-tree {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.tree-level {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tree-node {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #26a65b;
    border-radius: 10px;
    padding: 12px;
    min-width: 130px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.tree-node:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(38, 166, 91, 0.4);
}

.tree-node.empty {
    border-color: #333;
    color: #666;
}

/* Register Form with Flame Accent */
.register-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #26a65b, #ffb700, #ff9500) 1;
    border-radius: 15px;
    padding: 35px;
}

.register-form label {
    color: #ffb700;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scrollbar Turbo Style */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #26a65b 0%, #ffb700 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffb700 0%, #ff9500 100%);
}

/* Modal with Turbo Frame */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #26a65b, #ffb700, #ff9500) 1;
    border-radius: 15px;
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(255, 183, 0, 0.5);
}

.modal-header {
    padding: 25px;
    border-bottom: 2px solid #333;
}

.modal-header h2 {
    color: #ffb700;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-close {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
}

/* Responsive - Mobile Optimizations */
@media (max-width: 768px) {
    /* Header adjustments */
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 10px;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .header-actions .btn-secondary,
    .header-actions .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Hero section */
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    /* Status bar */
    .status-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .status-item {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Panels */
    .panel {
        padding: 40px 0;
    }
    
    .panel-header h2 {
        font-size: 28px;
    }
    
    .panel-header p {
        font-size: 14px;
    }
    
    /* Dashboard grid */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 18px;
    }
    
    .big-number {
        font-size: 32px;
    }
    
    .card-icon {
        font-size: 42px;
    }
    
    /* Register content */
    .register-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .register-info,
    .register-form {
        padding: 25px;
    }
    
    .register-info h3 {
        font-size: 20px;
    }
    
    .benefits-list li {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    /* Buttons */
    .button-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .button-group button {
        width: 100%;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Tabs */
    .tabs {
        flex-direction: row;
        gap: 10px;
    }
    
    .tab-btn {
        flex: 1;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .tab-icon {
        display: block;
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    /* Levels grid */
    .levels-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .level-card {
        padding: 15px;
    }
    
    .level-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .level-card .price {
        font-size: 18px;
    }
    
    .level-card .earnings {
        font-size: 12px;
    }
    
    .level-card .btn-primary {
        padding: 10px 16px;
        font-size: 14px;
        margin-top: 10px;
    }
    
    /* Modal */
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 85vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    /* Matrix tree */
    .tree-node {
        min-width: 100px;
        padding: 10px;
        font-size: 12px;
    }
    
    /* Lookup panel */
    .form-group {
        flex-direction: column;
        width: 100%;
    }
    
    .input-field {
        width: 100%;
        min-width: 100%;
    }
    
    .form-group button {
        width: 100%;
    }
    
    /* Toast */
    .toast {
        left: 10px;
        right: 10px;
        top: 10px;
        min-width: auto;
        max-width: none;
    }
    
    /* Profile info */
    .profile-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Info box */
    .info-box {
        padding: 15px;
        font-size: 14px;
    }
    
    .info-box p {
        font-size: 14px;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
    }
    
    .level-card {
        max-width: 100%;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .dashboard-grid {
        gap: 15px;
    }
    
    .big-number {
        font-size: 28px;
    }
}

/* Additional Utility Classes */
.form-group {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.button-group {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
}

.button-group button {
    flex: 1;
    min-height: 48px; /* Better touch target for mobile */
}

.help-text {
    font-size: 13px;
    color: #00a8ff;
    margin-top: 12px;
    text-align: center;
    width: 100%;
}

.warning-text {
    font-size: 12px;
    color: #ff9500;
    margin-top: 8px;
    text-align: center;
    width: 100%;
    background: rgba(255, 149, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid #ff9500;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-info p {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: #0a0a0a;
    border-radius: 6px;
    border-left: 3px solid #26a65b;
    word-break: break-word; /* Prevent overflow on mobile */
    font-size: 13px;
}

.small-text {
    font-size: 11px;
    color: #00a8ff;
    margin-top: 6px;
    opacity: 0.9;
}

.register-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.register-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 35px;
}

.register-info h3 {
    color: #ffb700;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.benefits-list li {
    padding: 14px 0;
    border-bottom: 1px solid #333;
    font-size: 16px;
    color: #e8e8e8;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #ffb700;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.price-tag {
    background: linear-gradient(135deg, #26a65b 0%, #2ecc71 100%);
    color: #0a0a0a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(38, 166, 91, 0.4);
}

.price-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-size: 36px;
    font-weight: 900;
}

.status-bar {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.status-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.status-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.status-item .label {
    color: #00a8ff;
    font-size: 14px;
    font-weight: 600;
}

.badge {
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.open {
    background: linear-gradient(135deg, #26a65b 0%, #2ecc71 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(38, 166, 91, 0.4);
}

.badge.closed {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.4);
}

.highlight-card {
    border-color: #ffb700;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2410 100%);
    box-shadow: 0 0 25px rgba(255, 183, 0, 0.3);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(255, 183, 0, 0.3));
}

.lookup-result {
    margin-top: 25px;
}

.lookup-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 25px;
}

.lookup-card h3 {
    color: #ffb700;
    margin-bottom: 20px;
    font-weight: 700;
}

.lookup-card p {
    margin: 10px 0;
    word-break: break-word; /* Prevent overflow on mobile */
}

.event-list {
    max-height: 450px;
    overflow-y: auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
}

.event-item {
    padding: 12px;
    border-bottom: 1px solid #333;
    font-size: 14px;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item .event-type {
    color: #ffb700;
    font-weight: 700;
}

.event-item .event-time {
    color: #666;
    font-size: 12px;
}

.info-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00a8ff;
    border-radius: 10px;
    padding: 18px;
    margin-top: 18px;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.2);
}

.info-box p {
    margin: 0 0 10px 0;
    color: #e8e8e8;
    line-height: 1.6;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box strong {
    color: #00a8ff;
}

.modal-body {
    padding: 25px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    width: 100%;
    min-height: 56px; /* Better touch target for mobile */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Improve touch targets for mobile */
button, .btn-primary, .btn-secondary {
    min-height: 44px; /* iOS recommended minimum */
    touch-action: manipulation; /* Disable double-tap zoom */
}

/* Prevent text selection on buttons */
button, .btn-primary, .btn-secondary, .tab-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Enhanced Dashboard Improvements */
.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    position: relative;
    overflow: visible;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Progress Bar for Levels */
.level-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.level-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #26a65b, #ffb700);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Enhanced Matrix Tree Visualization */
.matrix-tree {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
    position: relative;
}

.tree-level {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.tree-node {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #26a65b;
    border-radius: 12px;
    padding: 15px;
    min-width: 140px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 4px 15px rgba(38, 166, 91, 0.2);
}

.tree-node::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, transparent, #26a65b);
}

.tree-node:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 8px 25px rgba(38, 166, 91, 0.4);
    border-color: #ffb700;
}

.tree-node.empty {
    border-color: #333;
    color: #666;
    border-style: dashed;
    box-shadow: none;
}

.tree-node.empty::before {
    background: linear-gradient(180deg, transparent, #333);
}

.tree-node-address {
    font-size: 11px;
    color: #00a8ff;
    margin-top: 5px;
    word-break: break-all;
}

.tree-node-status {
    font-size: 10px;
    color: #26a65b;
    margin-top: 3px;
    text-transform: uppercase;
}

/* Connecting Lines for Matrix */
.tree-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.tree-connections svg {
    width: 100%;
    height: 100%;
}

.tree-connections line {
    stroke: #26a65b;
    stroke-width: 2;
    opacity: 0.5;
}

/* Enhanced Level Cards */
.level-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.level-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #26a65b, #ffb700, #ff9500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.level-card:hover::after {
    transform: scaleX(1);
}

.level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 183, 0, 0.3);
    border-color: #ffb700;
}

.level-card.active {
    border-color: #26a65b;
    box-shadow: 0 0 25px rgba(38, 166, 91, 0.4);
    background: linear-gradient(135deg, #1a2a1a 0%, #252525 100%);
}

.level-card.active::after {
    transform: scaleX(1);
}

.level-card.blocked {
    border-color: #ff4757;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
    background: linear-gradient(135deg, #2a1a1a 0%, #252525 100%);
}

.level-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.level-badge {
    background: linear-gradient(135deg, #26a65b, #2ecc71);
    color: #0a0a0a;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.level-badge.inactive {
    background: linear-gradient(135deg, #333, #444);
    color: #999;
}

.level-badge.blocked {
    background: linear-gradient(135deg, #ff4757, #ff6348);
    color: white;
}

/* Stats Animation */
.stat-value {
    animation: countUp 1s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Modal */
.modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Important Elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(38, 166, 91, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(38, 166, 91, 0);
    }
}

/* Earnings Breakdown */
.earnings-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.earnings-item {
    background: rgba(38, 166, 91, 0.1);
    border: 1px solid rgba(38, 166, 91, 0.3);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.earnings-item-value {
    font-size: 18px;
    font-weight: 700;
    color: #26a65b;
}

.earnings-item-label {
    font-size: 11px;
    color: #00a8ff;
    margin-top: 4px;
}

/* Network Visualization */
.network-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 168, 255, 0.3);
}

.network-stat {
    text-align: center;
}

.network-stat-value {
    font-size: 24px;
    font-weight: 900;
    color: #00a8ff;
}

.network-stat-label {
    font-size: 11px;
    color: #e8e8e8;
    margin-top: 4px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .tree-node {
        min-width: 110px;
        padding: 12px;
        font-size: 12px;
    }
    
    .level-card {
        padding: 15px;
    }
    
    .earnings-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Enhanced Card Styling for Dashboard */
.highlight-card {
    border-color: rgba(255, 183, 0, 0.4);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2410 5%, #252525 100%);
    box-shadow: 0 4px 20px rgba(255, 183, 0, 0.15);
}

.highlight-card:hover {
    border-color: #ffb700;
    box-shadow: 0 8px 35px rgba(255, 183, 0, 0.35);
}

.highlight-card h3 {
    color: #26a65b;
}

/* Profile Info Styling */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-info p {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid #26a65b;
    word-break: break-word;
    font-size: 13px;
}

.profile-info strong {
    color: #e8e8e8;
    font-weight: 600;
}

.profile-info span {
    color: #00a8ff;
    font-weight: 500;
}

/* Button Styling in Cards */
.card .btn-primary {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    font-size: 14px;
}

.card .btn-large {
    padding: 16px;
    font-size: 15px;
}

/* Input Field in Cards */
.card .input-field {
    width: 100%;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(38, 166, 91, 0.3);
}

.card .input-field:focus {
    border-color: #26a65b;
    background: rgba(0, 0, 0, 0.4);
}

/* Dashboard Grid Improvements */
.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .dashboard-grid {
        gap: 10px;
    }
    
    .card {
        padding: 15px;
    }
    
    .big-number {
        font-size: 24px;
    }
    
    .card-icon {
        font-size: 36px;
    }
}

/* Disclaimer Box - Risk Disclosure */
.disclaimer-box {
    background: rgba(255, 149, 0, 0.08);
    border: 1px solid rgba(255, 149, 0, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.disclaimer-box p {
    font-size: 13px;
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 12px;
}

.disclaimer-box p:last-of-type {
    margin-bottom: 14px;
}

.disclaimer-box strong {
    color: #ff9500;
}

.disclaimer-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #e8e8e8;
    cursor: pointer;
    line-height: 1.5;
}

.disclaimer-check input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #26a65b;
}

.btn-enter-platform:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Site Footer - Risk Disclaimer */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 149, 0, 0.3);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #999;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================================
   COMMAND CENTER — Full Visual Overhaul
   ============================================================ */

/* ---- Global body upgrade ---- */
body {
    background: #050508 !important;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(38,166,91,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255,183,0,0.06) 0%, transparent 50%) !important;
}

/* ---- Header ---- */
.header {
    background: rgba(5,5,8,0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(38,166,91,0.2) !important;
    box-shadow: 0 1px 0 rgba(38,166,91,0.1), 0 4px 30px rgba(0,0,0,0.6) !important;
    padding: 14px 0 !important;
}

.logo {
    font-size: 28px !important;
    letter-spacing: 2px !important;
    background: linear-gradient(90deg, #2ecc71 0%, #ffb700 60%, #ff6b00 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
}

.tagline {
    font-size: 10px !important;
    letter-spacing: 4px !important;
    color: rgba(38,166,91,0.5) !important;
}

/* ---- Hero ---- */
.hero-section {
    padding: 50px 0 40px !important;
    background: transparent !important;
}

.hero-section::before { display: none !important; }

.hero-title {
    font-size: 52px !important;
    letter-spacing: 6px !important;
    background: linear-gradient(90deg, #fff 0%, #2ecc71 40%, #ffb700 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    margin-bottom: 12px !important;
}

.hero-subtitle {
    font-size: 11px !important;
    letter-spacing: 5px !important;
    color: rgba(255,255,255,0.25) !important;
    margin-bottom: 30px !important;
}

.hero-stats { max-width: 320px !important; }

.stat-card {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(38,166,91,0.25) !important;
    border-radius: 12px !important;
    padding: 20px 28px !important;
    box-shadow: 0 0 40px rgba(38,166,91,0.1), inset 0 1px 0 rgba(255,255,255,0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.stat-label {
    font-size: 9px !important;
    letter-spacing: 3px !important;
    color: rgba(38,166,91,0.6) !important;
    order: -1 !important;
    margin-bottom: 0 !important;
}

.stat-value {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: #2ecc71 !important;
    background: none !important;
    -webkit-text-fill-color: #2ecc71 !important;
    text-shadow: 0 0 20px rgba(46,204,113,0.4) !important;
}

/* ---- Status bar ---- */
.status-bar {
    background: rgba(0,0,0,0.4) !important;
    border-top: 1px solid rgba(255,255,255,0.04) !important;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    padding: 10px 0 !important;
}

.status-item .label {
    font-size: 9px !important;
    letter-spacing: 3px !important;
    color: rgba(255,255,255,0.2) !important;
}

/* ---- Panel headers ---- */
.panel-header h2 {
    font-size: 20px !important;
    letter-spacing: 4px !important;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.5) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.panel-header p {
    font-size: 10px !important;
    letter-spacing: 3px !important;
    color: rgba(255,255,255,0.2) !important;
}

/* ---- METRICS GRID ---- */
.dash-metrics {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.metric-block {
    position: relative;
    border-radius: 14px;
    padding: 20px 18px 18px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
}

.metric-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    pointer-events: none;
}

.metric-block::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    border-radius: 100%;
    pointer-events: none;
}

.metric-block:hover { transform: translateY(-4px) scale(1.01); }

.metric-gold   { background: linear-gradient(145deg, #1a1200 0%, #0d0d0d 100%); box-shadow: 0 4px 30px rgba(255,183,0,0.12), inset 0 0 60px rgba(255,183,0,0.04); }
.metric-gold::after   { background: linear-gradient(90deg, transparent, #ffb700, transparent); }
.metric-gold:hover    { box-shadow: 0 12px 40px rgba(255,183,0,0.25), inset 0 0 60px rgba(255,183,0,0.06); }

.metric-green  { background: linear-gradient(145deg, #001a0d 0%, #0d0d0d 100%); box-shadow: 0 4px 30px rgba(38,166,91,0.12), inset 0 0 60px rgba(38,166,91,0.04); }
.metric-green::after  { background: linear-gradient(90deg, transparent, #2ecc71, transparent); }
.metric-green:hover   { box-shadow: 0 12px 40px rgba(38,166,91,0.25), inset 0 0 60px rgba(38,166,91,0.06); }

.metric-blue   { background: linear-gradient(145deg, #00101a 0%, #0d0d0d 100%); box-shadow: 0 4px 30px rgba(0,168,255,0.12), inset 0 0 60px rgba(0,168,255,0.04); }
.metric-blue::after   { background: linear-gradient(90deg, transparent, #00a8ff, transparent); }
.metric-blue:hover    { box-shadow: 0 12px 40px rgba(0,168,255,0.25), inset 0 0 60px rgba(0,168,255,0.06); }

.metric-orange { background: linear-gradient(145deg, #1a0800 0%, #0d0d0d 100%); box-shadow: 0 4px 30px rgba(255,107,0,0.12), inset 0 0 60px rgba(255,107,0,0.04); }
.metric-orange::after { background: linear-gradient(90deg, transparent, #ff6b00, transparent); }
.metric-orange:hover  { box-shadow: 0 12px 40px rgba(255,107,0,0.25), inset 0 0 60px rgba(255,107,0,0.06); }

.metric-purple { background: linear-gradient(145deg, #0e0018 0%, #0d0d0d 100%); box-shadow: 0 4px 30px rgba(168,85,247,0.12), inset 0 0 60px rgba(168,85,247,0.04); }
.metric-purple::after { background: linear-gradient(90deg, transparent, #a855f7, transparent); }
.metric-purple:hover  { box-shadow: 0 12px 40px rgba(168,85,247,0.25), inset 0 0 60px rgba(168,85,247,0.06); }

.metric-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.4;
    color: #fff;
}

.metric-value {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
}

.metric-gold   .metric-value { color: #ffb700; text-shadow: 0 0 20px rgba(255,183,0,0.5); }
.metric-green  .metric-value { color: #2ecc71; text-shadow: 0 0 20px rgba(46,204,113,0.5); }
.metric-blue   .metric-value { color: #00a8ff; text-shadow: 0 0 20px rgba(0,168,255,0.5); }
.metric-orange .metric-value { color: #ff6b00; text-shadow: 0 0 20px rgba(255,107,0,0.5); }
.metric-purple .metric-value { color: #a855f7; text-shadow: 0 0 20px rgba(168,85,247,0.5); }

.metric-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.btn-claim {
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(135deg, #26a65b 0%, #2ecc71 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(38,166,91,0.3);
}

.btn-claim:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #ffb700 100%);
    box-shadow: 0 6px 24px rgba(46,204,113,0.5);
    transform: translateY(-1px);
}

.dash-info-row {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 10px;
}

.info-block {
    position: relative;
    border-radius: 14px;
    padding: 22px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(38,166,91,0.4), transparent);
    pointer-events: none;
}

.info-block-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.info-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
}

.info-line:last-child { border-bottom: none; }

.info-key {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.info-val {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 14px;
}

.info-val.mono {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #00a8ff;
    text-shadow: 0 0 10px rgba(0,168,255,0.3);
}

.referral-block { gap: 0; }

.ref-input {
    font-family: 'Courier New', monospace !important;
    font-size: 12px !important;
    color: #2ecc71 !important;
    background: rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(38,166,91,0.2) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(46,204,113,0.3);
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(38,166,91,0.4);
    color: #2ecc71;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy:hover {
    background: rgba(38,166,91,0.15);
    border-color: #2ecc71;
    box-shadow: 0 0 30px rgba(38,166,91,0.2);
    color: #fff;
}

/* Register panel */
.register-info {
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 14px !important;
    position: relative;
    overflow: hidden;
}

.register-info::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,183,0,0.5), transparent);
    pointer-events: none;
}

.register-info h3 {
    font-size: 10px !important;
    letter-spacing: 3px !important;
    color: rgba(255,255,255,0.25) !important;
    margin-bottom: 20px !important;
}

.benefits-list li {
    font-size: 14px !important;
    color: rgba(255,255,255,0.65) !important;
    border-bottom-color: rgba(255,255,255,0.05) !important;
}

.benefits-list li::before {
    content: '▸' !important;
    color: #2ecc71 !important;
}

.price-tag {
    background: linear-gradient(135deg, rgba(38,166,91,0.15) 0%, rgba(255,183,0,0.1) 100%) !important;
    border: 1px solid rgba(38,166,91,0.3) !important;
    box-shadow: 0 0 30px rgba(38,166,91,0.1) !important;
}

.register-form {
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 14px !important;
    position: relative;
    overflow: hidden;
}

.register-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,168,255,0.5), transparent);
    pointer-events: none;
}

.register-form label {
    font-size: 9px !important;
    letter-spacing: 3px !important;
    color: rgba(255,255,255,0.3) !important;
}

/* Level cards */
.level-card {
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 12px !important;
    transition: all 0.25s !important;
}

.level-card:hover {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,183,0,0.3) !important;
    box-shadow: 0 8px 30px rgba(255,183,0,0.1) !important;
    transform: translateY(-4px) !important;
}

.level-card.active {
    background: rgba(38,166,91,0.06) !important;
    border-color: rgba(38,166,91,0.35) !important;
    box-shadow: 0 0 30px rgba(38,166,91,0.12) !important;
}

.level-card.blocked {
    background: rgba(255,71,87,0.05) !important;
    border-color: rgba(255,71,87,0.25) !important;
}

.level-card h4 {
    color: rgba(255,255,255,0.4) !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    margin-bottom: 10px !important;
}

.level-card .price {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #fff !important;
    text-shadow: 0 0 20px rgba(255,255,255,0.2) !important;
}

.level-card.active .price {
    color: #2ecc71 !important;
    text-shadow: 0 0 20px rgba(46,204,113,0.4) !important;
}

.level-card .earnings {
    color: rgba(255,255,255,0.25) !important;
    font-size: 11px !important;
}

/* Tabs */
.tab-btn {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.4) !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    transition: all 0.2s !important;
}

.tab-btn:hover {
    border-color: rgba(38,166,91,0.3) !important;
    color: rgba(255,255,255,0.7) !important;
    background: rgba(38,166,91,0.05) !important;
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(38,166,91,0.2) 0%, rgba(46,204,113,0.1) 100%) !important;
    border-color: rgba(38,166,91,0.5) !important;
    color: #2ecc71 !important;
    box-shadow: 0 0 20px rgba(38,166,91,0.15) !important;
}

/* Modal */
.modal-content {
    background: #0a0a0f !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 20px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03) !important;
}

.modal-header { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }

.modal-header h2 {
    font-size: 13px !important;
    letter-spacing: 4px !important;
    color: rgba(255,255,255,0.6) !important;
    background: none !important;
    -webkit-text-fill-color: rgba(255,255,255,0.6) !important;
}

/* Lookup + event feed */
#lookupPanel h2, #eventFeed h2 {
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    background: none;
    -webkit-text-fill-color: rgba(255,255,255,0.4);
}

.event-list {
    background: rgba(0,0,0,0.3) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 12px !important;
}

.event-item { border-bottom-color: rgba(255,255,255,0.04) !important; }

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #26a65b 0%, #2ecc71 100%) !important;
    box-shadow: 0 4px 20px rgba(38,166,91,0.3) !important;
    border-radius: 10px !important;
    letter-spacing: 1.5px !important;
}

.btn-primary:hover { box-shadow: 0 6px 30px rgba(46,204,113,0.5) !important; }

.btn-secondary {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(0,168,255,0.3) !important;
    border-radius: 10px !important;
    color: rgba(0,168,255,0.8) !important;
}

.btn-secondary:hover {
    background: rgba(0,168,255,0.1) !important;
    border-color: #00a8ff !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(0,168,255,0.2) !important;
}

/* Inputs */
.input-field {
    background: rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 10px !important;
    color: rgba(255,255,255,0.85) !important;
}

.input-field:focus {
    border-color: rgba(38,166,91,0.5) !important;
    box-shadow: 0 0 0 3px rgba(38,166,91,0.08) !important;
}

/* Toast */
.toast {
    background: rgba(10,10,15,0.95) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 12px !important;
}

/* Responsive */
@media (max-width: 1100px) {
    .dash-metrics { grid-template-columns: repeat(3, 1fr); }
    .dash-info-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .dash-metrics { grid-template-columns: repeat(2, 1fr); }
    .metric-value { font-size: 20px; }
    .hero-title { font-size: 32px !important; letter-spacing: 3px !important; }
}

@media (max-width: 480px) {
    .dash-metrics { grid-template-columns: 1fr 1fr; }
    .metric-value { font-size: 18px; }
}

/* Header logo image */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}
