:root {
    --bg-color: #0d1117;
    --card-bg: #161b22;
    --primary-green: #00ff00;
    --primary-green-glow: rgba(0, 255, 0, 0.3);
    --primary-green-hover: #00cc00;
    --primary-gold: #ffd700;
    --text-main: #ffffff;
    --text-muted: #8b949e;
    --border-color: #30363d;
    --danger: #ff4444;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background-image: radial-gradient(circle at top, rgba(0,255,0,0.05) 0%, transparent 40%);
}

.app-container {
    width: 100%;
    max-width: 800px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 0 15px var(--primary-green-glow);
    background-color: #000;
}

h1 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.title-area {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

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

.status-pre {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.status-live {
    background: rgba(0, 255, 0, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.1);
}

.wallet {
    text-align: right;
}

.wallet-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wallet-balance {
    font-size: 1.25rem;
    font-weight: 800;
}

.wallet-address {
    font-size: 0.75rem;
    color: var(--primary-green);
    background: rgba(0, 255, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.2rem;
}

.currency {
    color: var(--primary-green);
    font-size: 1rem;
}

.btn-connect {
    background: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-connect:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

/* HERO SECTION */
.hero-section {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle, rgba(0,255,0,0.05) 0%, transparent 60%);
    border-radius: 12px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.currency-small {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-left: 4px;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.highlight {
    border-color: rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.02);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.05);
}

.stat-card.highlight-ref {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.02);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

.stat-card h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    word-break: break-all;
}

.text-green {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.text-gold {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.btn {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary-green);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-green-hover);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

.btn-stake {
    background: linear-gradient(135deg, #00ff00, #00aa00);
    color: #000;
    font-size: 1.1rem;
    padding: 1rem;
    margin-top: 1rem;
}

.btn-stake:hover {
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
}

.fee-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.staking-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.staking-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.input-group {
    display: flex;
    background: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    color: var(--text-main);
    font-size: 1.1rem;
    outline: none;
}

.btn-max {
    width: auto;
    background: transparent;
    color: var(--primary-green);
    padding: 0 1.5rem;
    border-radius: 0;
    border-left: 1px solid var(--border-color);
    cursor: pointer;
}

.btn-max:hover {
    background: rgba(0, 255, 0, 0.1);
}

.staking-rules {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}
.dot.green { background: var(--primary-green); }
.dot.gold { background: var(--primary-gold); }
.dot.red { background: var(--danger); }

/* MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.1);
}

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

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-close:hover {
    color: #fff;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.wallet-option img {
    width: 32px;
    height: 32px;
}

.wallet-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    body {
        padding: 0.5rem;
    }

    .app-container {
        padding: 1.2rem;
    }

    header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .wallet {
        text-align: center;
        width: 100%;
    }
    
    .btn-connect {
        width: 100%;
    }

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

    .input-group {
        flex-direction: row;
        background: #0d1117;
        border: 1px solid var(--border-color);
    }
    
    .input-group input {
        width: 100%;
    }

    .btn-max {
        width: auto;
    }
}

/* --- Wallet Info Desktop Styles --- */
.wallet-info {
    align-items: center;
    gap: 1rem;
}

.wallet-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btn-disconnect {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    border-radius: 8px;
    padding: 0.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-disconnect:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: scale(1.05);
}

/* --- New Premium V2 Styles --- */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-compound {
    flex: 1;
    background: linear-gradient(135deg, #00ff00, #008800);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-compound:hover {
    background: linear-gradient(135deg, #00cc00, #00ff00);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.7);
    transform: translateY(-2px) scale(1.02);
}

.team-stats-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.team-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.team-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.team-stat-label {
    font-size: 0.9rem;
    color: #bbb;
    font-weight: 500;
    text-align: left;
}

.team-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
}

.team-stat-value small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 2px;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
    
    header {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .title-area {
        align-items: center;
    }
    
    .wallet-info {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 100%;
        background: rgba(0, 255, 0, 0.03);
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(0, 255, 0, 0.1);
    }
    
    .wallet-details {
        align-items: center;
    }
    
    .wallet-address {
        margin-top: 0.5rem;
    }
    
    .btn-disconnect {
        width: 100%;
        margin-top: 0.8rem;
    }
    
    .apy-banner {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0.8rem;
        margin-top: 1rem;
    }
    
    .apy-item {
        flex: 1 1 40%;
        gap: 0.2rem;
    }
    
    .apy-item.highlight-box {
        padding: 0.5rem;
    }
    
    .apy-value {
        font-size: 1.2rem;
    }
    
    .apy-label {
        font-size: 0.65rem;
    }
}

/* --- APY Banner Styles --- */
.apy-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(0, 255, 0, 0.15);
}

.apy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.apy-item.highlight-box {
    background: rgba(0, 255, 0, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
}

.apy-value {
    font-size: 1.8rem;
    font-weight: 800;
}

.apy-label {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Menu */
.app-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-main);
}

.nav-link.active {
    background: var(--primary-green-glow);
    color: var(--primary-green);
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.1);
}

/* Admin Dashboard Inputs */
.input-card {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.stake-input {
    width: 100%;
    box-sizing: border-box;
    background: #0d1117;
    border: 1px solid var(--border-color);
    padding: 1rem;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.stake-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}
/* --- NETWORK PAGE STYLES --- */
.network-main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 4rem;
}

.network-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-title {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(0,255,0,0.3);
    box-shadow: 0 0 15px rgba(0,255,0,0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgba(0,255,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    border: 1px solid rgba(0,255,0,0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Roadmap */
.roadmap-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.roadmap-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2.5rem;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-node {
    position: absolute;
    left: 14px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 3px solid var(--card-bg);
}

.roadmap-node.glow {
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
}

.roadmap-node.gold {
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold);
}

.roadmap-content {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    border-color: rgba(255,255,255,0.2);
}

.roadmap-content.highlight {
    border-color: rgba(0,255,0,0.3);
    background: rgba(0,255,0,0.02);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.phase-header h3 {
    font-size: 1.2rem;
    color: #fff;
}

.phase-status {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
}

.status-completed { background: rgba(255,255,255,0.1); color: #fff; }
.status-live { background: rgba(0,255,0,0.2); color: #00ff00; }
.status-progress { background: rgba(255,215,0,0.2); color: var(--primary-gold); }
.status-planned { background: rgba(100,149,237,0.2); color: #6495ed; }
.status-future { background: rgba(138,43,226,0.2); color: #c8a2c8; }

.phase-list {
    list-style: none;
}

.phase-list li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
}

.phase-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.phase-goal, .phase-subtext, .phase-footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

/* Community Links */
.community-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.community-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Network Page */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .community-links {
        flex-direction: column;
    }
    
    .network-section {
        padding: 1.5rem;
    }
}
/* --- OVERRIDES & FIXES --- */

/* Single Ambassador Card */
.single-benefit-card {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(0, 255, 0, 0.05), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.05);
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.premium-list li {
    font-size: 1.15rem;
    font-weight: 600;
    color: #00ff00; /* XCN Logo color */
    position: relative;
    padding-left: 2rem;
    line-height: 1.4;
}

.premium-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Mobile Fixes overriding existing media queries */
@media (max-width: 768px) {
    /* Ambassador Card Mobile */
    .single-benefit-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .premium-list li {
        font-size: 1.05rem;
        padding-left: 1.5rem;
    }
    
    /* Roadmap Mobile - Ultimate Fix to prevent squishing */
    .roadmap-timeline::before {
        left: 10px !important;
    }
    .roadmap-item {
        padding-left: 30px !important;
        margin-bottom: 1.5rem !important;
    }
    .roadmap-node {
        left: 4px !important;
        width: 14px !important;
        height: 14px !important;
    }
    .roadmap-content {
        padding: 1rem !important;
    }
    .phase-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    .phase-header h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    .phase-list li {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    .phase-status {
        font-size: 0.8rem !important;
        padding: 0.2rem 0.6rem !important;
    }
    .network-section {
        padding: 1.2rem !important;
    }
}
