.acr-crypto-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header */
.acr-crypto-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.acr-crypto-header h1 {
    margin: 0 0 10px;
    font-size: 28px;
}

.acr-crypto-subtitle {
    opacity: 0.9;
    margin: 0 0 15px;
}

.acr-crypto-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Navigation */
.acr-crypto-nav {
    background: #f5f7fa;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.nav-title {
    font-weight: 600;
    color: #333;
}

.acr-crypto-nav a {
    padding: 6px 15px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.acr-crypto-nav a:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Summary */
.acr-summary-box {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.acr-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.acr-summary-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-name {
    font-weight: 600;
}

.card-symbol {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
}

.acr-summary-stat {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

/* Table */
.acr-table-wrapper {
    overflow-x: auto;
    margin: 20px 0 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.acr-crypto-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.acr-crypto-table th {
    background: #f5f7fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

.acr-crypto-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.acr-crypto-table tr:hover td {
    background: #f8f9ff;
}

.coin-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-name {
    font-weight: 500;
}

.coin-symbol {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}

.rank {
    font-weight: 600;
    color: #666;
}

.price {
    font-weight: 500;
}

.change {
    font-weight: 500;
}

.positive {
    color: #27ae60;
}

.negative {
    color: #e74c3c;
}

.neutral {
    color: #95a5a6;
}

.market-cap {
    color: #555;
}

/* Charts */
.acr-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 20px 0 30px;
}

.acr-chart-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.chart-header h3 {
    margin: 0;
    font-size: 16px;
}

.chart-container {
    height: 200px;
    position: relative;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 13px;
}

.label-7d {
    color: #3498db;
}

.label-30d {
    color: #2ecc71;
}

/* Analysis */
.acr-analysis-table-wrapper {
    overflow-x: auto;
    margin: 20px 0 30px;
}

.acr-analysis-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 12px;
    overflow: hidden;
}

.acr-analysis-table th {
    background: #2c3e50;
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.acr-analysis-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.acr-analysis-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Forecast */
.acr-forecast-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin: 20px 0 30px;
}

.forecast-market-sentiment {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 25px;
}

.sentiment-label {
    opacity: 0.7;
}

.sentiment-value {
    font-weight: 600;
    font-size: 18px;
    margin-left: 10px;
}

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

.forecast-item {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
}

.forecast-icon {
    font-size: 32px;
}

.forecast-content p {
    opacity: 0.9;
    margin: 8px 0 12px;
    font-size: 14px;
    line-height: 1.6;
}

.forecast-change {
    font-weight: 500;
}

.forecast-note {
    text-align: center;
    margin-top: 20px;
    opacity: 0.6;
    font-size: 13px;
}

/* Footer */
.acr-crypto-footer {
    text-align: center;
    padding: 25px;
    background: #f5f7fa;
    border-radius: 12px;
    margin-top: 30px;
}

.acr-crypto-footer p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 0 15px;
    font-size: 14px;
    color: #555;
}

.acr-crypto-tags {
    color: #666;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .acr-crypto-header h1 {
        font-size: 22px;
    }
    
    .acr-summary-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .acr-charts-grid {
        grid-template-columns: 1fr;
    }
    
    .forecast-grid {
        grid-template-columns: 1fr;
    }
    
    .acr-crypto-nav {
        gap: 8px;
    }
    
    .acr-crypto-nav a {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .acr-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .acr-crypto-table {
        font-size: 12px;
    }
    
    .acr-crypto-table td,
    .acr-crypto-table th {
        padding: 6px 8px;
    }
}