* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    height: 100%;
    width: 100%;
    overflow: auto;
    background: #ffffff;
}

.main-container {
    position: relative;
    min-height: 100vh;
}

.dashboard-wrapper {
    position: relative;
    background: #005279;
    padding-bottom: 60px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #868f94;
    background: #868f94;
}

.logo-image {
    height: 200px;
    width: auto;
}

.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
}

.glow-1 {
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
}

.glow-2 {
    bottom: -15%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent 70%);
}

.glow-3 {
    top: 30%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.05), transparent 70%);
}

.main-content {
    position: relative;
    z-index: 1;
    padding: 28px 36px;
    max-width: 1920px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.header-title-section {
    flex: 1;
}

.dashboard-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #f1f5f9;
    margin: 0;
}

.dashboard-subtitle {
    font-size: 14px;
    margin-top: 4px;
    color: #f1f5f9;
}

.header-info-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.icon-small {
    width: 15px;
    height: 15px;
    color: #64748b;
}

.date-text {
    font-size: 12px;
    font-weight: 500;
    color: #f1f5f9;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        color: #004b86;
    }

    50% {
        transform: scale(1.1);
        color: #28a745;
    }

    100% {
        transform: scale(1);
        color: #004b86;
    }
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    margin-left: 10px;
    animation: blink 2s infinite;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

.live-text {
    font-size: 12px;
    font-weight: 500;
    color: #f1f5f9;
}

.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.dashboard-card {
    background: #000000;
    border: 1px solid #000000;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.card-glow {
    position: relative;
}

.card-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 18px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-card:hover.card-glow::before {
    opacity: 1;
}

.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.dashboard-card:hover.card-shine::after {
    left: 150%;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-title-section {
    flex: 1;
}

.card-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin: 0;
}

.card-subtitle {
    font-size: 12px;
    margin-top: 4px;
    color: #6b7280;
}

.card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border-width: 1px;
    border-style: solid;
}

.card-icon {
    width: 20px;
    height: 20px;
}

.card-value-section {
    margin-top: 16px;
}

.card-value {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.card-value-unit {
    font-size: 14px;
    color: #9ca3af;
    margin-left: 8px;
}

.stat-bar {
    margin-top: 16px;
    height: 4px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.stat-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.6s ease;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.dashboard-footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 36px;
    border-top: 1px solid #868f94;
    background: #868f94;
    backdrop-filter: blur(12px);
    text-align: center;
    font-size: 11px;
    color: #ffffff;
    z-index: 10;
}

.dashboard-footer p {
    margin: 0;
}

@media (max-width: 1024px) and (min-width: 769px) {
.card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
    
.main-content {
    padding: 20px 24px;
}
}

@media (max-width: 768px) {
.dashboard-wrapper {
    padding-bottom: 80px;
}
    
.dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
    
.dashboard-title {
    font-size: 24px;
}
    
.header-info-section {
    width: 100%;
    gap: 8px;
}
    
.info-badge {
    flex: 1;
    justify-content: center;
}
    
.card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}
    
.main-content {
    padding: 16px !important;
}
    
.logo-image {
    height: 120px;
}
    
.dashboard-footer {
    padding: 12px 16px;
    font-size: 10px;
}
    
.card-value {
    font-size: 28px;
}
    
.card-icon-wrapper {
    width: 36px;
    height: 36px;
}
    
.card-icon {
    width: 16px;
    height: 16px;
}
}

@media (max-width: 480px) {
.dashboard-title {
    font-size: 20px;
}
    
.dashboard-subtitle {
    font-size: 12px;
}
    
.info-badge {
    padding: 6px 12px;
}
    
.date-text, .live-text {
    font-size: 10px;
}
    
.card-title {
    font-size: 10px;
}
    
.card-subtitle {
    font-size: 10px;
}
    
.card-value {
    font-size: 24px;
}
    
.card-value-unit {
    font-size: 12px;
}
}

@media (min-width: 1600px) {
.main-content {
    max-width: 1400px;
}
    
.card-grid {
    gap: 24px;
}
    
.dashboard-card {
    padding: 24px;
}
    
.card-value {
    font-size: 42px;
}
}