/* Container */
.gmc-dashboard .gmc-container {
    width: 100%;
    max-width: var(--gmc-max-width, 1000px);
    margin: 0 auto;
    background: linear-gradient(to bottom, #1e293b, #334155);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.gmc-dashboard .gmc-container-wrap {
/*     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 20px;
    border-radius: 28px;
}

/* Header */
.gmc-dashboard .gmc-header {
    background: #0f172a;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #334155;
}

.gmc-dashboard .gmc-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gmc-dashboard .gmc-header-icon {
    width: 24px;
    height: 24px;
    color: var(--gmc-accent, #22d3ee);
}
.gmc-dashboard .gmc-header-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.gmc-dashboard .gmc-window-controls {
    display: flex;
    gap: 8px;
}
.gmc-dashboard .gmc-window-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
	padding: 0;
}
.gmc-dashboard .gmc-window-btn:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}
.gmc-dashboard .btn-red {
    background: #ef4444;
}
.gmc-dashboard .btn-yellow {
    background: #fbbf24;
}
.gmc-dashboard .btn-cyan {
    background: var(--gmc-accent, #22d3ee);
}

/* Grid */
.gmc-dashboard .gmc-stats-grid {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: transparent;
}

/* Card */
.gmc-dashboard .gmc-stat-card {
    position: relative;
    background: #1e293b;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gmc-dashboard .gmc-stat-card:hover {
    border-color: rgba(34, 211, 238, 0.5);
    transform: translateY(-4px);
}

.gmc-dashboard .gmc-stat-content {
    position: relative;
    z-index: 10;
}
.gmc-dashboard .gmc-stat-label {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.gmc-dashboard .gmc-stat-value {
    color: var(--gmc-accent, #22d3ee);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1;
}
.gmc-dashboard .gmc-stat-description {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Bars */
.gmc-dashboard .gmc-chart-bars {
    display: flex;
    gap: 8px;
}
.gmc-dashboard .gmc-chart-bar {
    height: 4px;
    width: 48px;
    background: var(--gmc-accent, #22d3ee);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.gmc-dashboard .gmc-stat-card:hover .gmc-chart-bar:nth-child(1) {
    transform: scaleX(1);
    transition-delay: 75ms;
}
.gmc-dashboard .gmc-stat-card:hover .gmc-chart-bar:nth-child(2) {
    transform: scaleX(1);
    transition-delay: 150ms;
}
.gmc-dashboard .gmc-stat-card:hover .gmc-chart-bar:nth-child(3) {
    transform: scaleX(1);
    transition-delay: 300ms;
}

/* Icon */
.gmc-dashboard .gmc-stat-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 48px;
    height: 48px;
    color: var(--gmc-accent, #22d3ee);
    opacity: 0;
    transition: all 0.3s ease;
}

.gmc-dashboard .gmc-stat-card:hover .gmc-stat-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .gmc-dashboard .gmc-stats-grid {
        grid-template-columns: 1fr;
    }
}
