body {
    background: radial-gradient(ellipse at 60% 0%, #e7f2ff 0%, #c6dbfa 70%, #f3f6f9 100%);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.dashboard-container {
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding: 40px 5vw 38px 5vw;
    background: rgba(255,255,255,0.93);
    border-radius: 32px;
    box-shadow: 0 10px 36px 0 rgba(60,100,200,0.10);
    backdrop-filter: blur(1px);
    position: relative;
    overflow: visible;
}
h1 {
    text-align: center;
    color: #2552a3;
    font-size: 2.5em;
    margin-bottom: 44px;
    letter-spacing: 0.5px;
    font-weight: 800;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    text-shadow: 0 3px 12px #e6efff;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 38px;
}
.dashboard-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(125deg, #f5faff 60%, #dde6f5 100%);
    color: #2552a3;
    text-decoration: none;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(60,100,200,0.09);
    padding: 52px 0 34px 0;
    font-size: 1.17em;
    font-weight: 700;
    border: 1.7px solid #c1d7f3;
    position: relative;
    transition: 
        background 0.22s cubic-bezier(.17,.67,.83,.67),
        box-shadow 0.18s cubic-bezier(.22,.61,.36,1),
        transform 0.17s cubic-bezier(.42,0,.58,1);
    cursor: pointer;
    overflow: hidden;
}
.dashboard-tile:after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #96c6ff 0%, #25b06a 100%);
    opacity: 0.13;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}
.dashboard-tile:hover {
    background: linear-gradient(120deg, #cbe4ff 50%, #e4f4ff 100%);
    box-shadow: 0 14px 34px rgba(40,120,220,0.19);
    transform: translateY(-7px) scale(1.025);
    color: #157284;
}
.dashboard-icon {
    font-size: 3.3em;
    margin-bottom: 17px;
    text-shadow: 0 2px 16px #e3ecff;
    filter: drop-shadow(0 3px 9px #d4e4ff);
    transition: transform 0.15s;
}
.dashboard-tile:hover .dashboard-icon {
    transform: scale(1.14) rotate(-2deg);
}
.dashboard-tile span:last-child {
    font-size: 1.11em;
    margin-top: 4px;
    letter-spacing: 0.1px;
    text-align: center;
}
@media (max-width: 900px) {
    .dashboard-container {
        padding: 18px 2vw;
    }
    h1 {
        font-size: 1.6em;
    }
    .dashboard-grid {
        gap: 17px;
    }
}
@media (max-width: 700px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    .dashboard-tile {
        padding: 20px 0 15px 0;
        font-size: 0.95em;
    }
    .dashboard-icon {
        font-size: 2em;
    }
}
