
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050216; /* Deep Indigo/Black background */
    color: #d8d8ff; /* Soft white/blue */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.5s, color 0.5s;
}

/* --- Global Neon Style (Reduced Brightness) --- */
.neon-title {
    color: #E99DFF; /* Hot Pink/Purple */
    text-shadow:
        0 0 5px rgba(233, 157, 255, 0.5),
        0 0 10px rgba(138, 43, 226, 0.7);
}

.neon-highlight {
    color: #61DAFB; /* Cyan/Aqua */
    text-shadow: 0 0 4px rgba(97, 218, 251, 0.5);
}

/* --- Button Style --- */
.sexy-button {
    background-color: #8A2BE2;
    border: 2px solid #E99DFF;
    box-shadow:
        0 0 10px rgba(233, 157, 255, 0.6),
        0 0 20px rgba(138, 43, 226, 0.4);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sexy-button:hover,
.sexy-button:focus-visible {
    background-color: #A052FF;
    transform: translateY(-1px) scale(1.01);
    box-shadow:
        0 0 15px #E99DFF,
        0 0 30px #A052FF;
}

.sexy-button:focus-visible {
    outline: 2px solid #61DAFB;
    outline-offset: 2px;
}

/* --- Shared Card Styles --- */
.project-card,
.category-card {
    background-color: rgba(13, 0, 30, 0.85);
    border: 1px solid rgba(138, 43, 226, 0.35);
    transition: all 0.25s ease-in-out;
}

.project-card:hover,
.category-card:hover {
    border-color: #E99DFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(233, 157, 255, 0.25);
    cursor: pointer;
}

/* --- Modal Backdrop --- */
.modal-backdrop {
    background-color: rgba(5, 2, 22, 0.96);
    backdrop-filter: blur(10px);
}

/* --- Simple fade-in for main content --- */
main {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
