@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500;700&display=swap');
body {
    font-family: 'Roboto Mono', monospace;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .overlay .title {
        font-size: 2rem;
    }
}
.neon-text {
    text-shadow: 0 0 10px #00b7ff, 0 0 20px #0088ff;
    animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
    from {
        text-shadow: 0 0 10px #00b7ff, 0 0 20px #0088ff;
    }
    to {
        text-shadow: 0 0 15px #00b7ff, 0 0 30px #0088ff, 0 0 40px #0088ff;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 232, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 232, 255, 0.1);
    border-color: rgba(0, 232, 255, 0.4);
}

.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.dashboard-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 232, 255, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: rgba(0, 232, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 232, 255, 0.2);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        transparent,
        transparent,
        rgba(0, 232, 255, 0.1)
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.dashboard-card:hover::before {
    transform: rotate(30deg) translate(20%, 20%);
}

.card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.card-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.card-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    
    .dashboard-card {
        grid-column: auto;
        grid-row: auto;
    }
}