* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Cyberpunk / Neon City Background */
    background-image: url('https://images.unsplash.com/photo-1555680202-c86f0e12f086?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #050510;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e6edf3;
}

/* Dark overlay for text readability + neon glow effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.7), rgba(5, 5, 16, 0.85));
    z-index: 0;
}

.container {
    max-width: 1000px;
    width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 3.5rem;
}

header h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Neon Text Effect */
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #0ff,
        0 0 40px #0ff,
        0 0 80px #0ff;
    font-weight: 800;
}

header p {
    margin-top: 0.5rem;
}

.tagline {
    font-size: 1.5rem;
    color: #ffccff; /* Light pink core */
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #ff00de,
        0 0 20px #ff00de,
        0 0 40px #ff00de;
    font-weight: 300;
}

header p a {
    color: #0ff; /* Cyan accent */
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

header p a:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    color: #fff;
    transform: scale(1.05);
    text-shadow: 0 0 10px #0ff;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-items: stretch;
    align-items: stretch;
}

.dashboard-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dashboard-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.dashboard-btn:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 255, 255, 0.2);
}

.dashboard-btn:hover::before {
    opacity: 1;
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s;
}

.dashboard-btn:hover .icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
}

.label {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .dashboard-btn {
        padding: 1.5rem;
    }
}
